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 diff --git a/grammar.js b/grammar.js index 3311b300..01e70791 100644 --- a/grammar.js +++ b/grammar.js @@ -15,8 +15,12 @@ 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 +62,6 @@ module.exports = grammar({ precedences: $ => [ [ 'member', - 'template_call', 'call', $.update_expression, 'unary_void', @@ -78,8 +81,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 +492,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 +516,6 @@ module.exports = grammar({ $.object, $.array, $.function_expression, - $.arrow_function, $.generator_function, $.class, $.meta_property, @@ -768,11 +773,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 +793,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 +803,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..bb371dd8 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,14 @@ "type": "STRING", "value": "||" }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": "[" + }, { "type": "SYMBOL", "name": "escape_sequence" @@ -6927,5 +6962,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..4f5e640d 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 1970 +#define LARGE_STATE_COUNT 343 +#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 11 #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, @@ -2456,62 +2467,62 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [11] = 11, [12] = 12, [13] = 13, - [14] = 12, + [14] = 14, [15] = 15, - [16] = 12, - [17] = 15, - [18] = 18, - [19] = 15, - [20] = 20, + [16] = 16, + [17] = 12, + [18] = 14, + [19] = 12, + [20] = 14, [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, + [22] = 14, + [23] = 12, + [24] = 14, + [25] = 12, + [26] = 14, + [27] = 12, + [28] = 14, + [29] = 12, + [30] = 14, + [31] = 14, + [32] = 12, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 33, [37] = 37, - [38] = 29, + [38] = 38, [39] = 39, - [40] = 37, + [40] = 40, [41] = 41, [42] = 42, [43] = 43, [44] = 44, - [45] = 26, + [45] = 45, [46] = 39, [47] = 47, [48] = 48, - [49] = 41, - [50] = 32, - [51] = 42, - [52] = 36, - [53] = 43, - [54] = 44, - [55] = 48, - [56] = 56, - [57] = 56, - [58] = 56, - [59] = 56, - [60] = 56, - [61] = 61, - [62] = 62, - [63] = 63, - [64] = 64, + [49] = 49, + [50] = 48, + [51] = 35, + [52] = 37, + [53] = 38, + [54] = 40, + [55] = 41, + [56] = 42, + [57] = 43, + [58] = 47, + [59] = 44, + [60] = 60, + [61] = 45, + [62] = 34, + [63] = 49, + [64] = 60, [65] = 65, - [66] = 66, - [67] = 67, - [68] = 68, - [69] = 69, + [66] = 65, + [67] = 65, + [68] = 65, + [69] = 65, [70] = 70, [71] = 71, [72] = 72, @@ -2520,303 +2531,303 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [75] = 75, [76] = 76, [77] = 77, - [78] = 76, - [79] = 76, - [80] = 76, - [81] = 76, - [82] = 76, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, [83] = 83, [84] = 84, - [85] = 84, - [86] = 83, - [87] = 87, - [88] = 87, - [89] = 89, - [90] = 90, + [85] = 85, + [86] = 85, + [87] = 85, + [88] = 85, + [89] = 85, + [90] = 85, [91] = 91, - [92] = 89, + [92] = 92, [93] = 93, - [94] = 93, - [95] = 95, + [94] = 92, + [95] = 93, [96] = 96, [97] = 97, [98] = 98, - [99] = 96, + [99] = 98, [100] = 100, - [101] = 96, - [102] = 102, + [101] = 97, + [102] = 96, [103] = 103, [104] = 104, [105] = 104, [106] = 106, [107] = 107, - [108] = 108, + [108] = 107, [109] = 109, - [110] = 110, - [111] = 110, - [112] = 108, + [110] = 107, + [111] = 106, + [112] = 109, [113] = 113, - [114] = 114, + [114] = 107, [115] = 115, [116] = 115, [117] = 117, [118] = 118, - [119] = 118, - [120] = 113, - [121] = 117, + [119] = 119, + [120] = 120, + [121] = 119, [122] = 122, [123] = 123, - [124] = 124, + [124] = 122, [125] = 125, - [126] = 126, - [127] = 127, - [128] = 122, - [129] = 122, + [126] = 125, + [127] = 123, + [128] = 128, + [129] = 129, [130] = 130, [131] = 131, - [132] = 132, - [133] = 133, - [134] = 132, + [132] = 129, + [133] = 128, + [134] = 129, [135] = 135, - [136] = 131, + [136] = 130, [137] = 137, - [138] = 132, - [139] = 139, + [138] = 137, + [139] = 135, [140] = 140, [141] = 141, - [142] = 125, - [143] = 131, - [144] = 123, - [145] = 126, - [146] = 127, - [147] = 127, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 147, [148] = 148, - [149] = 124, - [150] = 140, - [151] = 125, - [152] = 126, - [153] = 127, - [154] = 154, + [149] = 143, + [150] = 145, + [151] = 151, + [152] = 152, + [153] = 142, + [154] = 151, [155] = 155, - [156] = 122, - [157] = 155, - [158] = 148, - [159] = 123, - [160] = 124, - [161] = 125, - [162] = 131, - [163] = 163, - [164] = 124, - [165] = 165, - [166] = 123, - [167] = 124, - [168] = 125, - [169] = 126, - [170] = 127, - [171] = 122, - [172] = 131, - [173] = 126, - [174] = 123, - [175] = 175, - [176] = 176, - [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 182, - [183] = 183, - [184] = 176, - [185] = 185, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 189, + [156] = 156, + [157] = 140, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 161, + [164] = 143, + [165] = 156, + [166] = 160, + [167] = 142, + [168] = 144, + [169] = 151, + [170] = 140, + [171] = 145, + [172] = 156, + [173] = 140, + [174] = 158, + [175] = 141, + [176] = 142, + [177] = 160, + [178] = 160, + [179] = 151, + [180] = 156, + [181] = 143, + [182] = 140, + [183] = 158, + [184] = 145, + [185] = 142, + [186] = 151, + [187] = 156, + [188] = 158, + [189] = 158, [190] = 190, - [191] = 191, - [192] = 192, + [191] = 143, + [192] = 145, [193] = 193, [194] = 194, [195] = 195, [196] = 196, [197] = 197, [198] = 198, - [199] = 179, - [200] = 181, + [199] = 199, + [200] = 200, [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, + [202] = 202, + [203] = 203, + [204] = 202, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 207, + [209] = 194, + [210] = 210, + [211] = 200, + [212] = 212, + [213] = 203, + [214] = 206, + [215] = 210, + [216] = 212, + [217] = 217, [218] = 218, [219] = 219, [220] = 220, - [221] = 178, + [221] = 221, [222] = 222, [223] = 223, [224] = 224, - [225] = 219, - [226] = 219, - [227] = 222, - [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, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 217, + [229] = 229, + [230] = 218, + [231] = 219, + [232] = 220, + [233] = 221, + [234] = 222, + [235] = 198, + [236] = 223, + [237] = 224, + [238] = 225, + [239] = 226, + [240] = 205, [241] = 193, - [242] = 194, - [243] = 195, - [244] = 196, - [245] = 198, - [246] = 178, - [247] = 222, - [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, + [242] = 242, + [243] = 243, + [244] = 229, + [245] = 202, + [246] = 205, + [247] = 247, + [248] = 207, + [249] = 200, + [250] = 250, + [251] = 203, + [252] = 206, + [253] = 210, + [254] = 217, + [255] = 218, + [256] = 219, + [257] = 220, + [258] = 221, + [259] = 222, + [260] = 223, + [261] = 224, + [262] = 225, + [263] = 226, + [264] = 227, + [265] = 198, + [266] = 193, + [267] = 229, + [268] = 268, [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, + [270] = 205, + [271] = 207, + [272] = 200, + [273] = 203, + [274] = 206, + [275] = 194, + [276] = 210, + [277] = 217, + [278] = 218, + [279] = 219, + [280] = 220, + [281] = 221, + [282] = 222, + [283] = 223, + [284] = 224, + [285] = 225, + [286] = 226, + [287] = 227, + [288] = 243, + [289] = 198, [290] = 194, - [291] = 195, - [292] = 196, - [293] = 198, - [294] = 178, - [295] = 222, - [296] = 176, - [297] = 175, - [298] = 298, - [299] = 299, - [300] = 298, - [301] = 298, - [302] = 299, - [303] = 303, - [304] = 303, - [305] = 305, - [306] = 305, - [307] = 305, - [308] = 303, - [309] = 309, - [310] = 309, - [311] = 63, - [312] = 64, + [291] = 193, + [292] = 202, + [293] = 202, + [294] = 205, + [295] = 207, + [296] = 200, + [297] = 203, + [298] = 206, + [299] = 210, + [300] = 217, + [301] = 218, + [302] = 219, + [303] = 220, + [304] = 221, + [305] = 222, + [306] = 223, + [307] = 224, + [308] = 225, + [309] = 226, + [310] = 227, + [311] = 198, + [312] = 193, [313] = 313, - [314] = 313, - [315] = 313, + [314] = 194, + [315] = 227, [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, + [318] = 316, + [319] = 317, + [320] = 317, + [321] = 321, + [322] = 322, + [323] = 321, + [324] = 322, + [325] = 321, + [326] = 322, + [327] = 327, + [328] = 327, + [329] = 327, + [330] = 330, + [331] = 331, [332] = 332, - [333] = 333, - [334] = 332, - [335] = 64, - [336] = 63, - [337] = 61, - [338] = 338, - [339] = 339, - [340] = 65, + [333] = 327, + [334] = 334, + [335] = 332, + [336] = 332, + [337] = 331, + [338] = 327, + [339] = 334, + [340] = 330, [341] = 341, [342] = 342, [343] = 343, - [344] = 328, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 66, + [344] = 74, + [345] = 71, + [346] = 343, + [347] = 334, + [348] = 72, [349] = 349, [350] = 350, - [351] = 351, - [352] = 343, - [353] = 353, - [354] = 354, - [355] = 67, - [356] = 309, - [357] = 309, + [351] = 349, + [352] = 341, + [353] = 73, + [354] = 327, + [355] = 75, + [356] = 74, + [357] = 357, [358] = 358, [359] = 359, [360] = 360, [361] = 361, [362] = 362, [363] = 363, - [364] = 364, - [365] = 365, + [364] = 72, + [365] = 70, [366] = 366, [367] = 367, - [368] = 368, + [368] = 73, [369] = 369, [370] = 370, [371] = 371, [372] = 372, [373] = 373, - [374] = 374, + [374] = 71, [375] = 375, [376] = 376, [377] = 377, @@ -2848,7 +2859,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [403] = 403, [404] = 404, [405] = 405, - [406] = 406, + [406] = 378, [407] = 407, [408] = 408, [409] = 409, @@ -2875,97 +2886,97 @@ 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, - [448] = 448, - [449] = 440, - [450] = 427, - [451] = 438, + [445] = 445, + [446] = 445, + [447] = 445, + [448] = 428, + [449] = 449, + [450] = 450, + [451] = 451, [452] = 452, - [453] = 453, - [454] = 440, + [453] = 372, + [454] = 454, [455] = 455, - [456] = 452, - [457] = 435, - [458] = 440, - [459] = 459, - [460] = 438, - [461] = 430, - [462] = 462, + [456] = 396, + [457] = 457, + [458] = 458, + [459] = 396, + [460] = 428, + [461] = 461, + [462] = 428, [463] = 463, [464] = 464, - [465] = 465, - [466] = 455, - [467] = 467, - [468] = 464, - [469] = 469, - [470] = 438, - [471] = 440, - [472] = 472, + [465] = 451, + [466] = 466, + [467] = 396, + [468] = 428, + [469] = 396, + [470] = 466, + [471] = 471, + [472] = 461, [473] = 473, - [474] = 359, - [475] = 431, - [476] = 359, - [477] = 428, - [478] = 453, - [479] = 469, - [480] = 480, - [481] = 430, - [482] = 467, - [483] = 483, + [474] = 464, + [475] = 471, + [476] = 476, + [477] = 372, + [478] = 372, + [479] = 450, + [480] = 454, + [481] = 455, + [482] = 449, + [483] = 473, [484] = 484, [485] = 485, - [486] = 483, - [487] = 430, - [488] = 455, + [486] = 451, + [487] = 463, + [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, - [504] = 504, - [505] = 62, - [506] = 63, + [490] = 490, + [491] = 491, + [492] = 452, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 458, + [497] = 471, + [498] = 498, + [499] = 499, + [500] = 451, + [501] = 451, + [502] = 461, + [503] = 498, + [504] = 396, + [505] = 499, + [506] = 485, [507] = 507, - [508] = 64, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, + [508] = 428, + [509] = 495, + [510] = 498, + [511] = 507, + [512] = 451, [513] = 513, [514] = 514, - [515] = 515, - [516] = 516, - [517] = 517, + [515] = 76, + [516] = 74, + [517] = 71, [518] = 518, [519] = 519, [520] = 520, [521] = 521, - [522] = 522, - [523] = 523, + [522] = 72, + [523] = 73, [524] = 524, [525] = 525, [526] = 526, @@ -2980,13 +2991,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [535] = 535, [536] = 536, [537] = 537, - [538] = 66, + [538] = 538, [539] = 539, [540] = 540, [541] = 541, [542] = 542, [543] = 543, - [544] = 544, + [544] = 70, [545] = 545, [546] = 546, [547] = 547, @@ -2999,372 +3010,372 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [554] = 554, [555] = 555, [556] = 556, - [557] = 67, + [557] = 557, [558] = 558, - [559] = 559, + [559] = 75, [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, + [561] = 518, + [562] = 513, + [563] = 514, + [564] = 528, + [565] = 71, + [566] = 74, + [567] = 540, + [568] = 560, [569] = 569, - [570] = 61, - [571] = 571, - [572] = 65, + [570] = 570, + [571] = 76, + [572] = 572, [573] = 573, [574] = 574, [575] = 575, - [576] = 576, - [577] = 511, + [576] = 551, + [577] = 577, [578] = 578, - [579] = 503, - [580] = 580, - [581] = 581, - [582] = 582, + [579] = 579, + [580] = 72, + [581] = 560, + [582] = 73, [583] = 583, - [584] = 504, + [584] = 518, [585] = 585, - [586] = 586, - [587] = 587, + [586] = 540, + [587] = 520, [588] = 588, [589] = 589, [590] = 590, [591] = 591, - [592] = 592, + [592] = 528, [593] = 593, - [594] = 594, + [594] = 76, [595] = 595, [596] = 596, - [597] = 525, + [597] = 597, [598] = 598, - [599] = 533, - [600] = 600, - [601] = 542, - [602] = 602, - [603] = 603, - [604] = 62, - [605] = 62, - [606] = 525, - [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, + [599] = 546, + [600] = 83, + [601] = 78, + [602] = 554, + [603] = 79, + [604] = 81, + [605] = 529, + [606] = 77, + [607] = 531, + [608] = 533, + [609] = 82, + [610] = 532, + [611] = 558, + [612] = 539, + [613] = 541, + [614] = 555, + [615] = 538, + [616] = 542, + [617] = 543, + [618] = 549, + [619] = 518, + [620] = 521, + [621] = 537, + [622] = 545, + [623] = 519, + [624] = 518, + [625] = 548, + [626] = 549, + [627] = 550, + [628] = 80, + [629] = 527, + [630] = 535, + [631] = 528, + [632] = 524, + [633] = 557, + [634] = 536, + [635] = 540, + [636] = 525, [637] = 526, - [638] = 72, - [639] = 565, - [640] = 566, - [641] = 527, - [642] = 70, - [643] = 511, - [644] = 534, - [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, - [734] = 734, - [735] = 645, - [736] = 736, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 525, - [741] = 533, - [742] = 542, - [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, + [638] = 530, + [639] = 552, + [640] = 553, + [641] = 560, + [642] = 642, + [643] = 534, + [644] = 556, + [645] = 642, + [646] = 84, + [647] = 647, + [648] = 547, + [649] = 649, + [650] = 650, + [651] = 540, + [652] = 652, + [653] = 653, + [654] = 560, + [655] = 655, + [656] = 656, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 528, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 670, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 647, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 591, + [682] = 560, + [683] = 588, + [684] = 575, + [685] = 589, + [686] = 574, + [687] = 583, + [688] = 590, + [689] = 598, + [690] = 573, + [691] = 578, + [692] = 569, + [693] = 72, + [694] = 570, + [695] = 74, + [696] = 528, + [697] = 540, + [698] = 593, + [699] = 572, + [700] = 71, + [701] = 577, + [702] = 595, + [703] = 73, + [704] = 596, + [705] = 642, + [706] = 597, + [707] = 585, + [708] = 579, + [709] = 549, + [710] = 710, + [711] = 679, + [712] = 712, + [713] = 676, + [714] = 710, + [715] = 710, + [716] = 716, + [717] = 652, + [718] = 665, + [719] = 659, + [720] = 650, + [721] = 721, + [722] = 655, + [723] = 669, + [724] = 710, + [725] = 672, + [726] = 712, + [727] = 721, + [728] = 673, + [729] = 680, + [730] = 658, + [731] = 659, + [732] = 656, + [733] = 680, + [734] = 661, + [735] = 662, + [736] = 663, + [737] = 665, + [738] = 668, + [739] = 667, + [740] = 668, + [741] = 669, + [742] = 670, + [743] = 671, + [744] = 672, + [745] = 673, + [746] = 674, + [747] = 675, + [748] = 676, + [749] = 678, + [750] = 679, + [751] = 649, + [752] = 650, + [753] = 655, + [754] = 653, + [755] = 652, + [756] = 756, + [757] = 716, + [758] = 670, + [759] = 667, + [760] = 653, + [761] = 671, + [762] = 762, + [763] = 710, + [764] = 764, + [765] = 765, + [766] = 710, [767] = 767, - [768] = 768, - [769] = 754, - [770] = 760, - [771] = 771, + [768] = 678, + [769] = 661, + [770] = 662, + [771] = 663, [772] = 772, - [773] = 768, - [774] = 774, - [775] = 775, - [776] = 753, - [777] = 777, + [773] = 675, + [774] = 658, + [775] = 518, + [776] = 674, + [777] = 649, [778] = 778, [779] = 779, [780] = 780, - [781] = 580, - [782] = 582, + [781] = 780, + [782] = 666, [783] = 783, - [784] = 751, - [785] = 575, - [786] = 589, - [787] = 585, - [788] = 788, - [789] = 777, - [790] = 586, + [784] = 784, + [785] = 785, + [786] = 786, + [787] = 787, + [788] = 785, + [789] = 789, + [790] = 790, [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, - [809] = 809, - [810] = 578, - [811] = 788, - [812] = 767, - [813] = 813, - [814] = 587, - [815] = 736, - [816] = 632, - [817] = 766, - [818] = 583, - [819] = 576, - [820] = 511, + [792] = 789, + [793] = 793, + [794] = 794, + [795] = 795, + [796] = 796, + [797] = 797, + [798] = 780, + [799] = 765, + [800] = 800, + [801] = 801, + [802] = 802, + [803] = 803, + [804] = 787, + [805] = 800, + [806] = 806, + [807] = 778, + [808] = 779, + [809] = 780, + [810] = 794, + [811] = 786, + [812] = 791, + [813] = 780, + [814] = 784, + [815] = 784, + [816] = 816, + [817] = 784, + [818] = 780, + [819] = 783, + [820] = 802, [821] = 821, - [822] = 514, - [823] = 823, - [824] = 823, - [825] = 825, - [826] = 823, - [827] = 823, - [828] = 823, - [829] = 823, - [830] = 744, - [831] = 831, - [832] = 832, + [822] = 658, + [823] = 650, + [824] = 824, + [825] = 671, + [826] = 826, + [827] = 675, + [828] = 670, + [829] = 676, + [830] = 672, + [831] = 678, + [832] = 655, [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, + [834] = 653, + [835] = 667, + [836] = 661, + [837] = 649, + [838] = 652, + [839] = 833, + [840] = 679, + [841] = 674, + [842] = 680, + [843] = 824, + [844] = 662, + [845] = 668, + [846] = 673, + [847] = 659, + [848] = 848, + [849] = 665, + [850] = 850, + [851] = 851, + [852] = 669, + [853] = 663, + [854] = 678, + [855] = 653, + [856] = 856, [857] = 857, [858] = 858, - [859] = 857, + [859] = 765, [860] = 857, - [861] = 861, + [861] = 858, [862] = 857, - [863] = 736, + [863] = 858, [864] = 857, - [865] = 861, - [866] = 866, - [867] = 867, - [868] = 867, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 870, - [873] = 870, - [874] = 871, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 877, - [879] = 871, - [880] = 880, - [881] = 881, - [882] = 882, - [883] = 881, - [884] = 882, - [885] = 881, - [886] = 882, - [887] = 882, - [888] = 882, - [889] = 881, - [890] = 882, - [891] = 881, - [892] = 881, - [893] = 893, - [894] = 893, - [895] = 895, - [896] = 893, - [897] = 893, - [898] = 893, - [899] = 893, - [900] = 900, - [901] = 901, - [902] = 902, + [865] = 658, + [866] = 659, + [867] = 857, + [868] = 661, + [869] = 662, + [870] = 663, + [871] = 665, + [872] = 667, + [873] = 668, + [874] = 669, + [875] = 670, + [876] = 671, + [877] = 672, + [878] = 673, + [879] = 674, + [880] = 675, + [881] = 676, + [882] = 679, + [883] = 649, + [884] = 650, + [885] = 655, + [886] = 652, + [887] = 680, + [888] = 888, + [889] = 888, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 892, + [894] = 894, + [895] = 891, + [896] = 896, + [897] = 897, + [898] = 894, + [899] = 894, + [900] = 891, + [901] = 894, + [902] = 891, [903] = 903, [904] = 904, - [905] = 905, + [905] = 904, [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, + [907] = 904, + [908] = 906, + [909] = 906, + [910] = 904, + [911] = 906, + [912] = 904, + [913] = 906, + [914] = 904, + [915] = 906, [916] = 916, [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, + [918] = 916, + [919] = 916, + [920] = 916, + [921] = 916, + [922] = 916, [923] = 923, [924] = 924, [925] = 925, @@ -3389,534 +3400,534 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [944] = 944, [945] = 945, [946] = 946, - [947] = 947, - [948] = 63, - [949] = 949, + [947] = 74, + [948] = 948, + [949] = 71, [950] = 950, [951] = 951, - [952] = 952, - [953] = 64, + [952] = 934, + [953] = 953, [954] = 954, [955] = 955, - [956] = 61, - [957] = 65, + [956] = 956, + [957] = 957, [958] = 958, [959] = 959, [960] = 960, - [961] = 906, + [961] = 961, [962] = 962, [963] = 963, [964] = 964, - [965] = 907, + [965] = 932, [966] = 966, - [967] = 906, - [968] = 960, + [967] = 967, + [968] = 968, [969] = 969, - [970] = 911, + [970] = 970, [971] = 971, - [972] = 916, + [972] = 972, [973] = 973, - [974] = 923, + [974] = 974, [975] = 975, - [976] = 544, - [977] = 920, - [978] = 978, - [979] = 919, + [976] = 976, + [977] = 977, + [978] = 967, + [979] = 979, [980] = 980, [981] = 981, - [982] = 916, - [983] = 983, - [984] = 978, - [985] = 983, - [986] = 975, + [982] = 982, + [983] = 936, + [984] = 984, + [985] = 985, + [986] = 986, [987] = 987, - [988] = 980, - [989] = 989, - [990] = 987, + [988] = 72, + [989] = 73, + [990] = 990, [991] = 991, [992] = 992, - [993] = 991, - [994] = 992, + [993] = 993, + [994] = 932, [995] = 995, - [996] = 996, - [997] = 918, - [998] = 995, - [999] = 996, - [1000] = 564, - [1001] = 568, + [996] = 944, + [997] = 997, + [998] = 998, + [999] = 552, + [1000] = 521, + [1001] = 530, [1002] = 1002, - [1003] = 981, - [1004] = 1004, - [1005] = 989, + [1003] = 1003, + [1004] = 943, + [1005] = 1005, [1006] = 1006, - [1007] = 973, + [1007] = 1007, [1008] = 1008, [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 1009, + [1010] = 1003, + [1011] = 945, + [1012] = 946, + [1013] = 940, [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, + [1015] = 943, + [1016] = 1016, + [1017] = 1014, + [1018] = 1018, + [1019] = 1019, + [1020] = 997, + [1021] = 998, + [1022] = 1005, + [1023] = 1006, + [1024] = 1007, + [1025] = 1008, + [1026] = 1026, + [1027] = 995, + [1028] = 1018, + [1029] = 1019, + [1030] = 1016, [1031] = 1031, [1032] = 1032, [1033] = 1033, [1034] = 1034, - [1035] = 1032, + [1035] = 1035, [1036] = 1034, - [1037] = 1033, - [1038] = 1032, - [1039] = 1033, - [1040] = 1034, - [1041] = 1032, - [1042] = 1034, - [1043] = 1033, + [1037] = 1037, + [1038] = 1033, + [1039] = 1037, + [1040] = 1033, + [1041] = 1041, + [1042] = 1035, + [1043] = 1041, [1044] = 1044, [1045] = 1045, - [1046] = 1044, - [1047] = 1047, - [1048] = 1047, - [1049] = 1044, - [1050] = 1047, - [1051] = 1044, - [1052] = 1047, - [1053] = 1053, + [1046] = 1046, + [1047] = 1032, + [1048] = 1046, + [1049] = 1031, + [1050] = 1045, + [1051] = 1033, + [1052] = 1033, + [1053] = 1044, [1054] = 1054, [1055] = 1054, [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 1058, + [1059] = 1057, [1060] = 1057, - [1061] = 1061, - [1062] = 1062, - [1063] = 1062, - [1064] = 1061, - [1065] = 1057, - [1066] = 1054, - [1067] = 1061, - [1068] = 1061, - [1069] = 1058, + [1061] = 1056, + [1062] = 1056, + [1063] = 1058, + [1064] = 1056, + [1065] = 1058, + [1066] = 1057, + [1067] = 1058, + [1068] = 1068, + [1069] = 1069, [1070] = 1070, - [1071] = 1058, - [1072] = 1054, - [1073] = 1062, - [1074] = 1062, - [1075] = 1057, - [1076] = 1076, + [1071] = 1070, + [1072] = 1070, + [1073] = 1068, + [1074] = 1068, + [1075] = 1070, + [1076] = 1068, [1077] = 1077, [1078] = 1078, - [1079] = 1079, + [1079] = 1077, [1080] = 1080, - [1081] = 1081, + [1081] = 1078, [1082] = 1082, - [1083] = 1082, - [1084] = 1082, - [1085] = 1082, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1082, - [1091] = 1091, + [1083] = 1083, + [1084] = 1080, + [1085] = 1077, + [1086] = 1080, + [1087] = 1078, + [1088] = 1082, + [1089] = 1077, + [1090] = 1083, + [1091] = 1083, [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, + [1093] = 1080, + [1094] = 1078, + [1095] = 1082, + [1096] = 1082, [1097] = 1097, [1098] = 1098, - [1099] = 1099, + [1099] = 1083, [1100] = 1100, - [1101] = 1082, + [1101] = 1101, [1102] = 1102, - [1103] = 1103, + [1103] = 74, [1104] = 1104, [1105] = 1105, [1106] = 1106, [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 1110, + [1110] = 1106, [1111] = 1111, - [1112] = 569, - [1113] = 1113, + [1112] = 1106, + [1113] = 1106, [1114] = 1114, [1115] = 1115, - [1116] = 1089, + [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1119, - [1120] = 571, - [1121] = 1088, - [1122] = 1106, + [1119] = 1115, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, [1123] = 1123, - [1124] = 1124, + [1124] = 71, [1125] = 1125, - [1126] = 1126, - [1127] = 1102, - [1128] = 1100, - [1129] = 1093, + [1126] = 1106, + [1127] = 1127, + [1128] = 1106, + [1129] = 1114, [1130] = 1130, [1131] = 1131, - [1132] = 1115, + [1132] = 1130, [1133] = 1133, - [1134] = 547, + [1134] = 1134, [1135] = 1135, [1136] = 1136, - [1137] = 1137, + [1137] = 342, [1138] = 1138, - [1139] = 1137, + [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, [1144] = 1144, - [1145] = 1144, - [1146] = 553, - [1147] = 554, - [1148] = 1137, - [1149] = 555, - [1150] = 556, + [1145] = 1120, + [1146] = 1146, + [1147] = 1133, + [1148] = 1148, + [1149] = 1138, + [1150] = 1150, [1151] = 1151, - [1152] = 1152, + [1152] = 73, [1153] = 1153, - [1154] = 1154, - [1155] = 565, - [1156] = 1156, + [1154] = 1111, + [1155] = 1155, + [1156] = 1150, [1157] = 1157, - [1158] = 1141, + [1158] = 1158, [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 531, - [1163] = 1136, - [1164] = 1137, - [1165] = 1165, - [1166] = 1142, - [1167] = 569, + [1160] = 1141, + [1161] = 1157, + [1162] = 72, + [1163] = 942, + [1164] = 1164, + [1165] = 1125, + [1166] = 1122, + [1167] = 1164, [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] = 1171, + [1175] = 1175, [1176] = 1176, - [1177] = 546, - [1178] = 547, - [1179] = 537, - [1180] = 553, - [1181] = 554, - [1182] = 555, - [1183] = 556, - [1184] = 565, - [1185] = 1153, + [1177] = 583, + [1178] = 1178, + [1179] = 520, + [1180] = 1180, + [1181] = 1181, + [1182] = 595, + [1183] = 1181, + [1184] = 596, + [1185] = 597, [1186] = 1186, - [1187] = 1144, - [1188] = 1144, - [1189] = 1189, - [1190] = 1151, - [1191] = 1191, + [1187] = 595, + [1188] = 596, + [1189] = 950, + [1190] = 1190, + [1191] = 1180, [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 546, - [1196] = 571, - [1197] = 1174, - [1198] = 1186, - [1199] = 1199, + [1193] = 948, + [1194] = 1173, + [1195] = 578, + [1196] = 1196, + [1197] = 1181, + [1198] = 1198, + [1199] = 597, [1200] = 1200, [1201] = 1201, [1202] = 1202, [1203] = 1203, [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1203, - [1208] = 1208, - [1209] = 1209, + [1205] = 578, + [1206] = 551, + [1207] = 1207, + [1208] = 583, + [1209] = 1192, [1210] = 1210, - [1211] = 1086, - [1212] = 1201, - [1213] = 1213, + [1211] = 1211, + [1212] = 1212, + [1213] = 575, [1214] = 1214, - [1215] = 1110, - [1216] = 1126, - [1217] = 1217, - [1218] = 1218, - [1219] = 1159, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, + [1215] = 1215, + [1216] = 1198, + [1217] = 1200, + [1218] = 1173, + [1219] = 588, + [1220] = 1173, + [1221] = 589, + [1222] = 569, [1223] = 1223, - [1224] = 1200, - [1225] = 1222, - [1226] = 1226, - [1227] = 1200, - [1228] = 1210, - [1229] = 1229, - [1230] = 1230, - [1231] = 1231, + [1224] = 1224, + [1225] = 1172, + [1226] = 1204, + [1227] = 588, + [1228] = 575, + [1229] = 589, + [1230] = 569, + [1231] = 1181, [1232] = 1232, - [1233] = 1217, - [1234] = 1234, - [1235] = 1214, - [1236] = 1222, + [1233] = 1175, + [1234] = 1202, + [1235] = 1211, + [1236] = 1236, [1237] = 1237, [1238] = 1238, - [1239] = 1200, + [1239] = 1239, [1240] = 1240, - [1241] = 1229, - [1242] = 1078, + [1241] = 1241, + [1242] = 1242, [1243] = 1243, - [1244] = 1244, - [1245] = 1226, - [1246] = 1208, - [1247] = 1226, + [1244] = 1237, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, [1248] = 1248, - [1249] = 1214, - [1250] = 1222, + [1249] = 1249, + [1250] = 1250, [1251] = 1251, [1252] = 1252, - [1253] = 1204, - [1254] = 1254, + [1253] = 551, + [1254] = 1249, [1255] = 1255, - [1256] = 1118, + [1256] = 1256, [1257] = 1257, [1258] = 1258, - [1259] = 1230, - [1260] = 1260, - [1261] = 1261, - [1262] = 1254, + [1259] = 1259, + [1260] = 1256, + [1261] = 1237, + [1262] = 1245, [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1226, - [1267] = 1234, + [1264] = 1151, + [1265] = 366, + [1266] = 350, + [1267] = 1247, [1268] = 1268, - [1269] = 1214, - [1270] = 1270, - [1271] = 1271, - [1272] = 1232, - [1273] = 1237, + [1269] = 1269, + [1270] = 372, + [1271] = 1248, + [1272] = 1263, + [1273] = 1250, [1274] = 1274, [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1278, - [1279] = 1279, - [1280] = 1280, + [1276] = 1144, + [1277] = 1239, + [1278] = 1268, + [1279] = 1176, + [1280] = 520, [1281] = 1281, [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 1285, + [1283] = 1237, + [1284] = 1245, + [1285] = 1257, [1286] = 1286, [1287] = 1287, - [1288] = 1288, + [1288] = 1287, [1289] = 1289, - [1290] = 1290, - [1291] = 1289, + [1290] = 1107, + [1291] = 1275, [1292] = 1292, - [1293] = 1293, - [1294] = 1294, + [1293] = 1240, + [1294] = 1282, [1295] = 1295, - [1296] = 1296, + [1296] = 1255, [1297] = 1297, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, + [1298] = 1259, + [1299] = 1241, + [1300] = 1143, + [1301] = 1248, [1302] = 1302, [1303] = 1303, [1304] = 1304, - [1305] = 1305, + [1305] = 1250, [1306] = 1306, [1307] = 1307, - [1308] = 1308, - [1309] = 1292, - [1310] = 1296, - [1311] = 1311, - [1312] = 1312, - [1313] = 1313, - [1314] = 1305, - [1315] = 1315, - [1316] = 1316, - [1317] = 1306, - [1318] = 1318, - [1319] = 1303, - [1320] = 1304, - [1321] = 1321, - [1322] = 1322, - [1323] = 345, - [1324] = 1324, - [1325] = 1325, + [1308] = 1258, + [1309] = 1309, + [1310] = 1237, + [1311] = 1251, + [1312] = 1245, + [1313] = 1245, + [1314] = 1127, + [1315] = 1269, + [1316] = 1309, + [1317] = 1248, + [1318] = 1295, + [1319] = 1248, + [1320] = 1250, + [1321] = 1248, + [1322] = 1237, + [1323] = 1245, + [1324] = 1250, + [1325] = 1307, [1326] = 1326, - [1327] = 1327, - [1328] = 1328, + [1327] = 1250, + [1328] = 1274, [1329] = 1329, - [1330] = 1330, + [1330] = 1289, [1331] = 1331, - [1332] = 1281, - [1333] = 1289, - [1334] = 1292, - [1335] = 1312, - [1336] = 1297, + [1332] = 1292, + [1333] = 1333, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, [1337] = 1337, - [1338] = 1285, + [1338] = 1338, [1339] = 1339, - [1340] = 1337, + [1340] = 1340, [1341] = 1341, - [1342] = 1325, + [1342] = 369, [1343] = 1343, - [1344] = 1326, - [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, + [1344] = 1344, + [1345] = 1345, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1349, + [1350] = 1350, + [1351] = 1351, + [1352] = 1352, + [1353] = 1353, + [1354] = 1354, + [1355] = 1355, + [1356] = 1345, + [1357] = 362, + [1358] = 370, + [1359] = 375, [1360] = 1360, [1361] = 1361, - [1362] = 1303, - [1363] = 1363, - [1364] = 1304, - [1365] = 1305, + [1362] = 1362, + [1363] = 1353, + [1364] = 1002, + [1365] = 1365, [1366] = 1366, - [1367] = 1306, + [1367] = 1367, [1368] = 1368, - [1369] = 1343, - [1370] = 1275, + [1369] = 1369, + [1370] = 1360, [1371] = 1371, [1372] = 1372, - [1373] = 1373, - [1374] = 1374, - [1375] = 1375, - [1376] = 1376, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, + [1373] = 1366, + [1374] = 371, + [1375] = 373, + [1376] = 1348, + [1377] = 357, + [1378] = 1349, + [1379] = 74, [1380] = 1380, - [1381] = 1381, - [1382] = 1382, - [1383] = 1383, + [1381] = 1361, + [1382] = 1026, + [1383] = 1365, [1384] = 1384, - [1385] = 1385, + [1385] = 361, [1386] = 1386, [1387] = 1387, - [1388] = 1388, - [1389] = 1389, - [1390] = 1390, - [1391] = 1391, - [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 1395, + [1388] = 358, + [1389] = 1346, + [1390] = 1349, + [1391] = 1360, + [1392] = 1361, + [1393] = 1362, + [1394] = 1366, + [1395] = 367, [1396] = 1396, - [1397] = 534, - [1398] = 1398, + [1397] = 1384, + [1398] = 1354, [1399] = 1399, - [1400] = 1400, - [1401] = 1401, - [1402] = 1402, - [1403] = 1403, + [1400] = 1360, + [1401] = 1361, + [1402] = 1362, + [1403] = 1366, [1404] = 1404, [1405] = 1405, - [1406] = 550, - [1407] = 551, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, + [1406] = 1406, + [1407] = 1384, + [1408] = 520, + [1409] = 1336, + [1410] = 552, [1411] = 1411, [1412] = 1412, [1413] = 1413, - [1414] = 1414, - [1415] = 1390, + [1414] = 1344, + [1415] = 521, [1416] = 1416, - [1417] = 1392, + [1417] = 1371, [1418] = 1418, - [1419] = 1419, - [1420] = 1420, + [1419] = 530, + [1420] = 1009, [1421] = 1421, [1422] = 1422, - [1423] = 1423, + [1423] = 70, [1424] = 1424, - [1425] = 1425, + [1425] = 1362, [1426] = 1426, [1427] = 1427, [1428] = 1428, - [1429] = 1429, + [1429] = 551, [1430] = 1430, [1431] = 1431, - [1432] = 1432, + [1432] = 75, [1433] = 1433, [1434] = 1434, [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, + [1436] = 1338, + [1437] = 1428, + [1438] = 1434, [1439] = 1439, - [1440] = 1440, + [1440] = 1346, [1441] = 1441, - [1442] = 1442, - [1443] = 1443, + [1442] = 1339, + [1443] = 1439, [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 1448, - [1449] = 1449, - [1450] = 1450, - [1451] = 1451, - [1452] = 1452, - [1453] = 1453, - [1454] = 1454, - [1455] = 1455, - [1456] = 1456, + [1445] = 1347, + [1446] = 1355, + [1447] = 71, + [1448] = 72, + [1449] = 73, + [1450] = 1433, + [1451] = 1418, + [1452] = 1340, + [1453] = 1435, + [1454] = 1341, + [1455] = 1396, + [1456] = 363, [1457] = 1457, - [1458] = 1412, + [1458] = 1422, [1459] = 1459, [1460] = 1460, - [1461] = 1461, - [1462] = 1462, - [1463] = 1463, - [1464] = 1464, + [1461] = 1337, + [1462] = 1352, + [1463] = 1365, + [1464] = 1430, [1465] = 1465, - [1466] = 1377, + [1466] = 1466, [1467] = 1467, [1468] = 1468, - [1469] = 1433, - [1470] = 1436, + [1469] = 1469, + [1470] = 1470, [1471] = 1471, - [1472] = 1472, - [1473] = 1438, - [1474] = 1431, + [1472] = 385, + [1473] = 1473, + [1474] = 1474, [1475] = 1475, [1476] = 1476, [1477] = 1477, @@ -3926,18 +3937,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, - [1485] = 1380, + [1484] = 433, + [1485] = 386, [1486] = 1486, - [1487] = 1410, - [1488] = 1414, - [1489] = 1422, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, - [1494] = 1444, - [1495] = 1374, + [1494] = 1494, + [1495] = 1495, [1496] = 1496, [1497] = 1497, [1498] = 1498, @@ -3945,238 +3956,486 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1500] = 1500, [1501] = 1501, [1502] = 1502, - [1503] = 1463, - [1504] = 1405, - [1505] = 1408, - [1506] = 1409, - [1507] = 1416, - [1508] = 1462, - [1509] = 1465, + [1503] = 1503, + [1504] = 1467, + [1505] = 1468, + [1506] = 1506, + [1507] = 1507, + [1508] = 1508, + [1509] = 1509, [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1418, - [1514] = 1514, + [1513] = 1513, + [1514] = 392, [1515] = 1515, - [1516] = 1516, - [1517] = 1517, + [1516] = 1469, + [1517] = 388, [1518] = 1518, [1519] = 1519, - [1520] = 1520, - [1521] = 1521, - [1522] = 1396, + [1520] = 980, + [1521] = 389, + [1522] = 390, [1523] = 1523, - [1524] = 1478, - [1525] = 1372, - [1526] = 1371, - [1527] = 1510, + [1524] = 391, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, [1528] = 1528, - [1529] = 1376, - [1530] = 1515, - [1531] = 1516, - [1532] = 1517, + [1529] = 1473, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, [1533] = 1533, - [1534] = 1390, - [1535] = 1480, - [1536] = 1392, - [1537] = 1537, - [1538] = 1384, - [1539] = 1386, - [1540] = 1540, - [1541] = 1395, - [1542] = 1403, - [1543] = 1543, - [1544] = 1391, - [1545] = 1428, + [1534] = 1534, + [1535] = 1535, + [1536] = 1536, + [1537] = 1474, + [1538] = 1475, + [1539] = 1539, + [1540] = 1476, + [1541] = 1286, + [1542] = 986, + [1543] = 436, + [1544] = 1544, + [1545] = 1477, [1546] = 1546, - [1547] = 1432, - [1548] = 1492, + [1547] = 969, + [1548] = 1478, [1549] = 1549, - [1550] = 1537, - [1551] = 1521, - [1552] = 1518, - [1553] = 1519, - [1554] = 1520, - [1555] = 1439, - [1556] = 1452, - [1557] = 1459, + [1550] = 1550, + [1551] = 1551, + [1552] = 1479, + [1553] = 1553, + [1554] = 970, + [1555] = 394, + [1556] = 1556, + [1557] = 1557, [1558] = 1558, - [1559] = 1270, - [1560] = 1533, + [1559] = 1480, + [1560] = 1560, [1561] = 1561, - [1562] = 1562, + [1562] = 971, [1563] = 1563, - [1564] = 1427, - [1565] = 1434, + [1564] = 398, + [1565] = 1565, [1566] = 1566, - [1567] = 1437, - [1568] = 1568, - [1569] = 1442, + [1567] = 400, + [1568] = 973, + [1569] = 1569, [1570] = 1570, - [1571] = 1499, - [1572] = 1572, - [1573] = 1481, - [1574] = 1574, - [1575] = 1575, + [1571] = 1571, + [1572] = 1481, + [1573] = 1482, + [1574] = 1483, + [1575] = 987, [1576] = 1576, - [1577] = 1496, - [1578] = 1486, - [1579] = 1426, - [1580] = 1580, - [1581] = 1390, - [1582] = 1392, - [1583] = 1500, - [1584] = 1566, - [1585] = 1501, - [1586] = 1586, - [1587] = 1441, - [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, + [1577] = 1577, + [1578] = 1578, + [1579] = 395, + [1580] = 399, + [1581] = 401, + [1582] = 1582, + [1583] = 1583, + [1584] = 402, + [1585] = 403, + [1586] = 1526, + [1587] = 1527, + [1588] = 1528, + [1589] = 1589, + [1590] = 405, + [1591] = 397, + [1592] = 1592, + [1593] = 1577, + [1594] = 408, + [1595] = 974, + [1596] = 1582, + [1597] = 1527, + [1598] = 976, + [1599] = 411, + [1600] = 444, + [1601] = 1601, + [1602] = 415, + [1603] = 1603, + [1604] = 1528, + [1605] = 1605, + [1606] = 1606, + [1607] = 1607, [1608] = 1608, - [1609] = 1420, - [1610] = 1484, - [1611] = 1425, - [1612] = 1449, - [1613] = 1512, - [1614] = 1467, - [1615] = 1615, - [1616] = 1616, - [1617] = 1617, - [1618] = 1618, - [1619] = 1619, - [1620] = 1620, - [1621] = 1621, - [1622] = 1622, - [1623] = 1623, - [1624] = 1624, + [1609] = 1609, + [1610] = 429, + [1611] = 417, + [1612] = 409, + [1613] = 1613, + [1614] = 1614, + [1615] = 412, + [1616] = 413, + [1617] = 414, + [1618] = 419, + [1619] = 420, + [1620] = 421, + [1621] = 416, + [1622] = 423, + [1623] = 418, + [1624] = 430, [1625] = 1625, [1626] = 1626, [1627] = 1627, [1628] = 1628, [1629] = 1629, - [1630] = 1622, - [1631] = 1240, - [1632] = 1632, - [1633] = 1619, - [1634] = 1634, - [1635] = 1635, - [1636] = 1622, - [1637] = 1637, + [1630] = 1630, + [1631] = 437, + [1632] = 541, + [1633] = 438, + [1634] = 1583, + [1635] = 1605, + [1636] = 1607, + [1637] = 1539, [1638] = 1638, - [1639] = 1638, + [1639] = 1639, [1640] = 1640, - [1641] = 1637, - [1642] = 1642, + [1641] = 1641, + [1642] = 1606, [1643] = 1643, [1644] = 1644, [1645] = 1645, [1646] = 1646, - [1647] = 1621, - [1648] = 1637, - [1649] = 1644, - [1650] = 1617, - [1651] = 1651, + [1647] = 1647, + [1648] = 555, + [1649] = 1649, + [1650] = 556, + [1651] = 439, [1652] = 1652, - [1653] = 1653, + [1653] = 410, [1654] = 1654, - [1655] = 1623, + [1655] = 1613, [1656] = 1656, - [1657] = 1651, - [1658] = 1658, - [1659] = 1659, - [1660] = 1660, + [1657] = 1525, + [1658] = 435, + [1659] = 404, + [1660] = 440, [1661] = 1661, [1662] = 1662, - [1663] = 1644, - [1664] = 1664, + [1663] = 1656, + [1664] = 1487, [1665] = 1665, - [1666] = 1623, - [1667] = 1667, - [1668] = 1668, - [1669] = 1652, - [1670] = 1617, - [1671] = 1619, - [1672] = 1660, - [1673] = 1645, - [1674] = 1674, + [1666] = 441, + [1667] = 1601, + [1668] = 1488, + [1669] = 380, + [1670] = 1670, + [1671] = 1671, + [1672] = 383, + [1673] = 1673, + [1674] = 1489, [1675] = 1675, - [1676] = 1676, - [1677] = 1677, - [1678] = 1658, - [1679] = 1624, - [1680] = 1680, - [1681] = 1617, + [1676] = 1641, + [1677] = 384, + [1678] = 1678, + [1679] = 387, + [1680] = 1609, + [1681] = 1681, [1682] = 1682, [1683] = 1683, - [1684] = 1684, - [1685] = 1685, + [1684] = 1678, + [1685] = 1490, [1686] = 1686, [1687] = 1687, - [1688] = 1635, - [1689] = 1682, - [1690] = 1675, - [1691] = 1686, - [1692] = 1635, + [1688] = 1688, + [1689] = 1689, + [1690] = 1605, + [1691] = 1689, + [1692] = 1687, [1693] = 1693, - [1694] = 1694, - [1695] = 1694, - [1696] = 1682, - [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, - [1713] = 1713, - [1714] = 1622, + [1694] = 443, + [1695] = 1695, + [1696] = 1661, + [1697] = 1607, + [1698] = 1698, + [1699] = 1699, + [1700] = 1700, + [1701] = 1532, + [1702] = 1491, + [1703] = 1703, + [1704] = 1704, + [1705] = 1705, + [1706] = 1706, + [1707] = 991, + [1708] = 1492, + [1709] = 992, + [1710] = 1493, + [1711] = 1494, + [1712] = 1495, + [1713] = 993, + [1714] = 1496, [1715] = 1715, - [1716] = 1682, + [1716] = 1716, [1717] = 1717, - [1718] = 1632, - [1719] = 1717, - [1720] = 1644, - [1721] = 1624, + [1718] = 1497, + [1719] = 1498, + [1720] = 1499, + [1721] = 972, + [1722] = 1500, + [1723] = 1723, + [1724] = 1515, + [1725] = 1519, + [1726] = 1646, + [1727] = 1561, + [1728] = 1565, + [1729] = 1625, + [1730] = 1626, + [1731] = 1627, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, + [1737] = 1501, + [1738] = 1486, + [1739] = 1502, + [1740] = 1503, + [1741] = 979, + [1742] = 1536, + [1743] = 1546, + [1744] = 1549, + [1745] = 1550, + [1746] = 1551, + [1747] = 1553, + [1748] = 1556, + [1749] = 1557, + [1750] = 1558, + [1751] = 1560, + [1752] = 1566, + [1753] = 1570, + [1754] = 1571, + [1755] = 981, + [1756] = 1662, + [1757] = 982, + [1758] = 1715, + [1759] = 1716, + [1760] = 1717, + [1761] = 1723, + [1762] = 1732, + [1763] = 1733, + [1764] = 1526, + [1765] = 1765, + [1766] = 1698, + [1767] = 360, + [1768] = 1700, + [1769] = 1629, + [1770] = 551, + [1771] = 1699, + [1772] = 1569, + [1773] = 1645, + [1774] = 1671, + [1775] = 1630, + [1776] = 1776, + [1777] = 1777, + [1778] = 1471, + [1779] = 1531, + [1780] = 1569, + [1781] = 1673, + [1782] = 520, + [1783] = 1703, + [1784] = 1470, + [1785] = 1526, + [1786] = 1527, + [1787] = 1528, + [1788] = 1681, + [1789] = 1789, + [1790] = 1706, + [1791] = 1544, + [1792] = 1792, + [1793] = 1793, + [1794] = 1603, + [1795] = 379, + [1796] = 442, + [1797] = 1605, + [1798] = 432, + [1799] = 1607, + [1800] = 1800, + [1801] = 376, + [1802] = 1665, + [1803] = 381, + [1804] = 1589, + [1805] = 382, + [1806] = 1735, + [1807] = 1530, + [1808] = 1777, + [1809] = 1809, + [1810] = 1506, + [1811] = 1776, + [1812] = 1592, + [1813] = 1523, + [1814] = 1507, + [1815] = 407, + [1816] = 1793, + [1817] = 1736, + [1818] = 1818, + [1819] = 1819, + [1820] = 377, + [1821] = 393, + [1822] = 1822, + [1823] = 1823, + [1824] = 990, + [1825] = 953, + [1826] = 954, + [1827] = 955, + [1828] = 956, + [1829] = 1640, + [1830] = 1508, + [1831] = 1509, + [1832] = 1510, + [1833] = 1693, + [1834] = 1628, + [1835] = 1643, + [1836] = 422, + [1837] = 424, + [1838] = 425, + [1839] = 426, + [1840] = 434, + [1841] = 1644, + [1842] = 1569, + [1843] = 1563, + [1844] = 1688, + [1845] = 1704, + [1846] = 957, + [1847] = 431, + [1848] = 1705, + [1849] = 1734, + [1850] = 959, + [1851] = 1851, + [1852] = 960, + [1853] = 961, + [1854] = 1511, + [1855] = 1512, + [1856] = 1569, + [1857] = 1526, + [1858] = 1527, + [1859] = 1528, + [1860] = 1800, + [1861] = 1513, + [1862] = 962, + [1863] = 966, + [1864] = 1819, + [1865] = 968, + [1866] = 427, + [1867] = 1867, + [1868] = 1868, + [1869] = 1869, + [1870] = 1870, + [1871] = 1871, + [1872] = 1872, + [1873] = 1873, + [1874] = 1695, + [1875] = 1875, + [1876] = 1876, + [1877] = 1876, + [1878] = 1878, + [1879] = 1879, + [1880] = 1871, + [1881] = 1881, + [1882] = 1882, + [1883] = 1883, + [1884] = 1884, + [1885] = 1885, + [1886] = 1886, + [1887] = 1887, + [1888] = 1888, + [1889] = 1889, + [1890] = 1326, + [1891] = 1534, + [1892] = 1884, + [1893] = 1884, + [1894] = 1894, + [1895] = 1875, + [1896] = 1867, + [1897] = 1897, + [1898] = 1869, + [1899] = 1899, + [1900] = 1900, + [1901] = 1901, + [1902] = 1902, + [1903] = 372, + [1904] = 1902, + [1905] = 1902, + [1906] = 1906, + [1907] = 1873, + [1908] = 1881, + [1909] = 1909, + [1910] = 1910, + [1911] = 1886, + [1912] = 1902, + [1913] = 1913, + [1914] = 1914, + [1915] = 1915, + [1916] = 1916, + [1917] = 1917, + [1918] = 1918, + [1919] = 1919, + [1920] = 1920, + [1921] = 1921, + [1922] = 1899, + [1923] = 1822, + [1924] = 1924, + [1925] = 1876, + [1926] = 1926, + [1927] = 1902, + [1928] = 1928, + [1929] = 1929, + [1930] = 1930, + [1931] = 1884, + [1932] = 1932, + [1933] = 1867, + [1934] = 1883, + [1935] = 1935, + [1936] = 1286, + [1937] = 1885, + [1938] = 1938, + [1939] = 1902, + [1940] = 1915, + [1941] = 1941, + [1942] = 1938, + [1943] = 1943, + [1944] = 1944, + [1945] = 1867, + [1946] = 1921, + [1947] = 1938, + [1948] = 1889, + [1949] = 1949, + [1950] = 1888, + [1951] = 1876, + [1952] = 1952, + [1953] = 1920, + [1954] = 1876, + [1955] = 1878, + [1956] = 1949, + [1957] = 1885, + [1958] = 1958, + [1959] = 1938, + [1960] = 1901, + [1961] = 1961, + [1962] = 1885, + [1963] = 1963, + [1964] = 1870, + [1965] = 1924, + [1966] = 1952, + [1967] = 1670, + [1968] = 1885, + [1969] = 1961, }; -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}, }; @@ -6625,35 +6884,35 @@ 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}, + [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 = 124, .external_lex_state = 3}, [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}, + [68] = {.lex_state = 124, .external_lex_state = 3}, + [69] = {.lex_state = 124, .external_lex_state = 3}, [70] = {.lex_state = 124, .external_lex_state = 4}, [71] = {.lex_state = 124, .external_lex_state = 4}, [72] = {.lex_state = 124, .external_lex_state = 4}, [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}, + [76] = {.lex_state = 124, .external_lex_state = 4}, + [77] = {.lex_state = 124, .external_lex_state = 4}, + [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 = 125, .external_lex_state = 2}, [86] = {.lex_state = 125, .external_lex_state = 2}, [87] = {.lex_state = 125, .external_lex_state = 2}, @@ -6678,7 +6937,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}, @@ -6692,22 +6951,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 125, .external_lex_state = 2}, [121] = {.lex_state = 125, .external_lex_state = 2}, [122] = {.lex_state = 125, .external_lex_state = 2}, - [123] = {.lex_state = 125, .external_lex_state = 2}, + [123] = {.lex_state = 125, .external_lex_state = 5}, [124] = {.lex_state = 125, .external_lex_state = 2}, [125] = {.lex_state = 125, .external_lex_state = 2}, [126] = {.lex_state = 125, .external_lex_state = 2}, - [127] = {.lex_state = 125, .external_lex_state = 2}, + [127] = {.lex_state = 125, .external_lex_state = 5}, [128] = {.lex_state = 125, .external_lex_state = 2}, - [129] = {.lex_state = 125, .external_lex_state = 2}, + [129] = {.lex_state = 6, .external_lex_state = 6}, [130] = {.lex_state = 125, .external_lex_state = 2}, - [131] = {.lex_state = 5, .external_lex_state = 2}, - [132] = {.lex_state = 6, .external_lex_state = 4}, + [131] = {.lex_state = 125, .external_lex_state = 2}, + [132] = {.lex_state = 6, .external_lex_state = 6}, [133] = {.lex_state = 125, .external_lex_state = 2}, - [134] = {.lex_state = 6, .external_lex_state = 4}, + [134] = {.lex_state = 6, .external_lex_state = 6}, [135] = {.lex_state = 125, .external_lex_state = 2}, - [136] = {.lex_state = 5, .external_lex_state = 2}, + [136] = {.lex_state = 125, .external_lex_state = 2}, [137] = {.lex_state = 125, .external_lex_state = 2}, - [138] = {.lex_state = 6, .external_lex_state = 4}, + [138] = {.lex_state = 125, .external_lex_state = 2}, [139] = {.lex_state = 125, .external_lex_state = 2}, [140] = {.lex_state = 125, .external_lex_state = 2}, [141] = {.lex_state = 125, .external_lex_state = 2}, @@ -6718,7 +6977,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [146] = {.lex_state = 125, .external_lex_state = 2}, [147] = {.lex_state = 125, .external_lex_state = 2}, [148] = {.lex_state = 125, .external_lex_state = 2}, - [149] = {.lex_state = 125, .external_lex_state = 2}, + [149] = {.lex_state = 5, .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}, @@ -6731,9 +6990,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [159] = {.lex_state = 125, .external_lex_state = 2}, [160] = {.lex_state = 125, .external_lex_state = 2}, [161] = {.lex_state = 125, .external_lex_state = 2}, - [162] = {.lex_state = 5, .external_lex_state = 2}, + [162] = {.lex_state = 125, .external_lex_state = 2}, [163] = {.lex_state = 125, .external_lex_state = 2}, - [164] = {.lex_state = 125, .external_lex_state = 2}, + [164] = {.lex_state = 5, .external_lex_state = 2}, [165] = {.lex_state = 125, .external_lex_state = 2}, [166] = {.lex_state = 125, .external_lex_state = 2}, [167] = {.lex_state = 125, .external_lex_state = 2}, @@ -6741,7 +7000,7 @@ 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}, [175] = {.lex_state = 125, .external_lex_state = 2}, @@ -6750,7 +7009,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [178] = {.lex_state = 125, .external_lex_state = 2}, [179] = {.lex_state = 125, .external_lex_state = 2}, [180] = {.lex_state = 125, .external_lex_state = 2}, - [181] = {.lex_state = 125, .external_lex_state = 2}, + [181] = {.lex_state = 5, .external_lex_state = 2}, [182] = {.lex_state = 125, .external_lex_state = 2}, [183] = {.lex_state = 125, .external_lex_state = 2}, [184] = {.lex_state = 125, .external_lex_state = 2}, @@ -6760,7 +7019,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [188] = {.lex_state = 125, .external_lex_state = 2}, [189] = {.lex_state = 125, .external_lex_state = 2}, [190] = {.lex_state = 125, .external_lex_state = 2}, - [191] = {.lex_state = 125, .external_lex_state = 2}, + [191] = {.lex_state = 5, .external_lex_state = 2}, [192] = {.lex_state = 125, .external_lex_state = 2}, [193] = {.lex_state = 125, .external_lex_state = 2}, [194] = {.lex_state = 125, .external_lex_state = 2}, @@ -6867,87 +7126,87 @@ 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}, - [324] = {.lex_state = 125, .external_lex_state = 2}, - [325] = {.lex_state = 6, .external_lex_state = 3}, - [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}, - [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}, - [339] = {.lex_state = 125, .external_lex_state = 2}, - [340] = {.lex_state = 125, .external_lex_state = 5}, - [341] = {.lex_state = 125, .external_lex_state = 5}, + [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 = 6, .external_lex_state = 6}, + [317] = {.lex_state = 6, .external_lex_state = 6}, + [318] = {.lex_state = 6, .external_lex_state = 6}, + [319] = {.lex_state = 6, .external_lex_state = 6}, + [320] = {.lex_state = 6, .external_lex_state = 6}, + [321] = {.lex_state = 6, .external_lex_state = 6}, + [322] = {.lex_state = 6, .external_lex_state = 6}, + [323] = {.lex_state = 6, .external_lex_state = 6}, + [324] = {.lex_state = 6, .external_lex_state = 6}, + [325] = {.lex_state = 6, .external_lex_state = 6}, + [326] = {.lex_state = 6, .external_lex_state = 6}, + [327] = {.lex_state = 6, .external_lex_state = 7}, + [328] = {.lex_state = 6, .external_lex_state = 7}, + [329] = {.lex_state = 6, .external_lex_state = 6}, + [330] = {.lex_state = 6, .external_lex_state = 7}, + [331] = {.lex_state = 6, .external_lex_state = 6}, + [332] = {.lex_state = 6, .external_lex_state = 6}, + [333] = {.lex_state = 6, .external_lex_state = 6}, + [334] = {.lex_state = 6, .external_lex_state = 7}, + [335] = {.lex_state = 6, .external_lex_state = 6}, + [336] = {.lex_state = 6, .external_lex_state = 6}, + [337] = {.lex_state = 6, .external_lex_state = 6}, + [338] = {.lex_state = 6, .external_lex_state = 6}, + [339] = {.lex_state = 6, .external_lex_state = 7}, + [340] = {.lex_state = 6, .external_lex_state = 7}, + [341] = {.lex_state = 6, .external_lex_state = 7}, [342] = {.lex_state = 125, .external_lex_state = 2}, - [343] = {.lex_state = 6, .external_lex_state = 4}, - [344] = {.lex_state = 6, .external_lex_state = 3}, - [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}, + [343] = {.lex_state = 6, .external_lex_state = 6}, + [344] = {.lex_state = 125, .external_lex_state = 5}, + [345] = {.lex_state = 125, .external_lex_state = 5}, + [346] = {.lex_state = 6, .external_lex_state = 6}, + [347] = {.lex_state = 6, .external_lex_state = 7}, + [348] = {.lex_state = 125, .external_lex_state = 2}, + [349] = {.lex_state = 6, .external_lex_state = 6}, + [350] = {.lex_state = 125, .external_lex_state = 2}, + [351] = {.lex_state = 6, .external_lex_state = 6}, + [352] = {.lex_state = 6, .external_lex_state = 7}, + [353] = {.lex_state = 125, .external_lex_state = 2}, + [354] = {.lex_state = 6, .external_lex_state = 7}, [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}, + [356] = {.lex_state = 125, .external_lex_state = 5}, + [357] = {.lex_state = 125, .external_lex_state = 5}, + [358] = {.lex_state = 125, .external_lex_state = 2}, + [359] = {.lex_state = 6, .external_lex_state = 7}, [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}, + [361] = {.lex_state = 125, .external_lex_state = 5}, + [362] = {.lex_state = 125, .external_lex_state = 5}, + [363] = {.lex_state = 125, .external_lex_state = 5}, + [364] = {.lex_state = 125, .external_lex_state = 5}, + [365] = {.lex_state = 125, .external_lex_state = 5}, + [366] = {.lex_state = 125, .external_lex_state = 5}, [367] = {.lex_state = 125, .external_lex_state = 2}, - [368] = {.lex_state = 125, .external_lex_state = 2}, + [368] = {.lex_state = 125, .external_lex_state = 5}, [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}, + [370] = {.lex_state = 125, .external_lex_state = 5}, + [371] = {.lex_state = 125, .external_lex_state = 5}, + [372] = {.lex_state = 125, .external_lex_state = 5}, + [373] = {.lex_state = 125, .external_lex_state = 5}, + [374] = {.lex_state = 125, .external_lex_state = 5}, + [375] = {.lex_state = 125, .external_lex_state = 5}, [376] = {.lex_state = 125, .external_lex_state = 2}, [377] = {.lex_state = 125, .external_lex_state = 2}, - [378] = {.lex_state = 125, .external_lex_state = 2}, + [378] = {.lex_state = 6, .external_lex_state = 6}, [379] = {.lex_state = 125, .external_lex_state = 2}, [380] = {.lex_state = 125, .external_lex_state = 2}, [381] = {.lex_state = 125, .external_lex_state = 2}, @@ -6965,7 +7224,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [393] = {.lex_state = 125, .external_lex_state = 2}, [394] = {.lex_state = 125, .external_lex_state = 2}, [395] = {.lex_state = 125, .external_lex_state = 2}, - [396] = {.lex_state = 125, .external_lex_state = 2}, + [396] = {.lex_state = 6, .external_lex_state = 7}, [397] = {.lex_state = 125, .external_lex_state = 2}, [398] = {.lex_state = 125, .external_lex_state = 2}, [399] = {.lex_state = 125, .external_lex_state = 2}, @@ -6975,11 +7234,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [403] = {.lex_state = 125, .external_lex_state = 2}, [404] = {.lex_state = 125, .external_lex_state = 2}, [405] = {.lex_state = 125, .external_lex_state = 2}, - [406] = {.lex_state = 125, .external_lex_state = 2}, + [406] = {.lex_state = 6, .external_lex_state = 6}, [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}, + [410] = {.lex_state = 125, .external_lex_state = 2}, [411] = {.lex_state = 125, .external_lex_state = 2}, [412] = {.lex_state = 125, .external_lex_state = 2}, [413] = {.lex_state = 125, .external_lex_state = 2}, @@ -6995,98 +7254,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [423] = {.lex_state = 125, .external_lex_state = 2}, [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 = 6, .external_lex_state = 7}, + [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}, - [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}, + [445] = {.lex_state = 6, .external_lex_state = 6}, + [446] = {.lex_state = 6, .external_lex_state = 6}, + [447] = {.lex_state = 6, .external_lex_state = 6}, + [448] = {.lex_state = 6, .external_lex_state = 7}, + [449] = {.lex_state = 6, .external_lex_state = 3}, + [450] = {.lex_state = 6, .external_lex_state = 3}, + [451] = {.lex_state = 6, .external_lex_state = 3}, + [452] = {.lex_state = 6, .external_lex_state = 3}, + [453] = {.lex_state = 6, .external_lex_state = 3}, + [454] = {.lex_state = 6, .external_lex_state = 3}, [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}, - [462] = {.lex_state = 125, .external_lex_state = 2}, - [463] = {.lex_state = 125, .external_lex_state = 2}, - [464] = {.lex_state = 6, .external_lex_state = 3}, - [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}, - [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}, + [456] = {.lex_state = 6, .external_lex_state = 7}, + [457] = {.lex_state = 6, .external_lex_state = 7}, + [458] = {.lex_state = 6, .external_lex_state = 3}, + [459] = {.lex_state = 6, .external_lex_state = 6}, + [460] = {.lex_state = 6, .external_lex_state = 6}, + [461] = {.lex_state = 6, .external_lex_state = 7}, + [462] = {.lex_state = 6, .external_lex_state = 6}, + [463] = {.lex_state = 6, .external_lex_state = 7}, + [464] = {.lex_state = 6, .external_lex_state = 6}, + [465] = {.lex_state = 6, .external_lex_state = 3}, + [466] = {.lex_state = 6, .external_lex_state = 6}, + [467] = {.lex_state = 6, .external_lex_state = 6}, + [468] = {.lex_state = 6, .external_lex_state = 6}, + [469] = {.lex_state = 6, .external_lex_state = 6}, + [470] = {.lex_state = 6, .external_lex_state = 6}, + [471] = {.lex_state = 6, .external_lex_state = 7}, + [472] = {.lex_state = 6, .external_lex_state = 7}, + [473] = {.lex_state = 6, .external_lex_state = 7}, + [474] = {.lex_state = 6, .external_lex_state = 6}, + [475] = {.lex_state = 6, .external_lex_state = 7}, + [476] = {.lex_state = 125, .external_lex_state = 2}, [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}, + [478] = {.lex_state = 125, .external_lex_state = 2}, + [479] = {.lex_state = 6, .external_lex_state = 4}, + [480] = {.lex_state = 6, .external_lex_state = 4}, [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}, + [482] = {.lex_state = 6, .external_lex_state = 4}, + [483] = {.lex_state = 6, .external_lex_state = 7}, + [484] = {.lex_state = 125, .external_lex_state = 2}, + [485] = {.lex_state = 6, .external_lex_state = 7}, + [486] = {.lex_state = 6, .external_lex_state = 4}, + [487] = {.lex_state = 6, .external_lex_state = 7}, + [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 = 125, .external_lex_state = 2}, + [492] = {.lex_state = 6, .external_lex_state = 4}, + [493] = {.lex_state = 125, .external_lex_state = 2}, + [494] = {.lex_state = 125, .external_lex_state = 2}, + [495] = {.lex_state = 6, .external_lex_state = 7}, + [496] = {.lex_state = 6, .external_lex_state = 4}, + [497] = {.lex_state = 6, .external_lex_state = 7}, [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}, + [500] = {.lex_state = 6, .external_lex_state = 4}, + [501] = {.lex_state = 6, .external_lex_state = 4}, + [502] = {.lex_state = 6, .external_lex_state = 7}, + [503] = {.lex_state = 6, .external_lex_state = 3}, + [504] = {.lex_state = 6, .external_lex_state = 7}, + [505] = {.lex_state = 6, .external_lex_state = 3}, + [506] = {.lex_state = 6, .external_lex_state = 7}, + [507] = {.lex_state = 6, .external_lex_state = 3}, + [508] = {.lex_state = 6, .external_lex_state = 7}, + [509] = {.lex_state = 6, .external_lex_state = 7}, + [510] = {.lex_state = 6, .external_lex_state = 3}, + [511] = {.lex_state = 6, .external_lex_state = 3}, + [512] = {.lex_state = 6, .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}, + [514] = {.lex_state = 124, .external_lex_state = 3}, + [515] = {.lex_state = 124, .external_lex_state = 4}, + [516] = {.lex_state = 124, .external_lex_state = 4}, + [517] = {.lex_state = 124, .external_lex_state = 4}, [518] = {.lex_state = 124, .external_lex_state = 3}, [519] = {.lex_state = 124, .external_lex_state = 3}, [520] = {.lex_state = 124, .external_lex_state = 3}, @@ -7118,7 +7377,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [549] = {.lex_state = 7, .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}, @@ -7131,52 +7390,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [562] = {.lex_state = 124, .external_lex_state = 4}, + [563] = {.lex_state = 124, .external_lex_state = 4}, [564] = {.lex_state = 124, .external_lex_state = 3}, - [565] = {.lex_state = 124, .external_lex_state = 3}, - [566] = {.lex_state = 124, .external_lex_state = 3}, + [565] = {.lex_state = 124, .external_lex_state = 8}, + [566] = {.lex_state = 124, .external_lex_state = 8}, [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}, + [569] = {.lex_state = 124, .external_lex_state = 9}, + [570] = {.lex_state = 124, .external_lex_state = 9}, + [571] = {.lex_state = 124, .external_lex_state = 4}, + [572] = {.lex_state = 124, .external_lex_state = 9}, + [573] = {.lex_state = 124, .external_lex_state = 9}, + [574] = {.lex_state = 124, .external_lex_state = 9}, + [575] = {.lex_state = 124, .external_lex_state = 9}, + [576] = {.lex_state = 124, .external_lex_state = 4}, + [577] = {.lex_state = 124, .external_lex_state = 9}, + [578] = {.lex_state = 124, .external_lex_state = 9}, + [579] = {.lex_state = 124, .external_lex_state = 9}, + [580] = {.lex_state = 124, .external_lex_state = 9}, + [581] = {.lex_state = 124, .external_lex_state = 4}, + [582] = {.lex_state = 124, .external_lex_state = 9}, + [583] = {.lex_state = 124, .external_lex_state = 9}, [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}, + [585] = {.lex_state = 124, .external_lex_state = 9}, + [586] = {.lex_state = 124, .external_lex_state = 4}, + [587] = {.lex_state = 124, .external_lex_state = 4}, + [588] = {.lex_state = 124, .external_lex_state = 9}, + [589] = {.lex_state = 124, .external_lex_state = 9}, + [590] = {.lex_state = 124, .external_lex_state = 9}, + [591] = {.lex_state = 124, .external_lex_state = 9}, + [592] = {.lex_state = 124, .external_lex_state = 4}, + [593] = {.lex_state = 124, .external_lex_state = 9}, + [594] = {.lex_state = 124, .external_lex_state = 4}, + [595] = {.lex_state = 124, .external_lex_state = 9}, + [596] = {.lex_state = 124, .external_lex_state = 9}, + [597] = {.lex_state = 124, .external_lex_state = 9}, + [598] = {.lex_state = 124, .external_lex_state = 9}, + [599] = {.lex_state = 124, .external_lex_state = 4}, + [600] = {.lex_state = 124, .external_lex_state = 4}, + [601] = {.lex_state = 124, .external_lex_state = 4}, + [602] = {.lex_state = 124, .external_lex_state = 4}, + [603] = {.lex_state = 124, .external_lex_state = 4}, [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}, + [607] = {.lex_state = 124, .external_lex_state = 4}, [608] = {.lex_state = 124, .external_lex_state = 4}, [609] = {.lex_state = 124, .external_lex_state = 4}, [610] = {.lex_state = 124, .external_lex_state = 4}, @@ -7187,7 +7446,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [618] = {.lex_state = 7, .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}, @@ -7195,1106 +7454,1354 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [626] = {.lex_state = 7, .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}, + [631] = {.lex_state = 124, .external_lex_state = 3}, + [632] = {.lex_state = 124, .external_lex_state = 4}, [633] = {.lex_state = 124, .external_lex_state = 4}, [634] = {.lex_state = 124, .external_lex_state = 4}, - [635] = {.lex_state = 124, .external_lex_state = 4}, + [635] = {.lex_state = 124, .external_lex_state = 3}, [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}, + [641] = {.lex_state = 124, .external_lex_state = 3}, + [642] = {.lex_state = 124, .external_lex_state = 3}, [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}, + [647] = {.lex_state = 124, .external_lex_state = 3}, [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}, + [649] = {.lex_state = 124, .external_lex_state = 9}, + [650] = {.lex_state = 124, .external_lex_state = 9}, + [651] = {.lex_state = 124, .external_lex_state = 3}, + [652] = {.lex_state = 124, .external_lex_state = 9}, + [653] = {.lex_state = 124, .external_lex_state = 9}, + [654] = {.lex_state = 124, .external_lex_state = 3}, + [655] = {.lex_state = 124, .external_lex_state = 9}, + [656] = {.lex_state = 124, .external_lex_state = 3}, [657] = {.lex_state = 124, .external_lex_state = 4}, - [658] = {.lex_state = 124, .external_lex_state = 4}, - [659] = {.lex_state = 124, .external_lex_state = 4}, - [660] = {.lex_state = 124, .external_lex_state = 4}, - [661] = {.lex_state = 124, .external_lex_state = 4}, - [662] = {.lex_state = 124, .external_lex_state = 4}, - [663] = {.lex_state = 124, .external_lex_state = 4}, + [658] = {.lex_state = 124, .external_lex_state = 9}, + [659] = {.lex_state = 124, .external_lex_state = 9}, + [660] = {.lex_state = 124, .external_lex_state = 3}, + [661] = {.lex_state = 124, .external_lex_state = 9}, + [662] = {.lex_state = 124, .external_lex_state = 9}, + [663] = {.lex_state = 124, .external_lex_state = 9}, [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}, - [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}, - [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}, - [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}, + [665] = {.lex_state = 124, .external_lex_state = 9}, + [666] = {.lex_state = 124, .external_lex_state = 9}, + [667] = {.lex_state = 124, .external_lex_state = 9}, + [668] = {.lex_state = 124, .external_lex_state = 9}, + [669] = {.lex_state = 124, .external_lex_state = 9}, + [670] = {.lex_state = 124, .external_lex_state = 9}, + [671] = {.lex_state = 124, .external_lex_state = 9}, + [672] = {.lex_state = 124, .external_lex_state = 9}, + [673] = {.lex_state = 124, .external_lex_state = 9}, + [674] = {.lex_state = 124, .external_lex_state = 9}, + [675] = {.lex_state = 124, .external_lex_state = 9}, + [676] = {.lex_state = 124, .external_lex_state = 9}, + [677] = {.lex_state = 124, .external_lex_state = 3}, + [678] = {.lex_state = 124, .external_lex_state = 9}, + [679] = {.lex_state = 124, .external_lex_state = 9}, + [680] = {.lex_state = 124, .external_lex_state = 9}, + [681] = {.lex_state = 124, .external_lex_state = 8}, + [682] = {.lex_state = 124, .external_lex_state = 3}, + [683] = {.lex_state = 124, .external_lex_state = 8}, + [684] = {.lex_state = 124, .external_lex_state = 8}, + [685] = {.lex_state = 124, .external_lex_state = 8}, + [686] = {.lex_state = 124, .external_lex_state = 8}, + [687] = {.lex_state = 124, .external_lex_state = 8}, + [688] = {.lex_state = 124, .external_lex_state = 8}, + [689] = {.lex_state = 124, .external_lex_state = 8}, + [690] = {.lex_state = 124, .external_lex_state = 8}, + [691] = {.lex_state = 124, .external_lex_state = 8}, + [692] = {.lex_state = 124, .external_lex_state = 8}, + [693] = {.lex_state = 124, .external_lex_state = 8}, + [694] = {.lex_state = 124, .external_lex_state = 8}, + [695] = {.lex_state = 124, .external_lex_state = 8}, + [696] = {.lex_state = 124, .external_lex_state = 3}, + [697] = {.lex_state = 124, .external_lex_state = 3}, + [698] = {.lex_state = 124, .external_lex_state = 8}, + [699] = {.lex_state = 124, .external_lex_state = 8}, + [700] = {.lex_state = 124, .external_lex_state = 8}, + [701] = {.lex_state = 124, .external_lex_state = 8}, + [702] = {.lex_state = 124, .external_lex_state = 8}, + [703] = {.lex_state = 124, .external_lex_state = 8}, + [704] = {.lex_state = 124, .external_lex_state = 8}, + [705] = {.lex_state = 124, .external_lex_state = 3}, + [706] = {.lex_state = 124, .external_lex_state = 8}, + [707] = {.lex_state = 124, .external_lex_state = 8}, + [708] = {.lex_state = 124, .external_lex_state = 8}, + [709] = {.lex_state = 7, .external_lex_state = 3}, + [710] = {.lex_state = 4, .external_lex_state = 10}, + [711] = {.lex_state = 124, .external_lex_state = 8}, + [712] = {.lex_state = 124, .external_lex_state = 8}, + [713] = {.lex_state = 124, .external_lex_state = 8}, + [714] = {.lex_state = 4, .external_lex_state = 10}, + [715] = {.lex_state = 4, .external_lex_state = 10}, + [716] = {.lex_state = 124, .external_lex_state = 8}, + [717] = {.lex_state = 124, .external_lex_state = 8}, + [718] = {.lex_state = 124, .external_lex_state = 8}, + [719] = {.lex_state = 124, .external_lex_state = 8}, + [720] = {.lex_state = 124, .external_lex_state = 8}, + [721] = {.lex_state = 124, .external_lex_state = 8}, + [722] = {.lex_state = 124, .external_lex_state = 8}, + [723] = {.lex_state = 124, .external_lex_state = 8}, + [724] = {.lex_state = 4, .external_lex_state = 10}, + [725] = {.lex_state = 124, .external_lex_state = 8}, + [726] = {.lex_state = 124, .external_lex_state = 8}, + [727] = {.lex_state = 124, .external_lex_state = 8}, + [728] = {.lex_state = 124, .external_lex_state = 8}, + [729] = {.lex_state = 124, .external_lex_state = 8}, + [730] = {.lex_state = 124, .external_lex_state = 8}, + [731] = {.lex_state = 124, .external_lex_state = 8}, + [732] = {.lex_state = 124, .external_lex_state = 3}, + [733] = {.lex_state = 124, .external_lex_state = 8}, + [734] = {.lex_state = 124, .external_lex_state = 8}, + [735] = {.lex_state = 124, .external_lex_state = 8}, + [736] = {.lex_state = 124, .external_lex_state = 8}, + [737] = {.lex_state = 124, .external_lex_state = 8}, + [738] = {.lex_state = 124, .external_lex_state = 8}, + [739] = {.lex_state = 124, .external_lex_state = 8}, + [740] = {.lex_state = 124, .external_lex_state = 8}, + [741] = {.lex_state = 124, .external_lex_state = 8}, + [742] = {.lex_state = 124, .external_lex_state = 8}, + [743] = {.lex_state = 124, .external_lex_state = 8}, + [744] = {.lex_state = 124, .external_lex_state = 8}, + [745] = {.lex_state = 124, .external_lex_state = 8}, + [746] = {.lex_state = 124, .external_lex_state = 8}, + [747] = {.lex_state = 124, .external_lex_state = 8}, + [748] = {.lex_state = 124, .external_lex_state = 8}, + [749] = {.lex_state = 124, .external_lex_state = 8}, + [750] = {.lex_state = 124, .external_lex_state = 8}, + [751] = {.lex_state = 124, .external_lex_state = 8}, + [752] = {.lex_state = 124, .external_lex_state = 8}, + [753] = {.lex_state = 124, .external_lex_state = 8}, + [754] = {.lex_state = 124, .external_lex_state = 8}, + [755] = {.lex_state = 124, .external_lex_state = 8}, + [756] = {.lex_state = 124, .external_lex_state = 9}, + [757] = {.lex_state = 124, .external_lex_state = 8}, + [758] = {.lex_state = 124, .external_lex_state = 8}, + [759] = {.lex_state = 124, .external_lex_state = 8}, + [760] = {.lex_state = 124, .external_lex_state = 8}, + [761] = {.lex_state = 124, .external_lex_state = 8}, + [762] = {.lex_state = 124, .external_lex_state = 8}, + [763] = {.lex_state = 4, .external_lex_state = 10}, + [764] = {.lex_state = 124, .external_lex_state = 9}, + [765] = {.lex_state = 124, .external_lex_state = 8}, + [766] = {.lex_state = 4, .external_lex_state = 10}, + [767] = {.lex_state = 124, .external_lex_state = 8}, + [768] = {.lex_state = 124, .external_lex_state = 8}, + [769] = {.lex_state = 124, .external_lex_state = 8}, + [770] = {.lex_state = 124, .external_lex_state = 8}, + [771] = {.lex_state = 124, .external_lex_state = 8}, + [772] = {.lex_state = 124, .external_lex_state = 8}, + [773] = {.lex_state = 124, .external_lex_state = 8}, + [774] = {.lex_state = 124, .external_lex_state = 8}, [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}, - [785] = {.lex_state = 124, .external_lex_state = 3}, - [786] = {.lex_state = 124, .external_lex_state = 3}, - [787] = {.lex_state = 124, .external_lex_state = 3}, - [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}, - [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}, - [858] = {.lex_state = 124, .external_lex_state = 3}, - [859] = {.lex_state = 124, .external_lex_state = 3}, - [860] = {.lex_state = 124, .external_lex_state = 3}, - [861] = {.lex_state = 124, .external_lex_state = 3}, - [862] = {.lex_state = 124, .external_lex_state = 3}, - [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}, - [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}, + [776] = {.lex_state = 124, .external_lex_state = 8}, + [777] = {.lex_state = 124, .external_lex_state = 8}, + [778] = {.lex_state = 124, .external_lex_state = 9}, + [779] = {.lex_state = 124, .external_lex_state = 9}, + [780] = {.lex_state = 124, .external_lex_state = 9}, + [781] = {.lex_state = 124, .external_lex_state = 9}, + [782] = {.lex_state = 124, .external_lex_state = 8}, + [783] = {.lex_state = 124, .external_lex_state = 9}, + [784] = {.lex_state = 124, .external_lex_state = 9}, + [785] = {.lex_state = 124, .external_lex_state = 9}, + [786] = {.lex_state = 124, .external_lex_state = 9}, + [787] = {.lex_state = 124, .external_lex_state = 9}, + [788] = {.lex_state = 124, .external_lex_state = 9}, + [789] = {.lex_state = 124, .external_lex_state = 9}, + [790] = {.lex_state = 124, .external_lex_state = 9}, + [791] = {.lex_state = 124, .external_lex_state = 9}, + [792] = {.lex_state = 124, .external_lex_state = 9}, + [793] = {.lex_state = 124, .external_lex_state = 9}, + [794] = {.lex_state = 124, .external_lex_state = 9}, + [795] = {.lex_state = 124, .external_lex_state = 9}, + [796] = {.lex_state = 124, .external_lex_state = 9}, + [797] = {.lex_state = 124, .external_lex_state = 9}, + [798] = {.lex_state = 124, .external_lex_state = 9}, + [799] = {.lex_state = 124, .external_lex_state = 8}, + [800] = {.lex_state = 124, .external_lex_state = 9}, + [801] = {.lex_state = 124, .external_lex_state = 9}, + [802] = {.lex_state = 124, .external_lex_state = 9}, + [803] = {.lex_state = 124, .external_lex_state = 9}, + [804] = {.lex_state = 124, .external_lex_state = 9}, + [805] = {.lex_state = 124, .external_lex_state = 9}, + [806] = {.lex_state = 124, .external_lex_state = 9}, + [807] = {.lex_state = 124, .external_lex_state = 9}, + [808] = {.lex_state = 124, .external_lex_state = 9}, + [809] = {.lex_state = 124, .external_lex_state = 9}, + [810] = {.lex_state = 124, .external_lex_state = 9}, + [811] = {.lex_state = 124, .external_lex_state = 9}, + [812] = {.lex_state = 124, .external_lex_state = 9}, + [813] = {.lex_state = 124, .external_lex_state = 9}, + [814] = {.lex_state = 124, .external_lex_state = 9}, + [815] = {.lex_state = 124, .external_lex_state = 9}, + [816] = {.lex_state = 124, .external_lex_state = 9}, + [817] = {.lex_state = 124, .external_lex_state = 9}, + [818] = {.lex_state = 124, .external_lex_state = 9}, + [819] = {.lex_state = 124, .external_lex_state = 9}, + [820] = {.lex_state = 124, .external_lex_state = 9}, + [821] = {.lex_state = 124, .external_lex_state = 9}, + [822] = {.lex_state = 124, .external_lex_state = 9}, + [823] = {.lex_state = 124, .external_lex_state = 9}, + [824] = {.lex_state = 124, .external_lex_state = 8}, + [825] = {.lex_state = 124, .external_lex_state = 9}, + [826] = {.lex_state = 4, .external_lex_state = 10}, + [827] = {.lex_state = 124, .external_lex_state = 9}, + [828] = {.lex_state = 124, .external_lex_state = 9}, + [829] = {.lex_state = 124, .external_lex_state = 9}, + [830] = {.lex_state = 124, .external_lex_state = 9}, + [831] = {.lex_state = 124, .external_lex_state = 9}, + [832] = {.lex_state = 124, .external_lex_state = 9}, + [833] = {.lex_state = 124, .external_lex_state = 8}, + [834] = {.lex_state = 124, .external_lex_state = 9}, + [835] = {.lex_state = 124, .external_lex_state = 9}, + [836] = {.lex_state = 124, .external_lex_state = 9}, + [837] = {.lex_state = 124, .external_lex_state = 9}, + [838] = {.lex_state = 124, .external_lex_state = 9}, + [839] = {.lex_state = 124, .external_lex_state = 8}, + [840] = {.lex_state = 124, .external_lex_state = 9}, + [841] = {.lex_state = 124, .external_lex_state = 9}, + [842] = {.lex_state = 124, .external_lex_state = 9}, + [843] = {.lex_state = 124, .external_lex_state = 8}, + [844] = {.lex_state = 124, .external_lex_state = 9}, + [845] = {.lex_state = 124, .external_lex_state = 9}, + [846] = {.lex_state = 124, .external_lex_state = 9}, + [847] = {.lex_state = 124, .external_lex_state = 9}, + [848] = {.lex_state = 124, .external_lex_state = 9}, + [849] = {.lex_state = 124, .external_lex_state = 9}, + [850] = {.lex_state = 124, .external_lex_state = 9}, + [851] = {.lex_state = 124, .external_lex_state = 9}, + [852] = {.lex_state = 124, .external_lex_state = 9}, + [853] = {.lex_state = 124, .external_lex_state = 9}, + [854] = {.lex_state = 124, .external_lex_state = 9}, + [855] = {.lex_state = 124, .external_lex_state = 9}, + [856] = {.lex_state = 124, .external_lex_state = 9}, + [857] = {.lex_state = 124, .external_lex_state = 9}, + [858] = {.lex_state = 124, .external_lex_state = 9}, + [859] = {.lex_state = 124, .external_lex_state = 9}, + [860] = {.lex_state = 124, .external_lex_state = 9}, + [861] = {.lex_state = 124, .external_lex_state = 9}, + [862] = {.lex_state = 124, .external_lex_state = 9}, + [863] = {.lex_state = 124, .external_lex_state = 9}, + [864] = {.lex_state = 124, .external_lex_state = 9}, + [865] = {.lex_state = 124, .external_lex_state = 9}, + [866] = {.lex_state = 124, .external_lex_state = 9}, + [867] = {.lex_state = 124, .external_lex_state = 9}, + [868] = {.lex_state = 124, .external_lex_state = 9}, + [869] = {.lex_state = 124, .external_lex_state = 9}, + [870] = {.lex_state = 124, .external_lex_state = 9}, + [871] = {.lex_state = 124, .external_lex_state = 9}, + [872] = {.lex_state = 124, .external_lex_state = 9}, + [873] = {.lex_state = 124, .external_lex_state = 9}, + [874] = {.lex_state = 124, .external_lex_state = 9}, + [875] = {.lex_state = 124, .external_lex_state = 9}, + [876] = {.lex_state = 124, .external_lex_state = 9}, + [877] = {.lex_state = 124, .external_lex_state = 9}, + [878] = {.lex_state = 124, .external_lex_state = 9}, + [879] = {.lex_state = 124, .external_lex_state = 9}, + [880] = {.lex_state = 124, .external_lex_state = 9}, + [881] = {.lex_state = 124, .external_lex_state = 9}, + [882] = {.lex_state = 124, .external_lex_state = 9}, + [883] = {.lex_state = 124, .external_lex_state = 9}, + [884] = {.lex_state = 124, .external_lex_state = 9}, + [885] = {.lex_state = 124, .external_lex_state = 9}, + [886] = {.lex_state = 124, .external_lex_state = 9}, + [887] = {.lex_state = 124, .external_lex_state = 9}, + [888] = {.lex_state = 124, .external_lex_state = 9}, + [889] = {.lex_state = 124, .external_lex_state = 9}, + [890] = {.lex_state = 4, .external_lex_state = 10}, + [891] = {.lex_state = 4, .external_lex_state = 10}, + [892] = {.lex_state = 125, .external_lex_state = 10}, + [893] = {.lex_state = 125, .external_lex_state = 10}, + [894] = {.lex_state = 4, .external_lex_state = 10}, + [895] = {.lex_state = 4, .external_lex_state = 10}, + [896] = {.lex_state = 4, .external_lex_state = 10}, + [897] = {.lex_state = 4, .external_lex_state = 10}, + [898] = {.lex_state = 4, .external_lex_state = 10}, + [899] = {.lex_state = 4, .external_lex_state = 10}, + [900] = {.lex_state = 4, .external_lex_state = 10}, + [901] = {.lex_state = 4, .external_lex_state = 10}, + [902] = {.lex_state = 4, .external_lex_state = 10}, + [903] = {.lex_state = 125, .external_lex_state = 10}, [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}, + [906] = {.lex_state = 125, .external_lex_state = 2}, + [907] = {.lex_state = 125, .external_lex_state = 2}, + [908] = {.lex_state = 125, .external_lex_state = 2}, [909] = {.lex_state = 125, .external_lex_state = 2}, - [910] = {.lex_state = 4, .external_lex_state = 2}, - [911] = {.lex_state = 125, .external_lex_state = 5}, + [910] = {.lex_state = 125, .external_lex_state = 2}, + [911] = {.lex_state = 125, .external_lex_state = 2}, [912] = {.lex_state = 125, .external_lex_state = 2}, - [913] = {.lex_state = 125, .external_lex_state = 5}, + [913] = {.lex_state = 125, .external_lex_state = 2}, [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}, + [915] = {.lex_state = 125, .external_lex_state = 2}, + [916] = {.lex_state = 125, .external_lex_state = 2}, + [917] = {.lex_state = 125, .external_lex_state = 5}, + [918] = {.lex_state = 125, .external_lex_state = 2}, + [919] = {.lex_state = 125, .external_lex_state = 2}, + [920] = {.lex_state = 125, .external_lex_state = 2}, + [921] = {.lex_state = 125, .external_lex_state = 2}, [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}, + [923] = {.lex_state = 125, .external_lex_state = 2}, + [924] = {.lex_state = 125, .external_lex_state = 2}, + [925] = {.lex_state = 125, .external_lex_state = 2}, + [926] = {.lex_state = 125, .external_lex_state = 2}, + [927] = {.lex_state = 4, .external_lex_state = 10}, + [928] = {.lex_state = 4, .external_lex_state = 10}, + [929] = {.lex_state = 4, .external_lex_state = 10}, + [930] = {.lex_state = 125, .external_lex_state = 2}, + [931] = {.lex_state = 125, .external_lex_state = 5}, + [932] = {.lex_state = 125, .external_lex_state = 5}, + [933] = {.lex_state = 125, .external_lex_state = 2}, + [934] = {.lex_state = 125, .external_lex_state = 5}, + [935] = {.lex_state = 125, .external_lex_state = 5}, + [936] = {.lex_state = 125, .external_lex_state = 5}, + [937] = {.lex_state = 125, .external_lex_state = 2}, + [938] = {.lex_state = 125, .external_lex_state = 2}, + [939] = {.lex_state = 125, .external_lex_state = 5}, + [940] = {.lex_state = 125, .external_lex_state = 5}, + [941] = {.lex_state = 125, .external_lex_state = 2}, + [942] = {.lex_state = 9, .external_lex_state = 2}, + [943] = {.lex_state = 125, .external_lex_state = 5}, + [944] = {.lex_state = 125, .external_lex_state = 5}, + [945] = {.lex_state = 125, .external_lex_state = 5}, + [946] = {.lex_state = 125, .external_lex_state = 5}, + [947] = {.lex_state = 4, .external_lex_state = 11}, + [948] = {.lex_state = 4, .external_lex_state = 10}, + [949] = {.lex_state = 4, .external_lex_state = 11}, + [950] = {.lex_state = 9, .external_lex_state = 2}, + [951] = {.lex_state = 125, .external_lex_state = 12}, + [952] = {.lex_state = 125, .external_lex_state = 2}, + [953] = {.lex_state = 4, .external_lex_state = 10}, + [954] = {.lex_state = 4, .external_lex_state = 10}, + [955] = {.lex_state = 4, .external_lex_state = 10}, + [956] = {.lex_state = 4, .external_lex_state = 10}, + [957] = {.lex_state = 4, .external_lex_state = 10}, + [958] = {.lex_state = 4, .external_lex_state = 10}, + [959] = {.lex_state = 4, .external_lex_state = 10}, + [960] = {.lex_state = 4, .external_lex_state = 10}, + [961] = {.lex_state = 4, .external_lex_state = 10}, + [962] = {.lex_state = 4, .external_lex_state = 10}, + [963] = {.lex_state = 4, .external_lex_state = 10}, + [964] = {.lex_state = 4, .external_lex_state = 10}, [965] = {.lex_state = 125, .external_lex_state = 2}, - [966] = {.lex_state = 125, .external_lex_state = 2}, + [966] = {.lex_state = 4, .external_lex_state = 10}, [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}, + [968] = {.lex_state = 4, .external_lex_state = 10}, + [969] = {.lex_state = 4, .external_lex_state = 10}, + [970] = {.lex_state = 4, .external_lex_state = 10}, + [971] = {.lex_state = 4, .external_lex_state = 10}, + [972] = {.lex_state = 4, .external_lex_state = 10}, + [973] = {.lex_state = 4, .external_lex_state = 10}, + [974] = {.lex_state = 4, .external_lex_state = 10}, + [975] = {.lex_state = 125, .external_lex_state = 13}, + [976] = {.lex_state = 4, .external_lex_state = 10}, + [977] = {.lex_state = 4, .external_lex_state = 10}, [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}, + [979] = {.lex_state = 4, .external_lex_state = 10}, + [980] = {.lex_state = 4, .external_lex_state = 10}, + [981] = {.lex_state = 4, .external_lex_state = 10}, + [982] = {.lex_state = 4, .external_lex_state = 10}, [983] = {.lex_state = 125, .external_lex_state = 2}, - [984] = {.lex_state = 125, .external_lex_state = 2}, + [984] = {.lex_state = 4, .external_lex_state = 10}, [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}, + [986] = {.lex_state = 4, .external_lex_state = 10}, + [987] = {.lex_state = 4, .external_lex_state = 10}, + [988] = {.lex_state = 4, .external_lex_state = 10}, + [989] = {.lex_state = 4, .external_lex_state = 10}, + [990] = {.lex_state = 4, .external_lex_state = 10}, + [991] = {.lex_state = 4, .external_lex_state = 10}, + [992] = {.lex_state = 4, .external_lex_state = 10}, + [993] = {.lex_state = 4, .external_lex_state = 10}, [994] = {.lex_state = 125, .external_lex_state = 2}, - [995] = {.lex_state = 125, .external_lex_state = 2}, + [995] = {.lex_state = 125, .external_lex_state = 10}, [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}, + [999] = {.lex_state = 4, .external_lex_state = 10}, + [1000] = {.lex_state = 4, .external_lex_state = 10}, + [1001] = {.lex_state = 4, .external_lex_state = 10}, + [1002] = {.lex_state = 4, .external_lex_state = 10}, + [1003] = {.lex_state = 125, .external_lex_state = 14}, + [1004] = {.lex_state = 125, .external_lex_state = 2}, [1005] = {.lex_state = 125, .external_lex_state = 2}, - [1006] = {.lex_state = 4, .external_lex_state = 2}, + [1006] = {.lex_state = 125, .external_lex_state = 2}, [1007] = {.lex_state = 125, .external_lex_state = 2}, [1008] = {.lex_state = 125, .external_lex_state = 2}, - [1009] = {.lex_state = 125, .external_lex_state = 2}, - [1010] = {.lex_state = 125, .external_lex_state = 2}, + [1009] = {.lex_state = 4, .external_lex_state = 10}, + [1010] = {.lex_state = 125, .external_lex_state = 14}, [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}, + [1015] = {.lex_state = 125, .external_lex_state = 2}, + [1016] = {.lex_state = 125, .external_lex_state = 10}, [1017] = {.lex_state = 125, .external_lex_state = 2}, - [1018] = {.lex_state = 6, .external_lex_state = 2}, - [1019] = {.lex_state = 6, .external_lex_state = 2}, + [1018] = {.lex_state = 125, .external_lex_state = 2}, + [1019] = {.lex_state = 125, .external_lex_state = 2}, [1020] = {.lex_state = 125, .external_lex_state = 2}, [1021] = {.lex_state = 125, .external_lex_state = 2}, [1022] = {.lex_state = 125, .external_lex_state = 2}, - [1023] = {.lex_state = 6, .external_lex_state = 2}, + [1023] = {.lex_state = 125, .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}, + [1026] = {.lex_state = 4, .external_lex_state = 10}, + [1027] = {.lex_state = 125, .external_lex_state = 10}, [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}, + [1029] = {.lex_state = 125, .external_lex_state = 2}, + [1030] = {.lex_state = 125, .external_lex_state = 10}, + [1031] = {.lex_state = 125, .external_lex_state = 10}, + [1032] = {.lex_state = 125, .external_lex_state = 10}, + [1033] = {.lex_state = 6, .external_lex_state = 14}, + [1034] = {.lex_state = 125, .external_lex_state = 10}, + [1035] = {.lex_state = 125, .external_lex_state = 10}, + [1036] = {.lex_state = 125, .external_lex_state = 10}, + [1037] = {.lex_state = 125, .external_lex_state = 10}, + [1038] = {.lex_state = 6, .external_lex_state = 14}, + [1039] = {.lex_state = 125, .external_lex_state = 10}, + [1040] = {.lex_state = 6, .external_lex_state = 14}, + [1041] = {.lex_state = 125, .external_lex_state = 10}, + [1042] = {.lex_state = 125, .external_lex_state = 10}, + [1043] = {.lex_state = 125, .external_lex_state = 10}, + [1044] = {.lex_state = 125, .external_lex_state = 10}, + [1045] = {.lex_state = 125, .external_lex_state = 10}, + [1046] = {.lex_state = 125, .external_lex_state = 10}, + [1047] = {.lex_state = 125, .external_lex_state = 10}, + [1048] = {.lex_state = 125, .external_lex_state = 10}, + [1049] = {.lex_state = 125, .external_lex_state = 10}, + [1050] = {.lex_state = 125, .external_lex_state = 10}, + [1051] = {.lex_state = 6, .external_lex_state = 14}, + [1052] = {.lex_state = 6, .external_lex_state = 14}, + [1053] = {.lex_state = 125, .external_lex_state = 10}, + [1054] = {.lex_state = 124, .external_lex_state = 13}, + [1055] = {.lex_state = 124, .external_lex_state = 13}, + [1056] = {.lex_state = 9, .external_lex_state = 15}, + [1057] = {.lex_state = 9, .external_lex_state = 15}, + [1058] = {.lex_state = 31, .external_lex_state = 14}, + [1059] = {.lex_state = 9, .external_lex_state = 15}, + [1060] = {.lex_state = 9, .external_lex_state = 15}, + [1061] = {.lex_state = 9, .external_lex_state = 15}, + [1062] = {.lex_state = 9, .external_lex_state = 15}, + [1063] = {.lex_state = 31, .external_lex_state = 14}, + [1064] = {.lex_state = 9, .external_lex_state = 15}, + [1065] = {.lex_state = 31, .external_lex_state = 14}, + [1066] = {.lex_state = 9, .external_lex_state = 15}, + [1067] = {.lex_state = 31, .external_lex_state = 14}, + [1068] = {.lex_state = 31, .external_lex_state = 14}, + [1069] = {.lex_state = 9, .external_lex_state = 15}, + [1070] = {.lex_state = 31, .external_lex_state = 14}, + [1071] = {.lex_state = 31, .external_lex_state = 14}, + [1072] = {.lex_state = 31, .external_lex_state = 14}, + [1073] = {.lex_state = 31, .external_lex_state = 14}, + [1074] = {.lex_state = 31, .external_lex_state = 14}, + [1075] = {.lex_state = 31, .external_lex_state = 14}, + [1076] = {.lex_state = 31, .external_lex_state = 14}, + [1077] = {.lex_state = 31, .external_lex_state = 14}, + [1078] = {.lex_state = 31, .external_lex_state = 14}, + [1079] = {.lex_state = 31, .external_lex_state = 14}, + [1080] = {.lex_state = 31, .external_lex_state = 14}, + [1081] = {.lex_state = 31, .external_lex_state = 14}, + [1082] = {.lex_state = 31, .external_lex_state = 14}, + [1083] = {.lex_state = 31, .external_lex_state = 14}, + [1084] = {.lex_state = 31, .external_lex_state = 14}, + [1085] = {.lex_state = 31, .external_lex_state = 14}, + [1086] = {.lex_state = 31, .external_lex_state = 14}, + [1087] = {.lex_state = 31, .external_lex_state = 14}, + [1088] = {.lex_state = 31, .external_lex_state = 14}, + [1089] = {.lex_state = 31, .external_lex_state = 14}, + [1090] = {.lex_state = 31, .external_lex_state = 14}, + [1091] = {.lex_state = 31, .external_lex_state = 14}, + [1092] = {.lex_state = 125, .external_lex_state = 14}, + [1093] = {.lex_state = 31, .external_lex_state = 14}, + [1094] = {.lex_state = 31, .external_lex_state = 14}, + [1095] = {.lex_state = 31, .external_lex_state = 14}, + [1096] = {.lex_state = 31, .external_lex_state = 14}, + [1097] = {.lex_state = 125, .external_lex_state = 14}, + [1098] = {.lex_state = 31, .external_lex_state = 14}, + [1099] = {.lex_state = 31, .external_lex_state = 14}, + [1100] = {.lex_state = 125, .external_lex_state = 14}, + [1101] = {.lex_state = 125, .external_lex_state = 14}, + [1102] = {.lex_state = 31, .external_lex_state = 14}, + [1103] = {.lex_state = 125, .external_lex_state = 16}, + [1104] = {.lex_state = 125, .external_lex_state = 14}, + [1105] = {.lex_state = 125, .external_lex_state = 14}, + [1106] = {.lex_state = 125, .external_lex_state = 13}, + [1107] = {.lex_state = 125, .external_lex_state = 14}, + [1108] = {.lex_state = 125, .external_lex_state = 16}, + [1109] = {.lex_state = 125, .external_lex_state = 16}, + [1110] = {.lex_state = 125, .external_lex_state = 13}, + [1111] = {.lex_state = 125, .external_lex_state = 14}, + [1112] = {.lex_state = 125, .external_lex_state = 13}, + [1113] = {.lex_state = 125, .external_lex_state = 13}, + [1114] = {.lex_state = 125, .external_lex_state = 10}, + [1115] = {.lex_state = 125, .external_lex_state = 10}, + [1116] = {.lex_state = 125, .external_lex_state = 10}, + [1117] = {.lex_state = 125, .external_lex_state = 10}, + [1118] = {.lex_state = 125, .external_lex_state = 10}, + [1119] = {.lex_state = 125, .external_lex_state = 10}, + [1120] = {.lex_state = 125, .external_lex_state = 14}, + [1121] = {.lex_state = 125, .external_lex_state = 14}, + [1122] = {.lex_state = 125, .external_lex_state = 14}, + [1123] = {.lex_state = 125, .external_lex_state = 14}, + [1124] = {.lex_state = 125, .external_lex_state = 16}, + [1125] = {.lex_state = 125, .external_lex_state = 14}, + [1126] = {.lex_state = 125, .external_lex_state = 13}, + [1127] = {.lex_state = 125, .external_lex_state = 14}, + [1128] = {.lex_state = 125, .external_lex_state = 13}, + [1129] = {.lex_state = 125, .external_lex_state = 10}, + [1130] = {.lex_state = 125, .external_lex_state = 14}, + [1131] = {.lex_state = 16, .external_lex_state = 17}, + [1132] = {.lex_state = 125, .external_lex_state = 16}, + [1133] = {.lex_state = 125, .external_lex_state = 14}, + [1134] = {.lex_state = 125, .external_lex_state = 10}, + [1135] = {.lex_state = 125, .external_lex_state = 10}, + [1136] = {.lex_state = 125, .external_lex_state = 18}, + [1137] = {.lex_state = 125, .external_lex_state = 14}, + [1138] = {.lex_state = 16, .external_lex_state = 17}, + [1139] = {.lex_state = 125, .external_lex_state = 14}, + [1140] = {.lex_state = 31, .external_lex_state = 14}, + [1141] = {.lex_state = 124, .external_lex_state = 13}, + [1142] = {.lex_state = 125, .external_lex_state = 18}, + [1143] = {.lex_state = 125, .external_lex_state = 16}, + [1144] = {.lex_state = 125, .external_lex_state = 16}, + [1145] = {.lex_state = 125, .external_lex_state = 16}, + [1146] = {.lex_state = 125, .external_lex_state = 14}, + [1147] = {.lex_state = 125, .external_lex_state = 14}, + [1148] = {.lex_state = 125, .external_lex_state = 14}, + [1149] = {.lex_state = 16, .external_lex_state = 17}, + [1150] = {.lex_state = 125, .external_lex_state = 10}, + [1151] = {.lex_state = 125, .external_lex_state = 16}, + [1152] = {.lex_state = 125, .external_lex_state = 14}, + [1153] = {.lex_state = 31, .external_lex_state = 14}, + [1154] = {.lex_state = 125, .external_lex_state = 16}, + [1155] = {.lex_state = 31, .external_lex_state = 14}, + [1156] = {.lex_state = 125, .external_lex_state = 10}, + [1157] = {.lex_state = 16, .external_lex_state = 17}, + [1158] = {.lex_state = 125, .external_lex_state = 18}, + [1159] = {.lex_state = 125, .external_lex_state = 18}, + [1160] = {.lex_state = 124, .external_lex_state = 13}, + [1161] = {.lex_state = 16, .external_lex_state = 17}, + [1162] = {.lex_state = 125, .external_lex_state = 14}, + [1163] = {.lex_state = 124, .external_lex_state = 13}, + [1164] = {.lex_state = 125, .external_lex_state = 14}, + [1165] = {.lex_state = 125, .external_lex_state = 16}, + [1166] = {.lex_state = 125, .external_lex_state = 16}, + [1167] = {.lex_state = 125, .external_lex_state = 14}, + [1168] = {.lex_state = 9, .external_lex_state = 15}, + [1169] = {.lex_state = 31, .external_lex_state = 14}, + [1170] = {.lex_state = 31, .external_lex_state = 14}, + [1171] = {.lex_state = 125, .external_lex_state = 14}, + [1172] = {.lex_state = 125, .external_lex_state = 14}, + [1173] = {.lex_state = 31, .external_lex_state = 14}, + [1174] = {.lex_state = 125, .external_lex_state = 14}, + [1175] = {.lex_state = 125, .external_lex_state = 14}, + [1176] = {.lex_state = 125, .external_lex_state = 14}, + [1177] = {.lex_state = 31, .external_lex_state = 14}, + [1178] = {.lex_state = 125, .external_lex_state = 14}, + [1179] = {.lex_state = 125, .external_lex_state = 14}, + [1180] = {.lex_state = 31, .external_lex_state = 14}, + [1181] = {.lex_state = 31, .external_lex_state = 14}, + [1182] = {.lex_state = 31, .external_lex_state = 14}, + [1183] = {.lex_state = 31, .external_lex_state = 14}, + [1184] = {.lex_state = 31, .external_lex_state = 14}, + [1185] = {.lex_state = 31, .external_lex_state = 14}, + [1186] = {.lex_state = 31, .external_lex_state = 14}, + [1187] = {.lex_state = 9, .external_lex_state = 15}, + [1188] = {.lex_state = 9, .external_lex_state = 15}, + [1189] = {.lex_state = 124, .external_lex_state = 13}, + [1190] = {.lex_state = 125, .external_lex_state = 14}, + [1191] = {.lex_state = 9, .external_lex_state = 15}, + [1192] = {.lex_state = 125, .external_lex_state = 14}, + [1193] = {.lex_state = 125, .external_lex_state = 14}, + [1194] = {.lex_state = 31, .external_lex_state = 14}, + [1195] = {.lex_state = 31, .external_lex_state = 14}, + [1196] = {.lex_state = 31, .external_lex_state = 14}, + [1197] = {.lex_state = 31, .external_lex_state = 14}, + [1198] = {.lex_state = 125, .external_lex_state = 2}, + [1199] = {.lex_state = 9, .external_lex_state = 15}, + [1200] = {.lex_state = 125, .external_lex_state = 14}, + [1201] = {.lex_state = 9, .external_lex_state = 15}, + [1202] = {.lex_state = 125, .external_lex_state = 14}, + [1203] = {.lex_state = 125, .external_lex_state = 13}, + [1204] = {.lex_state = 31, .external_lex_state = 14}, + [1205] = {.lex_state = 9, .external_lex_state = 15}, + [1206] = {.lex_state = 125, .external_lex_state = 14}, + [1207] = {.lex_state = 125, .external_lex_state = 14}, + [1208] = {.lex_state = 9, .external_lex_state = 15}, + [1209] = {.lex_state = 125, .external_lex_state = 14}, + [1210] = {.lex_state = 125, .external_lex_state = 16}, + [1211] = {.lex_state = 125, .external_lex_state = 14}, + [1212] = {.lex_state = 9, .external_lex_state = 15}, + [1213] = {.lex_state = 31, .external_lex_state = 14}, + [1214] = {.lex_state = 31, .external_lex_state = 14}, + [1215] = {.lex_state = 125, .external_lex_state = 13}, [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}, + [1217] = {.lex_state = 125, .external_lex_state = 14}, + [1218] = {.lex_state = 31, .external_lex_state = 14}, + [1219] = {.lex_state = 9, .external_lex_state = 15}, + [1220] = {.lex_state = 31, .external_lex_state = 14}, + [1221] = {.lex_state = 9, .external_lex_state = 15}, + [1222] = {.lex_state = 9, .external_lex_state = 15}, + [1223] = {.lex_state = 9, .external_lex_state = 15}, + [1224] = {.lex_state = 125, .external_lex_state = 16}, + [1225] = {.lex_state = 125, .external_lex_state = 14}, + [1226] = {.lex_state = 9, .external_lex_state = 15}, + [1227] = {.lex_state = 31, .external_lex_state = 14}, + [1228] = {.lex_state = 9, .external_lex_state = 15}, + [1229] = {.lex_state = 31, .external_lex_state = 14}, + [1230] = {.lex_state = 31, .external_lex_state = 14}, + [1231] = {.lex_state = 31, .external_lex_state = 14}, + [1232] = {.lex_state = 9, .external_lex_state = 15}, + [1233] = {.lex_state = 125, .external_lex_state = 14}, + [1234] = {.lex_state = 125, .external_lex_state = 14}, + [1235] = {.lex_state = 125, .external_lex_state = 14}, + [1236] = {.lex_state = 9, .external_lex_state = 15}, + [1237] = {.lex_state = 12, .external_lex_state = 19}, + [1238] = {.lex_state = 125, .external_lex_state = 16}, + [1239] = {.lex_state = 125, .external_lex_state = 14}, + [1240] = {.lex_state = 125, .external_lex_state = 16}, + [1241] = {.lex_state = 125, .external_lex_state = 14}, + [1242] = {.lex_state = 10, .external_lex_state = 14}, + [1243] = {.lex_state = 18, .external_lex_state = 14}, + [1244] = {.lex_state = 12, .external_lex_state = 19}, + [1245] = {.lex_state = 20, .external_lex_state = 19}, + [1246] = {.lex_state = 125, .external_lex_state = 14}, + [1247] = {.lex_state = 125, .external_lex_state = 14}, + [1248] = {.lex_state = 12, .external_lex_state = 19}, + [1249] = {.lex_state = 125, .external_lex_state = 14}, + [1250] = {.lex_state = 20, .external_lex_state = 19}, + [1251] = {.lex_state = 125, .external_lex_state = 14}, + [1252] = {.lex_state = 20, .external_lex_state = 19}, + [1253] = {.lex_state = 125, .external_lex_state = 18}, + [1254] = {.lex_state = 125, .external_lex_state = 14}, + [1255] = {.lex_state = 125, .external_lex_state = 16}, + [1256] = {.lex_state = 125, .external_lex_state = 16}, + [1257] = {.lex_state = 125, .external_lex_state = 14}, + [1258] = {.lex_state = 125, .external_lex_state = 13}, + [1259] = {.lex_state = 125, .external_lex_state = 16}, + [1260] = {.lex_state = 125, .external_lex_state = 16}, + [1261] = {.lex_state = 12, .external_lex_state = 19}, + [1262] = {.lex_state = 20, .external_lex_state = 19}, + [1263] = {.lex_state = 125, .external_lex_state = 14}, + [1264] = {.lex_state = 125, .external_lex_state = 14}, + [1265] = {.lex_state = 125, .external_lex_state = 16}, + [1266] = {.lex_state = 125, .external_lex_state = 14}, + [1267] = {.lex_state = 125, .external_lex_state = 14}, + [1268] = {.lex_state = 125, .external_lex_state = 13}, + [1269] = {.lex_state = 125, .external_lex_state = 14}, + [1270] = {.lex_state = 125, .external_lex_state = 16}, + [1271] = {.lex_state = 12, .external_lex_state = 19}, + [1272] = {.lex_state = 125, .external_lex_state = 14}, + [1273] = {.lex_state = 20, .external_lex_state = 19}, + [1274] = {.lex_state = 125, .external_lex_state = 14}, + [1275] = {.lex_state = 125, .external_lex_state = 13}, + [1276] = {.lex_state = 125, .external_lex_state = 14}, + [1277] = {.lex_state = 125, .external_lex_state = 14}, + [1278] = {.lex_state = 125, .external_lex_state = 13}, + [1279] = {.lex_state = 125, .external_lex_state = 14}, + [1280] = {.lex_state = 125, .external_lex_state = 18}, + [1281] = {.lex_state = 16, .external_lex_state = 17}, + [1282] = {.lex_state = 125, .external_lex_state = 16}, + [1283] = {.lex_state = 12, .external_lex_state = 19}, + [1284] = {.lex_state = 20, .external_lex_state = 19}, + [1285] = {.lex_state = 125, .external_lex_state = 14}, + [1286] = {.lex_state = 125, .external_lex_state = 18}, + [1287] = {.lex_state = 125, .external_lex_state = 16}, + [1288] = {.lex_state = 125, .external_lex_state = 16}, + [1289] = {.lex_state = 125, .external_lex_state = 13}, + [1290] = {.lex_state = 125, .external_lex_state = 16}, + [1291] = {.lex_state = 125, .external_lex_state = 13}, + [1292] = {.lex_state = 125, .external_lex_state = 14}, + [1293] = {.lex_state = 125, .external_lex_state = 16}, + [1294] = {.lex_state = 125, .external_lex_state = 16}, + [1295] = {.lex_state = 125, .external_lex_state = 16}, + [1296] = {.lex_state = 125, .external_lex_state = 16}, + [1297] = {.lex_state = 12, .external_lex_state = 19}, + [1298] = {.lex_state = 125, .external_lex_state = 16}, + [1299] = {.lex_state = 125, .external_lex_state = 14}, + [1300] = {.lex_state = 125, .external_lex_state = 14}, + [1301] = {.lex_state = 12, .external_lex_state = 19}, + [1302] = {.lex_state = 10, .external_lex_state = 14}, + [1303] = {.lex_state = 18, .external_lex_state = 14}, + [1304] = {.lex_state = 125, .external_lex_state = 13}, + [1305] = {.lex_state = 20, .external_lex_state = 19}, + [1306] = {.lex_state = 18, .external_lex_state = 14}, + [1307] = {.lex_state = 125, .external_lex_state = 14}, + [1308] = {.lex_state = 125, .external_lex_state = 13}, + [1309] = {.lex_state = 124, .external_lex_state = 13}, + [1310] = {.lex_state = 12, .external_lex_state = 19}, + [1311] = {.lex_state = 125, .external_lex_state = 14}, + [1312] = {.lex_state = 20, .external_lex_state = 19}, + [1313] = {.lex_state = 20, .external_lex_state = 19}, + [1314] = {.lex_state = 125, .external_lex_state = 16}, + [1315] = {.lex_state = 125, .external_lex_state = 14}, + [1316] = {.lex_state = 124, .external_lex_state = 13}, + [1317] = {.lex_state = 12, .external_lex_state = 19}, + [1318] = {.lex_state = 125, .external_lex_state = 16}, + [1319] = {.lex_state = 12, .external_lex_state = 19}, + [1320] = {.lex_state = 20, .external_lex_state = 19}, + [1321] = {.lex_state = 12, .external_lex_state = 19}, + [1322] = {.lex_state = 12, .external_lex_state = 19}, + [1323] = {.lex_state = 20, .external_lex_state = 19}, + [1324] = {.lex_state = 20, .external_lex_state = 19}, + [1325] = {.lex_state = 125, .external_lex_state = 14}, + [1326] = {.lex_state = 125, .external_lex_state = 18}, + [1327] = {.lex_state = 20, .external_lex_state = 19}, + [1328] = {.lex_state = 125, .external_lex_state = 14}, + [1329] = {.lex_state = 125, .external_lex_state = 14}, + [1330] = {.lex_state = 125, .external_lex_state = 13}, + [1331] = {.lex_state = 125, .external_lex_state = 14}, + [1332] = {.lex_state = 125, .external_lex_state = 14}, + [1333] = {.lex_state = 125, .external_lex_state = 14}, + [1334] = {.lex_state = 10, .external_lex_state = 14}, + [1335] = {.lex_state = 125, .external_lex_state = 16}, + [1336] = {.lex_state = 125, .external_lex_state = 14}, + [1337] = {.lex_state = 125, .external_lex_state = 14}, + [1338] = {.lex_state = 125, .external_lex_state = 14}, + [1339] = {.lex_state = 125, .external_lex_state = 14}, + [1340] = {.lex_state = 125, .external_lex_state = 14}, + [1341] = {.lex_state = 125, .external_lex_state = 14}, + [1342] = {.lex_state = 125, .external_lex_state = 14}, + [1343] = {.lex_state = 125, .external_lex_state = 13}, + [1344] = {.lex_state = 125, .external_lex_state = 10}, + [1345] = {.lex_state = 125, .external_lex_state = 14}, + [1346] = {.lex_state = 125, .external_lex_state = 14}, + [1347] = {.lex_state = 125, .external_lex_state = 14}, + [1348] = {.lex_state = 125, .external_lex_state = 14}, + [1349] = {.lex_state = 125, .external_lex_state = 14}, + [1350] = {.lex_state = 125, .external_lex_state = 14}, + [1351] = {.lex_state = 125, .external_lex_state = 14}, + [1352] = {.lex_state = 125, .external_lex_state = 14}, + [1353] = {.lex_state = 125, .external_lex_state = 14}, + [1354] = {.lex_state = 125, .external_lex_state = 13}, + [1355] = {.lex_state = 125, .external_lex_state = 14}, + [1356] = {.lex_state = 125, .external_lex_state = 14}, + [1357] = {.lex_state = 125, .external_lex_state = 16}, + [1358] = {.lex_state = 125, .external_lex_state = 16}, + [1359] = {.lex_state = 125, .external_lex_state = 16}, + [1360] = {.lex_state = 125, .external_lex_state = 14}, + [1361] = {.lex_state = 125, .external_lex_state = 14}, + [1362] = {.lex_state = 5, .external_lex_state = 14}, + [1363] = {.lex_state = 125, .external_lex_state = 14}, + [1364] = {.lex_state = 125, .external_lex_state = 14}, + [1365] = {.lex_state = 125, .external_lex_state = 14}, + [1366] = {.lex_state = 125, .external_lex_state = 14}, + [1367] = {.lex_state = 125, .external_lex_state = 20}, + [1368] = {.lex_state = 125, .external_lex_state = 20}, + [1369] = {.lex_state = 125, .external_lex_state = 13}, + [1370] = {.lex_state = 125, .external_lex_state = 14}, + [1371] = {.lex_state = 125, .external_lex_state = 14}, + [1372] = {.lex_state = 125, .external_lex_state = 14}, + [1373] = {.lex_state = 125, .external_lex_state = 14}, + [1374] = {.lex_state = 125, .external_lex_state = 16}, + [1375] = {.lex_state = 125, .external_lex_state = 16}, + [1376] = {.lex_state = 125, .external_lex_state = 14}, + [1377] = {.lex_state = 125, .external_lex_state = 16}, + [1378] = {.lex_state = 125, .external_lex_state = 14}, + [1379] = {.lex_state = 125, .external_lex_state = 16}, + [1380] = {.lex_state = 125, .external_lex_state = 14}, + [1381] = {.lex_state = 125, .external_lex_state = 14}, + [1382] = {.lex_state = 125, .external_lex_state = 14}, + [1383] = {.lex_state = 125, .external_lex_state = 14}, + [1384] = {.lex_state = 125, .external_lex_state = 14}, + [1385] = {.lex_state = 125, .external_lex_state = 16}, + [1386] = {.lex_state = 125, .external_lex_state = 13}, + [1387] = {.lex_state = 125, .external_lex_state = 14}, + [1388] = {.lex_state = 125, .external_lex_state = 14}, + [1389] = {.lex_state = 125, .external_lex_state = 14}, + [1390] = {.lex_state = 125, .external_lex_state = 14}, + [1391] = {.lex_state = 125, .external_lex_state = 14}, + [1392] = {.lex_state = 125, .external_lex_state = 14}, + [1393] = {.lex_state = 5, .external_lex_state = 14}, + [1394] = {.lex_state = 125, .external_lex_state = 14}, + [1395] = {.lex_state = 125, .external_lex_state = 14}, + [1396] = {.lex_state = 125, .external_lex_state = 16}, + [1397] = {.lex_state = 125, .external_lex_state = 14}, + [1398] = {.lex_state = 125, .external_lex_state = 13}, + [1399] = {.lex_state = 125, .external_lex_state = 14}, + [1400] = {.lex_state = 125, .external_lex_state = 14}, + [1401] = {.lex_state = 125, .external_lex_state = 14}, + [1402] = {.lex_state = 5, .external_lex_state = 14}, + [1403] = {.lex_state = 125, .external_lex_state = 14}, + [1404] = {.lex_state = 125, .external_lex_state = 16}, + [1405] = {.lex_state = 125, .external_lex_state = 14}, + [1406] = {.lex_state = 125, .external_lex_state = 14}, + [1407] = {.lex_state = 125, .external_lex_state = 14}, + [1408] = {.lex_state = 125, .external_lex_state = 16}, + [1409] = {.lex_state = 125, .external_lex_state = 14}, + [1410] = {.lex_state = 125, .external_lex_state = 14}, + [1411] = {.lex_state = 125, .external_lex_state = 14}, + [1412] = {.lex_state = 125, .external_lex_state = 14}, + [1413] = {.lex_state = 125, .external_lex_state = 14}, + [1414] = {.lex_state = 125, .external_lex_state = 10}, + [1415] = {.lex_state = 125, .external_lex_state = 14}, + [1416] = {.lex_state = 125, .external_lex_state = 16}, + [1417] = {.lex_state = 125, .external_lex_state = 14}, + [1418] = {.lex_state = 125, .external_lex_state = 13}, + [1419] = {.lex_state = 125, .external_lex_state = 14}, + [1420] = {.lex_state = 125, .external_lex_state = 14}, + [1421] = {.lex_state = 125, .external_lex_state = 16}, + [1422] = {.lex_state = 125, .external_lex_state = 14}, + [1423] = {.lex_state = 125, .external_lex_state = 16}, + [1424] = {.lex_state = 125, .external_lex_state = 16}, + [1425] = {.lex_state = 5, .external_lex_state = 14}, + [1426] = {.lex_state = 125, .external_lex_state = 16}, + [1427] = {.lex_state = 125, .external_lex_state = 14}, + [1428] = {.lex_state = 125, .external_lex_state = 14}, + [1429] = {.lex_state = 125, .external_lex_state = 16}, + [1430] = {.lex_state = 125, .external_lex_state = 13}, + [1431] = {.lex_state = 125, .external_lex_state = 14}, + [1432] = {.lex_state = 125, .external_lex_state = 16}, + [1433] = {.lex_state = 125, .external_lex_state = 13}, + [1434] = {.lex_state = 125, .external_lex_state = 13}, + [1435] = {.lex_state = 125, .external_lex_state = 16}, + [1436] = {.lex_state = 125, .external_lex_state = 14}, + [1437] = {.lex_state = 125, .external_lex_state = 14}, + [1438] = {.lex_state = 125, .external_lex_state = 13}, + [1439] = {.lex_state = 125, .external_lex_state = 13}, + [1440] = {.lex_state = 125, .external_lex_state = 14}, + [1441] = {.lex_state = 125, .external_lex_state = 16}, + [1442] = {.lex_state = 125, .external_lex_state = 14}, + [1443] = {.lex_state = 125, .external_lex_state = 13}, + [1444] = {.lex_state = 125, .external_lex_state = 16}, + [1445] = {.lex_state = 125, .external_lex_state = 14}, + [1446] = {.lex_state = 125, .external_lex_state = 14}, + [1447] = {.lex_state = 125, .external_lex_state = 16}, + [1448] = {.lex_state = 125, .external_lex_state = 16}, + [1449] = {.lex_state = 125, .external_lex_state = 16}, + [1450] = {.lex_state = 125, .external_lex_state = 13}, + [1451] = {.lex_state = 125, .external_lex_state = 13}, + [1452] = {.lex_state = 125, .external_lex_state = 14}, + [1453] = {.lex_state = 125, .external_lex_state = 16}, + [1454] = {.lex_state = 125, .external_lex_state = 14}, + [1455] = {.lex_state = 125, .external_lex_state = 16}, + [1456] = {.lex_state = 125, .external_lex_state = 16}, + [1457] = {.lex_state = 125, .external_lex_state = 14}, + [1458] = {.lex_state = 125, .external_lex_state = 14}, + [1459] = {.lex_state = 125, .external_lex_state = 14}, + [1460] = {.lex_state = 125, .external_lex_state = 14}, + [1461] = {.lex_state = 125, .external_lex_state = 14}, + [1462] = {.lex_state = 125, .external_lex_state = 14}, + [1463] = {.lex_state = 125, .external_lex_state = 14}, + [1464] = {.lex_state = 125, .external_lex_state = 13}, + [1465] = {.lex_state = 125, .external_lex_state = 14}, + [1466] = {.lex_state = 125, .external_lex_state = 16}, + [1467] = {.lex_state = 125, .external_lex_state = 14}, + [1468] = {.lex_state = 125, .external_lex_state = 14}, + [1469] = {.lex_state = 125, .external_lex_state = 14}, + [1470] = {.lex_state = 125, .external_lex_state = 14}, + [1471] = {.lex_state = 125, .external_lex_state = 14}, + [1472] = {.lex_state = 125, .external_lex_state = 14}, + [1473] = {.lex_state = 125, .external_lex_state = 14}, + [1474] = {.lex_state = 125, .external_lex_state = 14}, + [1475] = {.lex_state = 125, .external_lex_state = 14}, + [1476] = {.lex_state = 125, .external_lex_state = 14}, + [1477] = {.lex_state = 125, .external_lex_state = 14}, + [1478] = {.lex_state = 125, .external_lex_state = 14}, + [1479] = {.lex_state = 125, .external_lex_state = 14}, + [1480] = {.lex_state = 125, .external_lex_state = 14}, + [1481] = {.lex_state = 125, .external_lex_state = 14}, + [1482] = {.lex_state = 125, .external_lex_state = 14}, + [1483] = {.lex_state = 125, .external_lex_state = 14}, + [1484] = {.lex_state = 125, .external_lex_state = 14}, + [1485] = {.lex_state = 125, .external_lex_state = 14}, + [1486] = {.lex_state = 125, .external_lex_state = 13}, + [1487] = {.lex_state = 125, .external_lex_state = 14}, + [1488] = {.lex_state = 125, .external_lex_state = 14}, + [1489] = {.lex_state = 125, .external_lex_state = 14}, + [1490] = {.lex_state = 125, .external_lex_state = 14}, + [1491] = {.lex_state = 125, .external_lex_state = 14}, + [1492] = {.lex_state = 125, .external_lex_state = 14}, + [1493] = {.lex_state = 125, .external_lex_state = 14}, + [1494] = {.lex_state = 125, .external_lex_state = 14}, + [1495] = {.lex_state = 125, .external_lex_state = 14}, + [1496] = {.lex_state = 125, .external_lex_state = 14}, + [1497] = {.lex_state = 125, .external_lex_state = 14}, + [1498] = {.lex_state = 125, .external_lex_state = 14}, + [1499] = {.lex_state = 125, .external_lex_state = 14}, + [1500] = {.lex_state = 125, .external_lex_state = 14}, + [1501] = {.lex_state = 125, .external_lex_state = 14}, + [1502] = {.lex_state = 125, .external_lex_state = 14}, + [1503] = {.lex_state = 125, .external_lex_state = 14}, + [1504] = {.lex_state = 125, .external_lex_state = 14}, + [1505] = {.lex_state = 125, .external_lex_state = 14}, + [1506] = {.lex_state = 125, .external_lex_state = 14}, + [1507] = {.lex_state = 125, .external_lex_state = 14}, + [1508] = {.lex_state = 125, .external_lex_state = 14}, + [1509] = {.lex_state = 125, .external_lex_state = 14}, + [1510] = {.lex_state = 125, .external_lex_state = 14}, + [1511] = {.lex_state = 125, .external_lex_state = 14}, + [1512] = {.lex_state = 125, .external_lex_state = 14}, + [1513] = {.lex_state = 125, .external_lex_state = 14}, + [1514] = {.lex_state = 125, .external_lex_state = 14}, + [1515] = {.lex_state = 125, .external_lex_state = 13}, + [1516] = {.lex_state = 125, .external_lex_state = 14}, + [1517] = {.lex_state = 125, .external_lex_state = 14}, + [1518] = {.lex_state = 125, .external_lex_state = 14}, + [1519] = {.lex_state = 125, .external_lex_state = 13}, + [1520] = {.lex_state = 125, .external_lex_state = 14}, + [1521] = {.lex_state = 125, .external_lex_state = 14}, + [1522] = {.lex_state = 125, .external_lex_state = 14}, + [1523] = {.lex_state = 125, .external_lex_state = 14}, + [1524] = {.lex_state = 125, .external_lex_state = 14}, + [1525] = {.lex_state = 125, .external_lex_state = 14}, + [1526] = {.lex_state = 125, .external_lex_state = 21}, + [1527] = {.lex_state = 125, .external_lex_state = 21}, + [1528] = {.lex_state = 125, .external_lex_state = 21}, + [1529] = {.lex_state = 125, .external_lex_state = 14}, + [1530] = {.lex_state = 125, .external_lex_state = 13}, + [1531] = {.lex_state = 125, .external_lex_state = 14}, + [1532] = {.lex_state = 125, .external_lex_state = 13}, + [1533] = {.lex_state = 125, .external_lex_state = 14}, + [1534] = {.lex_state = 125, .external_lex_state = 21}, + [1535] = {.lex_state = 125, .external_lex_state = 14}, + [1536] = {.lex_state = 125, .external_lex_state = 13}, + [1537] = {.lex_state = 125, .external_lex_state = 14}, + [1538] = {.lex_state = 125, .external_lex_state = 14}, + [1539] = {.lex_state = 125, .external_lex_state = 14}, + [1540] = {.lex_state = 125, .external_lex_state = 14}, + [1541] = {.lex_state = 125, .external_lex_state = 13}, + [1542] = {.lex_state = 125, .external_lex_state = 14}, + [1543] = {.lex_state = 125, .external_lex_state = 14}, + [1544] = {.lex_state = 125, .external_lex_state = 14}, + [1545] = {.lex_state = 125, .external_lex_state = 14}, + [1546] = {.lex_state = 125, .external_lex_state = 13}, + [1547] = {.lex_state = 125, .external_lex_state = 14}, + [1548] = {.lex_state = 125, .external_lex_state = 14}, + [1549] = {.lex_state = 125, .external_lex_state = 13}, + [1550] = {.lex_state = 125, .external_lex_state = 13}, + [1551] = {.lex_state = 125, .external_lex_state = 13}, + [1552] = {.lex_state = 125, .external_lex_state = 14}, + [1553] = {.lex_state = 125, .external_lex_state = 13}, + [1554] = {.lex_state = 125, .external_lex_state = 14}, + [1555] = {.lex_state = 125, .external_lex_state = 14}, + [1556] = {.lex_state = 125, .external_lex_state = 13}, + [1557] = {.lex_state = 125, .external_lex_state = 13}, + [1558] = {.lex_state = 125, .external_lex_state = 13}, + [1559] = {.lex_state = 125, .external_lex_state = 14}, + [1560] = {.lex_state = 125, .external_lex_state = 13}, + [1561] = {.lex_state = 125, .external_lex_state = 13}, + [1562] = {.lex_state = 125, .external_lex_state = 14}, + [1563] = {.lex_state = 125, .external_lex_state = 14}, + [1564] = {.lex_state = 125, .external_lex_state = 14}, + [1565] = {.lex_state = 125, .external_lex_state = 13}, + [1566] = {.lex_state = 125, .external_lex_state = 13}, + [1567] = {.lex_state = 125, .external_lex_state = 14}, + [1568] = {.lex_state = 125, .external_lex_state = 14}, + [1569] = {.lex_state = 125, .external_lex_state = 21}, + [1570] = {.lex_state = 125, .external_lex_state = 13}, + [1571] = {.lex_state = 125, .external_lex_state = 13}, + [1572] = {.lex_state = 125, .external_lex_state = 14}, + [1573] = {.lex_state = 125, .external_lex_state = 14}, + [1574] = {.lex_state = 125, .external_lex_state = 14}, + [1575] = {.lex_state = 125, .external_lex_state = 14}, + [1576] = {.lex_state = 125, .external_lex_state = 14}, + [1577] = {.lex_state = 125, .external_lex_state = 14}, + [1578] = {.lex_state = 125, .external_lex_state = 14}, + [1579] = {.lex_state = 125, .external_lex_state = 14}, + [1580] = {.lex_state = 125, .external_lex_state = 14}, + [1581] = {.lex_state = 125, .external_lex_state = 14}, + [1582] = {.lex_state = 125, .external_lex_state = 14}, + [1583] = {.lex_state = 125, .external_lex_state = 13}, + [1584] = {.lex_state = 125, .external_lex_state = 14}, + [1585] = {.lex_state = 125, .external_lex_state = 14}, + [1586] = {.lex_state = 125, .external_lex_state = 21}, + [1587] = {.lex_state = 125, .external_lex_state = 21}, + [1588] = {.lex_state = 125, .external_lex_state = 21}, + [1589] = {.lex_state = 125, .external_lex_state = 13}, + [1590] = {.lex_state = 125, .external_lex_state = 14}, + [1591] = {.lex_state = 125, .external_lex_state = 14}, + [1592] = {.lex_state = 125, .external_lex_state = 14}, + [1593] = {.lex_state = 125, .external_lex_state = 14}, + [1594] = {.lex_state = 125, .external_lex_state = 14}, + [1595] = {.lex_state = 125, .external_lex_state = 14}, + [1596] = {.lex_state = 125, .external_lex_state = 14}, + [1597] = {.lex_state = 125, .external_lex_state = 21}, + [1598] = {.lex_state = 125, .external_lex_state = 14}, + [1599] = {.lex_state = 125, .external_lex_state = 14}, + [1600] = {.lex_state = 125, .external_lex_state = 14}, + [1601] = {.lex_state = 125, .external_lex_state = 13}, + [1602] = {.lex_state = 125, .external_lex_state = 14}, + [1603] = {.lex_state = 125, .external_lex_state = 14}, + [1604] = {.lex_state = 125, .external_lex_state = 21}, + [1605] = {.lex_state = 125, .external_lex_state = 14}, + [1606] = {.lex_state = 125, .external_lex_state = 16}, + [1607] = {.lex_state = 5, .external_lex_state = 14}, + [1608] = {.lex_state = 125, .external_lex_state = 13}, + [1609] = {.lex_state = 125, .external_lex_state = 14}, + [1610] = {.lex_state = 125, .external_lex_state = 14}, + [1611] = {.lex_state = 125, .external_lex_state = 14}, + [1612] = {.lex_state = 125, .external_lex_state = 14}, + [1613] = {.lex_state = 125, .external_lex_state = 13}, + [1614] = {.lex_state = 125, .external_lex_state = 16}, + [1615] = {.lex_state = 125, .external_lex_state = 14}, + [1616] = {.lex_state = 125, .external_lex_state = 14}, + [1617] = {.lex_state = 125, .external_lex_state = 14}, + [1618] = {.lex_state = 125, .external_lex_state = 14}, + [1619] = {.lex_state = 125, .external_lex_state = 14}, + [1620] = {.lex_state = 125, .external_lex_state = 14}, + [1621] = {.lex_state = 125, .external_lex_state = 14}, + [1622] = {.lex_state = 125, .external_lex_state = 14}, + [1623] = {.lex_state = 125, .external_lex_state = 14}, + [1624] = {.lex_state = 125, .external_lex_state = 14}, + [1625] = {.lex_state = 125, .external_lex_state = 13}, + [1626] = {.lex_state = 125, .external_lex_state = 13}, + [1627] = {.lex_state = 125, .external_lex_state = 13}, + [1628] = {.lex_state = 125, .external_lex_state = 14}, + [1629] = {.lex_state = 125, .external_lex_state = 16}, + [1630] = {.lex_state = 125, .external_lex_state = 16}, + [1631] = {.lex_state = 125, .external_lex_state = 14}, + [1632] = {.lex_state = 125, .external_lex_state = 16}, + [1633] = {.lex_state = 125, .external_lex_state = 14}, + [1634] = {.lex_state = 125, .external_lex_state = 13}, + [1635] = {.lex_state = 125, .external_lex_state = 14}, + [1636] = {.lex_state = 5, .external_lex_state = 14}, + [1637] = {.lex_state = 125, .external_lex_state = 14}, + [1638] = {.lex_state = 125, .external_lex_state = 13}, + [1639] = {.lex_state = 125, .external_lex_state = 14}, + [1640] = {.lex_state = 125, .external_lex_state = 14}, + [1641] = {.lex_state = 125, .external_lex_state = 16}, + [1642] = {.lex_state = 125, .external_lex_state = 16}, + [1643] = {.lex_state = 125, .external_lex_state = 16}, + [1644] = {.lex_state = 125, .external_lex_state = 16}, + [1645] = {.lex_state = 125, .external_lex_state = 14}, + [1646] = {.lex_state = 125, .external_lex_state = 13}, + [1647] = {.lex_state = 125, .external_lex_state = 16}, + [1648] = {.lex_state = 125, .external_lex_state = 16}, + [1649] = {.lex_state = 125, .external_lex_state = 14}, + [1650] = {.lex_state = 125, .external_lex_state = 16}, + [1651] = {.lex_state = 125, .external_lex_state = 14}, + [1652] = {.lex_state = 31, .external_lex_state = 14}, + [1653] = {.lex_state = 125, .external_lex_state = 14}, + [1654] = {.lex_state = 125, .external_lex_state = 14}, + [1655] = {.lex_state = 125, .external_lex_state = 13}, + [1656] = {.lex_state = 125, .external_lex_state = 14}, + [1657] = {.lex_state = 125, .external_lex_state = 14}, + [1658] = {.lex_state = 125, .external_lex_state = 14}, + [1659] = {.lex_state = 125, .external_lex_state = 14}, + [1660] = {.lex_state = 125, .external_lex_state = 14}, + [1661] = {.lex_state = 125, .external_lex_state = 14}, + [1662] = {.lex_state = 125, .external_lex_state = 13}, + [1663] = {.lex_state = 125, .external_lex_state = 14}, + [1664] = {.lex_state = 125, .external_lex_state = 14}, + [1665] = {.lex_state = 125, .external_lex_state = 13}, + [1666] = {.lex_state = 125, .external_lex_state = 14}, + [1667] = {.lex_state = 125, .external_lex_state = 13}, + [1668] = {.lex_state = 125, .external_lex_state = 14}, + [1669] = {.lex_state = 125, .external_lex_state = 14}, + [1670] = {.lex_state = 125, .external_lex_state = 21}, + [1671] = {.lex_state = 125, .external_lex_state = 13}, + [1672] = {.lex_state = 125, .external_lex_state = 14}, + [1673] = {.lex_state = 125, .external_lex_state = 14}, + [1674] = {.lex_state = 125, .external_lex_state = 14}, + [1675] = {.lex_state = 125, .external_lex_state = 14}, + [1676] = {.lex_state = 125, .external_lex_state = 16}, + [1677] = {.lex_state = 125, .external_lex_state = 14}, + [1678] = {.lex_state = 125, .external_lex_state = 16}, + [1679] = {.lex_state = 125, .external_lex_state = 14}, + [1680] = {.lex_state = 125, .external_lex_state = 14}, + [1681] = {.lex_state = 125, .external_lex_state = 14}, + [1682] = {.lex_state = 125, .external_lex_state = 16}, + [1683] = {.lex_state = 125, .external_lex_state = 16}, + [1684] = {.lex_state = 125, .external_lex_state = 16}, + [1685] = {.lex_state = 125, .external_lex_state = 14}, + [1686] = {.lex_state = 125, .external_lex_state = 14}, + [1687] = {.lex_state = 125, .external_lex_state = 16}, + [1688] = {.lex_state = 125, .external_lex_state = 14}, + [1689] = {.lex_state = 125, .external_lex_state = 13}, + [1690] = {.lex_state = 125, .external_lex_state = 14}, + [1691] = {.lex_state = 125, .external_lex_state = 13}, + [1692] = {.lex_state = 125, .external_lex_state = 16}, + [1693] = {.lex_state = 125, .external_lex_state = 13}, + [1694] = {.lex_state = 125, .external_lex_state = 14}, + [1695] = {.lex_state = 125, .external_lex_state = 21}, + [1696] = {.lex_state = 125, .external_lex_state = 14}, + [1697] = {.lex_state = 5, .external_lex_state = 14}, + [1698] = {.lex_state = 125, .external_lex_state = 16}, + [1699] = {.lex_state = 125, .external_lex_state = 16}, + [1700] = {.lex_state = 125, .external_lex_state = 14}, + [1701] = {.lex_state = 125, .external_lex_state = 13}, + [1702] = {.lex_state = 125, .external_lex_state = 14}, + [1703] = {.lex_state = 125, .external_lex_state = 14}, + [1704] = {.lex_state = 125, .external_lex_state = 13}, + [1705] = {.lex_state = 125, .external_lex_state = 14}, + [1706] = {.lex_state = 125, .external_lex_state = 13}, + [1707] = {.lex_state = 125, .external_lex_state = 14}, + [1708] = {.lex_state = 125, .external_lex_state = 14}, + [1709] = {.lex_state = 125, .external_lex_state = 14}, + [1710] = {.lex_state = 125, .external_lex_state = 14}, + [1711] = {.lex_state = 125, .external_lex_state = 14}, + [1712] = {.lex_state = 125, .external_lex_state = 14}, + [1713] = {.lex_state = 125, .external_lex_state = 14}, + [1714] = {.lex_state = 125, .external_lex_state = 14}, + [1715] = {.lex_state = 125, .external_lex_state = 13}, + [1716] = {.lex_state = 125, .external_lex_state = 13}, + [1717] = {.lex_state = 125, .external_lex_state = 13}, + [1718] = {.lex_state = 125, .external_lex_state = 14}, + [1719] = {.lex_state = 125, .external_lex_state = 14}, + [1720] = {.lex_state = 125, .external_lex_state = 14}, + [1721] = {.lex_state = 125, .external_lex_state = 14}, + [1722] = {.lex_state = 125, .external_lex_state = 14}, + [1723] = {.lex_state = 125, .external_lex_state = 13}, + [1724] = {.lex_state = 125, .external_lex_state = 13}, + [1725] = {.lex_state = 125, .external_lex_state = 13}, + [1726] = {.lex_state = 125, .external_lex_state = 13}, + [1727] = {.lex_state = 125, .external_lex_state = 13}, + [1728] = {.lex_state = 125, .external_lex_state = 13}, + [1729] = {.lex_state = 125, .external_lex_state = 13}, + [1730] = {.lex_state = 125, .external_lex_state = 13}, + [1731] = {.lex_state = 125, .external_lex_state = 13}, + [1732] = {.lex_state = 125, .external_lex_state = 13}, + [1733] = {.lex_state = 125, .external_lex_state = 13}, + [1734] = {.lex_state = 125, .external_lex_state = 14}, + [1735] = {.lex_state = 125, .external_lex_state = 13}, + [1736] = {.lex_state = 125, .external_lex_state = 13}, + [1737] = {.lex_state = 125, .external_lex_state = 14}, + [1738] = {.lex_state = 125, .external_lex_state = 13}, + [1739] = {.lex_state = 125, .external_lex_state = 14}, + [1740] = {.lex_state = 125, .external_lex_state = 14}, + [1741] = {.lex_state = 125, .external_lex_state = 14}, + [1742] = {.lex_state = 125, .external_lex_state = 13}, + [1743] = {.lex_state = 125, .external_lex_state = 13}, + [1744] = {.lex_state = 125, .external_lex_state = 13}, + [1745] = {.lex_state = 125, .external_lex_state = 13}, + [1746] = {.lex_state = 125, .external_lex_state = 13}, + [1747] = {.lex_state = 125, .external_lex_state = 13}, + [1748] = {.lex_state = 125, .external_lex_state = 13}, + [1749] = {.lex_state = 125, .external_lex_state = 13}, + [1750] = {.lex_state = 125, .external_lex_state = 13}, + [1751] = {.lex_state = 125, .external_lex_state = 13}, + [1752] = {.lex_state = 125, .external_lex_state = 13}, + [1753] = {.lex_state = 125, .external_lex_state = 13}, + [1754] = {.lex_state = 125, .external_lex_state = 13}, + [1755] = {.lex_state = 125, .external_lex_state = 14}, + [1756] = {.lex_state = 125, .external_lex_state = 13}, + [1757] = {.lex_state = 125, .external_lex_state = 14}, + [1758] = {.lex_state = 125, .external_lex_state = 13}, + [1759] = {.lex_state = 125, .external_lex_state = 13}, + [1760] = {.lex_state = 125, .external_lex_state = 13}, + [1761] = {.lex_state = 125, .external_lex_state = 13}, + [1762] = {.lex_state = 125, .external_lex_state = 13}, + [1763] = {.lex_state = 125, .external_lex_state = 13}, + [1764] = {.lex_state = 125, .external_lex_state = 21}, + [1765] = {.lex_state = 125, .external_lex_state = 16}, + [1766] = {.lex_state = 125, .external_lex_state = 16}, + [1767] = {.lex_state = 125, .external_lex_state = 14}, + [1768] = {.lex_state = 125, .external_lex_state = 14}, + [1769] = {.lex_state = 125, .external_lex_state = 16}, + [1770] = {.lex_state = 125, .external_lex_state = 13}, + [1771] = {.lex_state = 125, .external_lex_state = 16}, + [1772] = {.lex_state = 125, .external_lex_state = 21}, + [1773] = {.lex_state = 125, .external_lex_state = 14}, + [1774] = {.lex_state = 125, .external_lex_state = 13}, + [1775] = {.lex_state = 125, .external_lex_state = 16}, + [1776] = {.lex_state = 125, .external_lex_state = 14}, + [1777] = {.lex_state = 125, .external_lex_state = 14}, + [1778] = {.lex_state = 125, .external_lex_state = 14}, + [1779] = {.lex_state = 125, .external_lex_state = 14}, + [1780] = {.lex_state = 125, .external_lex_state = 21}, + [1781] = {.lex_state = 125, .external_lex_state = 14}, + [1782] = {.lex_state = 125, .external_lex_state = 13}, + [1783] = {.lex_state = 125, .external_lex_state = 14}, + [1784] = {.lex_state = 125, .external_lex_state = 14}, + [1785] = {.lex_state = 125, .external_lex_state = 21}, + [1786] = {.lex_state = 125, .external_lex_state = 21}, + [1787] = {.lex_state = 125, .external_lex_state = 21}, + [1788] = {.lex_state = 125, .external_lex_state = 14}, + [1789] = {.lex_state = 125, .external_lex_state = 14}, + [1790] = {.lex_state = 125, .external_lex_state = 13}, + [1791] = {.lex_state = 125, .external_lex_state = 14}, + [1792] = {.lex_state = 125, .external_lex_state = 16}, + [1793] = {.lex_state = 125, .external_lex_state = 16}, + [1794] = {.lex_state = 125, .external_lex_state = 14}, + [1795] = {.lex_state = 125, .external_lex_state = 14}, + [1796] = {.lex_state = 125, .external_lex_state = 14}, + [1797] = {.lex_state = 125, .external_lex_state = 14}, + [1798] = {.lex_state = 125, .external_lex_state = 14}, + [1799] = {.lex_state = 5, .external_lex_state = 14}, + [1800] = {.lex_state = 125, .external_lex_state = 14}, + [1801] = {.lex_state = 125, .external_lex_state = 14}, + [1802] = {.lex_state = 125, .external_lex_state = 13}, + [1803] = {.lex_state = 125, .external_lex_state = 14}, + [1804] = {.lex_state = 125, .external_lex_state = 13}, + [1805] = {.lex_state = 125, .external_lex_state = 14}, + [1806] = {.lex_state = 125, .external_lex_state = 13}, + [1807] = {.lex_state = 125, .external_lex_state = 13}, + [1808] = {.lex_state = 125, .external_lex_state = 14}, + [1809] = {.lex_state = 125, .external_lex_state = 14}, + [1810] = {.lex_state = 125, .external_lex_state = 14}, + [1811] = {.lex_state = 125, .external_lex_state = 14}, + [1812] = {.lex_state = 125, .external_lex_state = 14}, + [1813] = {.lex_state = 125, .external_lex_state = 14}, + [1814] = {.lex_state = 125, .external_lex_state = 14}, + [1815] = {.lex_state = 125, .external_lex_state = 14}, + [1816] = {.lex_state = 125, .external_lex_state = 16}, + [1817] = {.lex_state = 125, .external_lex_state = 13}, + [1818] = {.lex_state = 125, .external_lex_state = 16}, + [1819] = {.lex_state = 125, .external_lex_state = 14}, + [1820] = {.lex_state = 125, .external_lex_state = 14}, + [1821] = {.lex_state = 125, .external_lex_state = 14}, + [1822] = {.lex_state = 125, .external_lex_state = 21}, + [1823] = {.lex_state = 125, .external_lex_state = 14}, + [1824] = {.lex_state = 125, .external_lex_state = 14}, + [1825] = {.lex_state = 125, .external_lex_state = 14}, + [1826] = {.lex_state = 125, .external_lex_state = 14}, + [1827] = {.lex_state = 125, .external_lex_state = 14}, + [1828] = {.lex_state = 125, .external_lex_state = 14}, + [1829] = {.lex_state = 125, .external_lex_state = 14}, + [1830] = {.lex_state = 125, .external_lex_state = 14}, + [1831] = {.lex_state = 125, .external_lex_state = 14}, + [1832] = {.lex_state = 125, .external_lex_state = 14}, + [1833] = {.lex_state = 125, .external_lex_state = 13}, + [1834] = {.lex_state = 125, .external_lex_state = 14}, + [1835] = {.lex_state = 125, .external_lex_state = 16}, + [1836] = {.lex_state = 125, .external_lex_state = 14}, + [1837] = {.lex_state = 125, .external_lex_state = 14}, + [1838] = {.lex_state = 125, .external_lex_state = 14}, + [1839] = {.lex_state = 125, .external_lex_state = 14}, + [1840] = {.lex_state = 125, .external_lex_state = 14}, + [1841] = {.lex_state = 125, .external_lex_state = 16}, + [1842] = {.lex_state = 125, .external_lex_state = 21}, + [1843] = {.lex_state = 125, .external_lex_state = 14}, + [1844] = {.lex_state = 125, .external_lex_state = 14}, + [1845] = {.lex_state = 125, .external_lex_state = 13}, + [1846] = {.lex_state = 125, .external_lex_state = 14}, + [1847] = {.lex_state = 125, .external_lex_state = 14}, + [1848] = {.lex_state = 125, .external_lex_state = 14}, + [1849] = {.lex_state = 125, .external_lex_state = 14}, + [1850] = {.lex_state = 125, .external_lex_state = 14}, + [1851] = {.lex_state = 125, .external_lex_state = 14}, + [1852] = {.lex_state = 125, .external_lex_state = 14}, + [1853] = {.lex_state = 125, .external_lex_state = 14}, + [1854] = {.lex_state = 125, .external_lex_state = 14}, + [1855] = {.lex_state = 125, .external_lex_state = 14}, + [1856] = {.lex_state = 125, .external_lex_state = 21}, + [1857] = {.lex_state = 125, .external_lex_state = 21}, + [1858] = {.lex_state = 125, .external_lex_state = 21}, + [1859] = {.lex_state = 125, .external_lex_state = 21}, + [1860] = {.lex_state = 125, .external_lex_state = 14}, + [1861] = {.lex_state = 125, .external_lex_state = 14}, + [1862] = {.lex_state = 125, .external_lex_state = 14}, + [1863] = {.lex_state = 125, .external_lex_state = 14}, + [1864] = {.lex_state = 125, .external_lex_state = 14}, + [1865] = {.lex_state = 125, .external_lex_state = 14}, + [1866] = {.lex_state = 125, .external_lex_state = 14}, + [1867] = {.lex_state = 32, .external_lex_state = 14}, + [1868] = {.lex_state = 125, .external_lex_state = 14}, + [1869] = {.lex_state = 125, .external_lex_state = 14}, + [1870] = {.lex_state = 125, .external_lex_state = 14}, + [1871] = {.lex_state = 125, .external_lex_state = 14}, + [1872] = {.lex_state = 125, .external_lex_state = 14}, + [1873] = {.lex_state = 125, .external_lex_state = 14}, + [1874] = {.lex_state = 125, .external_lex_state = 14}, + [1875] = {.lex_state = 125, .external_lex_state = 14}, + [1876] = {.lex_state = 125, .external_lex_state = 14}, + [1877] = {.lex_state = 125, .external_lex_state = 14}, + [1878] = {.lex_state = 125, .external_lex_state = 14}, + [1879] = {.lex_state = 125, .external_lex_state = 14}, + [1880] = {.lex_state = 125, .external_lex_state = 14}, + [1881] = {.lex_state = 125, .external_lex_state = 14}, + [1882] = {.lex_state = 125, .external_lex_state = 14}, + [1883] = {.lex_state = 125, .external_lex_state = 14}, + [1884] = {.lex_state = 125, .external_lex_state = 14}, + [1885] = {.lex_state = 125, .external_lex_state = 14}, + [1886] = {.lex_state = 125, .external_lex_state = 14}, + [1887] = {.lex_state = 125, .external_lex_state = 14}, + [1888] = {.lex_state = 125, .external_lex_state = 14}, + [1889] = {.lex_state = 125, .external_lex_state = 14}, + [1890] = {.lex_state = 125, .external_lex_state = 13}, + [1891] = {.lex_state = 125, .external_lex_state = 14}, + [1892] = {.lex_state = 125, .external_lex_state = 14}, + [1893] = {.lex_state = 125, .external_lex_state = 14}, + [1894] = {.lex_state = 125, .external_lex_state = 14}, + [1895] = {.lex_state = 125, .external_lex_state = 14}, + [1896] = {.lex_state = 32, .external_lex_state = 14}, + [1897] = {.lex_state = 125, .external_lex_state = 14}, + [1898] = {.lex_state = 125, .external_lex_state = 14}, + [1899] = {.lex_state = 125, .external_lex_state = 14}, + [1900] = {.lex_state = 125, .external_lex_state = 14}, + [1901] = {.lex_state = 125, .external_lex_state = 14}, + [1902] = {.lex_state = 125, .external_lex_state = 14}, + [1903] = {.lex_state = 125, .external_lex_state = 14}, + [1904] = {.lex_state = 125, .external_lex_state = 14}, + [1905] = {.lex_state = 125, .external_lex_state = 14}, + [1906] = {.lex_state = 125, .external_lex_state = 14}, + [1907] = {.lex_state = 125, .external_lex_state = 14}, + [1908] = {.lex_state = 125, .external_lex_state = 14}, + [1909] = {.lex_state = 125, .external_lex_state = 14}, + [1910] = {.lex_state = 125, .external_lex_state = 14}, + [1911] = {.lex_state = 125, .external_lex_state = 14}, + [1912] = {.lex_state = 125, .external_lex_state = 14}, + [1913] = {.lex_state = 125, .external_lex_state = 14}, + [1914] = {.lex_state = 125, .external_lex_state = 14}, + [1915] = {.lex_state = 125, .external_lex_state = 14}, + [1916] = {.lex_state = 125, .external_lex_state = 14}, + [1917] = {.lex_state = 125, .external_lex_state = 14}, + [1918] = {.lex_state = 125, .external_lex_state = 14}, + [1919] = {.lex_state = 125, .external_lex_state = 14}, + [1920] = {.lex_state = 125, .external_lex_state = 14}, + [1921] = {.lex_state = 125, .external_lex_state = 14}, + [1922] = {.lex_state = 125, .external_lex_state = 14}, + [1923] = {.lex_state = 125, .external_lex_state = 14}, + [1924] = {.lex_state = 125, .external_lex_state = 14}, + [1925] = {.lex_state = 125, .external_lex_state = 14}, + [1926] = {.lex_state = 125, .external_lex_state = 14}, + [1927] = {.lex_state = 125, .external_lex_state = 14}, + [1928] = {.lex_state = 125, .external_lex_state = 14}, + [1929] = {.lex_state = 125, .external_lex_state = 14}, + [1930] = {.lex_state = 125, .external_lex_state = 14}, + [1931] = {.lex_state = 125, .external_lex_state = 14}, + [1932] = {.lex_state = 125, .external_lex_state = 14}, + [1933] = {.lex_state = 32, .external_lex_state = 14}, + [1934] = {.lex_state = 125, .external_lex_state = 14}, + [1935] = {.lex_state = 125, .external_lex_state = 14}, + [1936] = {.lex_state = 125, .external_lex_state = 14}, + [1937] = {.lex_state = 125, .external_lex_state = 14}, + [1938] = {.lex_state = 2, .external_lex_state = 22}, + [1939] = {.lex_state = 125, .external_lex_state = 14}, + [1940] = {.lex_state = 125, .external_lex_state = 14}, + [1941] = {.lex_state = 125, .external_lex_state = 14}, + [1942] = {.lex_state = 2, .external_lex_state = 22}, + [1943] = {.lex_state = 125, .external_lex_state = 14}, + [1944] = {.lex_state = 125, .external_lex_state = 14}, + [1945] = {.lex_state = 32, .external_lex_state = 14}, + [1946] = {.lex_state = 125, .external_lex_state = 14}, + [1947] = {.lex_state = 2, .external_lex_state = 22}, + [1948] = {.lex_state = 125, .external_lex_state = 14}, + [1949] = {.lex_state = 125, .external_lex_state = 14}, + [1950] = {.lex_state = 125, .external_lex_state = 14}, + [1951] = {.lex_state = 125, .external_lex_state = 14}, + [1952] = {.lex_state = 125, .external_lex_state = 14}, + [1953] = {.lex_state = 125, .external_lex_state = 14}, + [1954] = {.lex_state = 125, .external_lex_state = 14}, + [1955] = {.lex_state = 125, .external_lex_state = 14}, + [1956] = {.lex_state = 125, .external_lex_state = 14}, + [1957] = {.lex_state = 125, .external_lex_state = 14}, + [1958] = {.lex_state = 125, .external_lex_state = 14}, + [1959] = {.lex_state = 2, .external_lex_state = 22}, + [1960] = {.lex_state = 125, .external_lex_state = 14}, + [1961] = {.lex_state = 125, .external_lex_state = 14}, + [1962] = {.lex_state = 125, .external_lex_state = 14}, + [1963] = {.lex_state = 125, .external_lex_state = 14}, + [1964] = {.lex_state = 125, .external_lex_state = 14}, + [1965] = {.lex_state = 125, .external_lex_state = 14}, + [1966] = {.lex_state = 125, .external_lex_state = 14}, + [1967] = {.lex_state = 125, .external_lex_state = 14}, + [1968] = {.lex_state = 125, .external_lex_state = 14}, + [1969] = {.lex_state = 125, .external_lex_state = 14}, }; 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 +8924,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(1910), + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1202), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -8545,81 +9053,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), + [STATE(2)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), [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), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1963), + [sym_object_assignment_pattern] = STATE(1352), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1963), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1963), + [sym_spread_element] = STATE(1365), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(657), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1009), + [sym_formal_parameters] = STATE(1772), + [sym_rest_pattern] = STATE(1352), + [sym_method_definition] = STATE(1365), + [sym_pair] = STATE(1365), + [sym_pair_pattern] = STATE(1352), + [sym__property_name] = STATE(1386), + [sym_computed_property_name] = STATE(1386), [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), + [aux_sym_export_statement_repeat1] = STATE(927), + [aux_sym_object_repeat1] = STATE(1397), + [aux_sym_object_pattern_repeat1] = STATE(1409), [sym_identifier] = ACTIONS(95), [anon_sym_export] = ACTIONS(97), [anon_sym_STAR] = ACTIONS(99), @@ -8675,98 +9183,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1963), + [sym_object_assignment_pattern] = STATE(1352), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1963), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1963), + [sym_spread_element] = STATE(1365), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(657), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1009), + [sym_formal_parameters] = STATE(1772), + [sym_rest_pattern] = STATE(1352), + [sym_method_definition] = STATE(1365), + [sym_pair] = STATE(1365), + [sym_pair_pattern] = STATE(1352), + [sym__property_name] = STATE(1386), + [sym_computed_property_name] = STATE(1386), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(927), + [aux_sym_object_repeat1] = STATE(1397), + [aux_sym_object_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(95), + [anon_sym_export] = ACTIONS(97), [anon_sym_STAR] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(127), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), + [anon_sym_let] = ACTIONS(105), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -8788,7 +9296,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(109), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_DOT_DOT_DOT] = ACTIONS(111), @@ -8812,98 +9320,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(119), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), [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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1963), + [sym_object_assignment_pattern] = STATE(1352), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1963), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1963), + [sym_spread_element] = STATE(1365), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(657), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1009), + [sym_formal_parameters] = STATE(1772), + [sym_rest_pattern] = STATE(1352), + [sym_method_definition] = STATE(1365), + [sym_pair] = STATE(1365), + [sym_pair_pattern] = STATE(1352), + [sym__property_name] = STATE(1386), + [sym_computed_property_name] = STATE(1386), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(927), + [aux_sym_object_repeat1] = STATE(1397), + [aux_sym_object_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(95), + [anon_sym_export] = ACTIONS(97), [anon_sym_STAR] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(127), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), + [anon_sym_let] = ACTIONS(105), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -8925,7 +9433,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(109), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_DOT_DOT_DOT] = ACTIONS(111), @@ -8949,98 +9457,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(119), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), [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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1963), + [sym_object_assignment_pattern] = STATE(1352), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1963), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1963), + [sym_spread_element] = STATE(1463), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(657), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1009), + [sym_formal_parameters] = STATE(1772), + [sym_rest_pattern] = STATE(1352), + [sym_method_definition] = STATE(1463), + [sym_pair] = STATE(1463), + [sym_pair_pattern] = STATE(1352), + [sym__property_name] = STATE(1386), + [sym_computed_property_name] = STATE(1386), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(927), + [aux_sym_object_repeat1] = STATE(1407), + [aux_sym_object_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(129), + [anon_sym_export] = ACTIONS(131), [anon_sym_STAR] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(139), + [anon_sym_RBRACE] = ACTIONS(133), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), + [anon_sym_let] = ACTIONS(135), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9062,7 +9570,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(137), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_DOT_DOT_DOT] = ACTIONS(111), @@ -9086,98 +9594,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(139), + [aux_sym_method_definition_token1] = ACTIONS(121), + [anon_sym_get] = ACTIONS(141), + [anon_sym_set] = ACTIONS(141), [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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1963), + [sym_object_assignment_pattern] = STATE(1352), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1963), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1963), + [sym_spread_element] = STATE(1463), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(657), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1009), + [sym_formal_parameters] = STATE(1772), + [sym_rest_pattern] = STATE(1352), + [sym_method_definition] = STATE(1463), + [sym_pair] = STATE(1463), + [sym_pair_pattern] = STATE(1352), + [sym__property_name] = STATE(1386), + [sym_computed_property_name] = STATE(1386), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(927), + [aux_sym_object_repeat1] = STATE(1407), + [aux_sym_object_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(143), + [anon_sym_export] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(99), [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(133), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(145), + [anon_sym_let] = ACTIONS(147), [anon_sym_const] = ACTIONS(25), [anon_sym_if] = ACTIONS(27), [anon_sym_switch] = ACTIONS(29), @@ -9199,7 +9707,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(149), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_DOT_DOT_DOT] = ACTIONS(111), @@ -9223,209 +9731,209 @@ 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), + [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), }, - [7] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), + [STATE(7)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), [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), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), [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), + [aux_sym_export_statement_repeat1] = STATE(1202), + [ts_builtin_sym_end] = ACTIONS(155), + [sym_identifier] = ACTIONS(157), + [anon_sym_export] = ACTIONS(160), + [anon_sym_default] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_RBRACE] = ACTIONS(155), + [anon_sym_import] = ACTIONS(168), + [anon_sym_with] = ACTIONS(171), + [anon_sym_var] = ACTIONS(174), + [anon_sym_let] = ACTIONS(177), + [anon_sym_const] = ACTIONS(180), + [anon_sym_if] = ACTIONS(183), + [anon_sym_switch] = ACTIONS(186), + [anon_sym_for] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(192), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_await] = ACTIONS(198), + [anon_sym_while] = ACTIONS(201), + [anon_sym_do] = ACTIONS(204), + [anon_sym_try] = ACTIONS(207), + [anon_sym_break] = ACTIONS(210), + [anon_sym_continue] = ACTIONS(213), + [anon_sym_debugger] = ACTIONS(216), + [anon_sym_return] = ACTIONS(219), + [anon_sym_throw] = ACTIONS(222), + [anon_sym_case] = ACTIONS(163), + [anon_sym_yield] = ACTIONS(225), + [anon_sym_LBRACK] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(234), + [anon_sym_SQUOTE] = ACTIONS(237), + [anon_sym_class] = ACTIONS(240), + [anon_sym_async] = ACTIONS(243), + [anon_sym_function] = ACTIONS(246), + [anon_sym_new] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(252), + [anon_sym_DASH] = ACTIONS(252), + [anon_sym_SLASH] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(258), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_typeof] = ACTIONS(252), + [anon_sym_void] = ACTIONS(252), + [anon_sym_delete] = ACTIONS(252), + [anon_sym_PLUS_PLUS] = ACTIONS(261), + [anon_sym_DASH_DASH] = ACTIONS(261), [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_BQUOTE] = ACTIONS(264), + [sym_number] = ACTIONS(267), + [sym_private_property_identifier] = ACTIONS(270), + [sym_this] = ACTIONS(273), + [sym_super] = ACTIONS(273), + [sym_true] = ACTIONS(273), + [sym_false] = ACTIONS(273), + [sym_null] = ACTIONS(273), + [sym_undefined] = ACTIONS(276), + [anon_sym_AT] = ACTIONS(279), + [anon_sym_static] = ACTIONS(282), + [anon_sym_get] = ACTIONS(282), + [anon_sym_set] = ACTIONS(282), [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), + [STATE(8)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(283), + [anon_sym_default] = ACTIONS(285), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -9445,7 +9953,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(283), + [anon_sym_case] = ACTIONS(285), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), @@ -9481,76 +9989,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(93), [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(9)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(287), + [anon_sym_default] = ACTIONS(289), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(291), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -9570,7 +10078,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(289), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), @@ -9606,76 +10114,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(291), + [anon_sym_default] = ACTIONS(293), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(295), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -9695,7 +10203,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(293), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), @@ -9731,76 +10239,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(295), + [anon_sym_default] = ACTIONS(297), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(299), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -9820,7 +10328,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(297), [anon_sym_yield] = ACTIONS(55), [anon_sym_LBRACK] = ACTIONS(57), [anon_sym_LT] = ACTIONS(59), @@ -9856,75 +10364,75 @@ 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), + [STATE(12)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), [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), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -9979,72 +10487,72 @@ 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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(1202), + [ts_builtin_sym_end] = ACTIONS(303), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -10102,75 +10610,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(12), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10225,75 +10733,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1202), + [ts_builtin_sym_end] = ACTIONS(303), [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 +10856,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), + [STATE(16)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), [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), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [aux_sym_export_statement_repeat1] = STATE(1202), + [ts_builtin_sym_end] = ACTIONS(307), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(307), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10471,71 +10979,71 @@ 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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -10594,75 +11102,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(19), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10717,75 +11225,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(313), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -10840,75 +11348,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(17), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(1202), [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), @@ -10963,75 +11471,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), + [STATE(21)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), [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), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11086,75 +11594,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), [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(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(1166), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11209,75 +11717,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11332,75 +11840,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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(323), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11455,85 +11963,87 @@ 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), + [STATE(25)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1202), + [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(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), @@ -11546,9 +12056,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), @@ -11571,78 +12081,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), }, - [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(26)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(25), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11697,73 +12209,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(27)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1202), [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), @@ -11818,73 +12332,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(28)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(27), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -11939,73 +12455,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(29)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(333), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12060,85 +12578,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(30)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(32), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_export_statement_repeat1] = STATE(1202), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(335), [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 +12671,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 +12696,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(31)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(29), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), @@ -12302,85 +12824,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(32)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1202), + [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(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 +12917,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 +12942,332 @@ 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(33)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1599), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(34)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1888), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(35)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(394), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), + [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), @@ -12514,9 +13280,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 +13305,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), }, - [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(36)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(411), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), + [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), @@ -12635,9 +13401,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,75 +13426,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), }, - [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(37)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(444), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12786,85 +13552,85 @@ 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(38)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(415), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), + [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), @@ -12877,9 +13643,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 +13668,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), }, - [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(39)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(358), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), + [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), @@ -12998,9 +13764,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 +13789,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), }, - [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(40)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(419), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), + [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), @@ -13119,9 +13885,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 +13910,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), }, - [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(41)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(420), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), + [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), @@ -13240,9 +14006,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 +14031,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), }, - [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(42)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(421), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -13391,85 +14157,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(43)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(423), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), + [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 +14248,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 +14273,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(44)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1866), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(363), [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(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13628,105 +14394,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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), [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(45)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1567), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(363), [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(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13749,105 +14515,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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), [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), - [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(46)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1388), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(363), [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(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13870,105 +14636,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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), [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), - [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(47)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1594), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(363), [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(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -13991,75 +14757,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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), [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(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(382), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14117,100 +14883,100 @@ 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), - [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(49)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1694), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(363), [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(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -14233,105 +14999,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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), [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), - [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), + [STATE(50)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1805), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(363), [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_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), [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(67), - [anon_sym_function] = ACTIONS(69), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -14354,105 +15120,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(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_static] = ACTIONS(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), [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), - [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), + [STATE(51)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1555), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(363), [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_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), [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(67), - [anon_sym_function] = ACTIONS(69), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -14475,75 +15241,801 @@ 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(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_static] = ACTIONS(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), [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(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1600), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(53)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1602), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(54)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1618), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(55)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1619), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(56)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1620), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(57)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1622), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(58)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(408), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14601,70 +16093,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(59)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(427), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14722,70 +16214,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(60)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(409), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14843,70 +16335,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(61)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(400), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14964,70 +16456,191 @@ 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(62)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1950), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(63)] = { + [sym_export_statement] = STATE(429), + [sym_declaration] = STATE(429), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(429), + [sym_statement] = STATE(443), + [sym_expression_statement] = STATE(429), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_statement_block] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(429), + [sym_for_statement] = STATE(429), + [sym_for_in_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_do_statement] = STATE(429), + [sym_try_statement] = STATE(429), + [sym_with_statement] = STATE(429), + [sym_break_statement] = STATE(429), + [sym_continue_statement] = STATE(429), + [sym_debugger_statement] = STATE(429), + [sym_return_statement] = STATE(429), + [sym_throw_statement] = STATE(429), + [sym_empty_statement] = STATE(429), + [sym_labeled_statement] = STATE(429), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(757), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1202), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15085,100 +16698,100 @@ 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), - [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(64)] = { + [sym_export_statement] = STATE(1610), + [sym_declaration] = STATE(1610), + [sym_import] = STATE(1160), + [sym_import_statement] = STATE(1610), + [sym_statement] = STATE(1612), + [sym_expression_statement] = STATE(1610), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_statement_block] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_switch_statement] = STATE(1610), + [sym_for_statement] = STATE(1610), + [sym_for_in_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_do_statement] = STATE(1610), + [sym_try_statement] = STATE(1610), + [sym_with_statement] = STATE(1610), + [sym_break_statement] = STATE(1610), + [sym_continue_statement] = STATE(1610), + [sym_debugger_statement] = STATE(1610), + [sym_return_statement] = STATE(1610), + [sym_throw_statement] = STATE(1610), + [sym_empty_statement] = STATE(1610), + [sym_labeled_statement] = STATE(1610), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(341), + [anon_sym_export] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_SEMI] = ACTIONS(363), [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(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), [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(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -15201,202 +16814,202 @@ 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(387), + [anon_sym_get] = ACTIONS(387), + [anon_sym_set] = ACTIONS(387), [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), + [STATE(65)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(653), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_await] = ACTIONS(403), + [anon_sym_in] = ACTIONS(405), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [sym_optional_chain] = ACTIONS(397), + [anon_sym_new] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_STAR_STAR] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_QMARK_QMARK] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [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(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym__ternary_qmark] = ACTIONS(397), [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(66)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(754), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(397), [anon_sym_await] = ACTIONS(37), - [anon_sym_in] = ACTIONS(363), + [anon_sym_in] = 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(453), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(405), [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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), + [sym_optional_chain] = ACTIONS(397), [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_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(405), [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_PERCENT] = ACTIONS(397), + [anon_sym_STAR_STAR] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_QMARK_QMARK] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(405), [anon_sym_BANG] = ACTIONS(73), [anon_sym_TILDE] = ACTIONS(77), [anon_sym_typeof] = ACTIONS(73), @@ -15415,1055 +17028,336 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), + [sym__automatic_semicolon] = ACTIONS(397), + [sym__ternary_qmark] = ACTIONS(397), [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(67)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(760), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_COMMA] = ACTIONS(397), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [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(397), + [anon_sym_await] = ACTIONS(467), + [anon_sym_in] = ACTIONS(405), + [anon_sym_of] = ACTIONS(405), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(453), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(405), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [sym_optional_chain] = ACTIONS(397), + [anon_sym_new] = ACTIONS(473), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_STAR_STAR] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_QMARK_QMARK] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(475), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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), + [sym_undefined] = ACTIONS(485), [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), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym__automatic_semicolon] = ACTIONS(397), + [sym__ternary_qmark] = ACTIONS(397), [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), + [STATE(68)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(834), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_STAR] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_in] = ACTIONS(405), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_yield] = ACTIONS(497), [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_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), [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_function] = ACTIONS(421), + [sym_optional_chain] = ACTIONS(397), + [anon_sym_new] = ACTIONS(503), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(405), [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_SLASH] = ACTIONS(427), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_STAR_STAR] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_QMARK_QMARK] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(405), [anon_sym_BANG] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(503), + [anon_sym_TILDE] = ACTIONS(507), [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), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), + [sym__ternary_qmark] = ACTIONS(397), [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), + [STATE(69)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(855), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(519), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), [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_in] = ACTIONS(405), + [anon_sym_of] = ACTIONS(405), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), [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_function] = ACTIONS(421), + [sym_optional_chain] = ACTIONS(397), + [anon_sym_new] = ACTIONS(527), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_GT_GT_GT] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(405), [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_SLASH] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_STAR_STAR] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(405), + [anon_sym_BANG_EQ_EQ] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_QMARK_QMARK] = ACTIONS(397), + [anon_sym_instanceof] = ACTIONS(405), [anon_sym_BANG] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_TILDE] = ACTIONS(533), [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), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), [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), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [sym__ternary_qmark] = ACTIONS(397), [sym_html_comment] = ACTIONS(5), }, - [69] = { + [STATE(70)] = { [ts_builtin_sym_end] = ACTIONS(541), [sym_identifier] = ACTIONS(543), [anon_sym_export] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(543), [anon_sym_default] = ACTIONS(543), [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_COMMA] = ACTIONS(547), + [anon_sym_COMMA] = ACTIONS(541), [anon_sym_RBRACE] = ACTIONS(541), [anon_sym_import] = ACTIONS(543), [anon_sym_with] = ACTIONS(543), @@ -16477,7 +17371,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(541), [anon_sym_SEMI] = ACTIONS(541), [anon_sym_await] = ACTIONS(543), - [anon_sym_in] = ACTIONS(545), + [anon_sym_in] = ACTIONS(543), + [anon_sym_of] = ACTIONS(543), [anon_sym_while] = ACTIONS(543), [anon_sym_do] = ACTIONS(543), [anon_sym_try] = ACTIONS(543), @@ -16490,36 +17385,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT] = ACTIONS(543), + [anon_sym_DOT] = ACTIONS(543), [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), + [sym_optional_chain] = ACTIONS(541), [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_AMP_AMP] = ACTIONS(541), + [anon_sym_PIPE_PIPE] = ACTIONS(541), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_GT_GT_GT] = ACTIONS(541), + [anon_sym_LT_LT] = ACTIONS(541), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_CARET] = ACTIONS(541), + [anon_sym_PIPE] = ACTIONS(543), [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_PERCENT] = ACTIONS(541), + [anon_sym_STAR_STAR] = ACTIONS(541), + [anon_sym_LT_EQ] = ACTIONS(541), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(541), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(541), + [anon_sym_GT_EQ] = ACTIONS(541), + [anon_sym_QMARK_QMARK] = ACTIONS(541), + [anon_sym_instanceof] = ACTIONS(543), [anon_sym_BANG] = ACTIONS(543), [anon_sym_TILDE] = ACTIONS(541), [anon_sym_typeof] = ACTIONS(543), @@ -16541,18 +17436,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(543), [anon_sym_get] = ACTIONS(543), [anon_sym_set] = ACTIONS(543), + [sym__automatic_semicolon] = ACTIONS(541), + [sym__ternary_qmark] = ACTIONS(541), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(71)] = { + [ts_builtin_sym_end] = ACTIONS(545), + [sym_identifier] = ACTIONS(547), + [anon_sym_export] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(547), + [anon_sym_default] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(545), + [anon_sym_COMMA] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(545), + [anon_sym_import] = ACTIONS(547), + [anon_sym_with] = ACTIONS(547), + [anon_sym_var] = ACTIONS(547), + [anon_sym_let] = ACTIONS(547), + [anon_sym_const] = ACTIONS(547), + [anon_sym_else] = ACTIONS(547), + [anon_sym_if] = ACTIONS(547), + [anon_sym_switch] = ACTIONS(547), + [anon_sym_for] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_await] = ACTIONS(547), + [anon_sym_in] = ACTIONS(547), + [anon_sym_of] = ACTIONS(547), + [anon_sym_while] = ACTIONS(547), + [anon_sym_do] = ACTIONS(547), + [anon_sym_try] = ACTIONS(547), + [anon_sym_break] = ACTIONS(547), + [anon_sym_continue] = ACTIONS(547), + [anon_sym_debugger] = ACTIONS(547), + [anon_sym_return] = ACTIONS(547), + [anon_sym_throw] = ACTIONS(547), + [anon_sym_case] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(547), + [anon_sym_LBRACK] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(545), + [anon_sym_SQUOTE] = ACTIONS(545), + [anon_sym_class] = ACTIONS(547), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(547), + [sym_optional_chain] = ACTIONS(545), + [anon_sym_new] = ACTIONS(547), + [anon_sym_AMP_AMP] = ACTIONS(545), + [anon_sym_PIPE_PIPE] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_GT_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(547), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_PIPE] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(547), + [anon_sym_DASH] = ACTIONS(547), + [anon_sym_SLASH] = ACTIONS(547), + [anon_sym_PERCENT] = ACTIONS(545), + [anon_sym_STAR_STAR] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(545), + [anon_sym_BANG_EQ] = ACTIONS(547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(545), + [anon_sym_QMARK_QMARK] = ACTIONS(545), + [anon_sym_instanceof] = ACTIONS(547), + [anon_sym_BANG] = ACTIONS(547), + [anon_sym_TILDE] = ACTIONS(545), + [anon_sym_typeof] = ACTIONS(547), + [anon_sym_void] = ACTIONS(547), + [anon_sym_delete] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(545), + [anon_sym_DASH_DASH] = ACTIONS(545), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(545), + [sym_number] = ACTIONS(545), + [sym_private_property_identifier] = ACTIONS(545), + [sym_this] = ACTIONS(547), + [sym_super] = ACTIONS(547), + [sym_true] = ACTIONS(547), + [sym_false] = ACTIONS(547), + [sym_null] = ACTIONS(547), + [sym_undefined] = ACTIONS(547), + [anon_sym_AT] = ACTIONS(545), + [anon_sym_static] = ACTIONS(547), + [anon_sym_get] = ACTIONS(547), + [anon_sym_set] = ACTIONS(547), [sym__automatic_semicolon] = ACTIONS(549), - [sym__ternary_qmark] = ACTIONS(547), + [sym__ternary_qmark] = ACTIONS(545), [sym_html_comment] = ACTIONS(5), }, - [70] = { + [STATE(72)] = { [ts_builtin_sym_end] = ACTIONS(551), [sym_identifier] = ACTIONS(553), [anon_sym_export] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), + [anon_sym_STAR] = ACTIONS(553), [anon_sym_default] = ACTIONS(553), [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(551), [anon_sym_RBRACE] = ACTIONS(551), [anon_sym_import] = ACTIONS(553), [anon_sym_with] = ACTIONS(553), @@ -16566,7 +17551,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(551), [anon_sym_SEMI] = ACTIONS(551), [anon_sym_await] = ACTIONS(553), - [anon_sym_in] = ACTIONS(555), + [anon_sym_in] = ACTIONS(553), + [anon_sym_of] = ACTIONS(553), [anon_sym_while] = ACTIONS(553), [anon_sym_do] = ACTIONS(553), [anon_sym_try] = ACTIONS(553), @@ -16579,36 +17565,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(553), [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), + [sym_optional_chain] = ACTIONS(551), [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_AMP_AMP] = ACTIONS(551), + [anon_sym_PIPE_PIPE] = ACTIONS(551), + [anon_sym_GT_GT] = ACTIONS(553), + [anon_sym_GT_GT_GT] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(551), + [anon_sym_AMP] = ACTIONS(553), + [anon_sym_CARET] = ACTIONS(551), + [anon_sym_PIPE] = ACTIONS(553), [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_PERCENT] = ACTIONS(551), + [anon_sym_STAR_STAR] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(553), + [anon_sym_EQ_EQ_EQ] = ACTIONS(551), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_BANG_EQ_EQ] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(551), + [anon_sym_QMARK_QMARK] = ACTIONS(551), + [anon_sym_instanceof] = ACTIONS(553), [anon_sym_BANG] = ACTIONS(553), [anon_sym_TILDE] = ACTIONS(551), [anon_sym_typeof] = ACTIONS(553), @@ -16630,19 +17616,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__automatic_semicolon] = ACTIONS(551), + [sym__ternary_qmark] = ACTIONS(551), [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), + [STATE(73)] = { + [ts_builtin_sym_end] = ACTIONS(555), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(557), + [anon_sym_STAR] = ACTIONS(557), + [anon_sym_default] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_COMMA] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(557), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(557), + [anon_sym_let] = ACTIONS(557), + [anon_sym_const] = ACTIONS(557), + [anon_sym_else] = ACTIONS(557), + [anon_sym_if] = ACTIONS(557), + [anon_sym_switch] = ACTIONS(557), + [anon_sym_for] = ACTIONS(557), + [anon_sym_LPAREN] = ACTIONS(555), + [anon_sym_SEMI] = ACTIONS(555), + [anon_sym_await] = ACTIONS(557), + [anon_sym_in] = ACTIONS(557), + [anon_sym_of] = ACTIONS(557), + [anon_sym_while] = ACTIONS(557), + [anon_sym_do] = ACTIONS(557), + [anon_sym_try] = ACTIONS(557), + [anon_sym_break] = ACTIONS(557), + [anon_sym_continue] = ACTIONS(557), + [anon_sym_debugger] = ACTIONS(557), + [anon_sym_return] = ACTIONS(557), + [anon_sym_throw] = ACTIONS(557), + [anon_sym_case] = ACTIONS(557), + [anon_sym_yield] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(555), + [anon_sym_LT] = ACTIONS(557), + [anon_sym_GT] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(557), + [anon_sym_DQUOTE] = ACTIONS(555), + [anon_sym_SQUOTE] = ACTIONS(555), + [anon_sym_class] = ACTIONS(557), + [anon_sym_async] = ACTIONS(557), + [anon_sym_function] = ACTIONS(557), + [sym_optional_chain] = ACTIONS(555), + [anon_sym_new] = ACTIONS(557), + [anon_sym_AMP_AMP] = ACTIONS(555), + [anon_sym_PIPE_PIPE] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(557), + [anon_sym_GT_GT_GT] = ACTIONS(555), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_AMP] = ACTIONS(557), + [anon_sym_CARET] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(557), + [anon_sym_PLUS] = ACTIONS(557), + [anon_sym_DASH] = ACTIONS(557), + [anon_sym_SLASH] = ACTIONS(557), + [anon_sym_PERCENT] = ACTIONS(555), + [anon_sym_STAR_STAR] = ACTIONS(555), + [anon_sym_LT_EQ] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(557), + [anon_sym_EQ_EQ_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ] = ACTIONS(557), + [anon_sym_BANG_EQ_EQ] = ACTIONS(555), + [anon_sym_GT_EQ] = ACTIONS(555), + [anon_sym_QMARK_QMARK] = ACTIONS(555), + [anon_sym_instanceof] = ACTIONS(557), + [anon_sym_BANG] = ACTIONS(557), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(557), + [anon_sym_void] = ACTIONS(557), + [anon_sym_delete] = ACTIONS(557), + [anon_sym_PLUS_PLUS] = ACTIONS(555), + [anon_sym_DASH_DASH] = ACTIONS(555), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(555), + [sym_number] = ACTIONS(555), + [sym_private_property_identifier] = ACTIONS(555), + [sym_this] = ACTIONS(557), + [sym_super] = ACTIONS(557), + [sym_true] = ACTIONS(557), + [sym_false] = ACTIONS(557), + [sym_null] = ACTIONS(557), + [sym_undefined] = ACTIONS(557), + [anon_sym_AT] = ACTIONS(555), + [anon_sym_static] = ACTIONS(557), + [anon_sym_get] = ACTIONS(557), + [anon_sym_set] = ACTIONS(557), + [sym__automatic_semicolon] = ACTIONS(555), + [sym__ternary_qmark] = ACTIONS(555), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(74)] = { + [ts_builtin_sym_end] = ACTIONS(551), + [sym_identifier] = ACTIONS(553), + [anon_sym_export] = ACTIONS(553), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_default] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(551), + [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(553), + [anon_sym_of] = ACTIONS(553), + [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(553), + [anon_sym_DOT] = ACTIONS(553), + [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(551), + [anon_sym_new] = ACTIONS(553), + [anon_sym_AMP_AMP] = ACTIONS(551), + [anon_sym_PIPE_PIPE] = ACTIONS(551), + [anon_sym_GT_GT] = ACTIONS(553), + [anon_sym_GT_GT_GT] = ACTIONS(551), + [anon_sym_LT_LT] = ACTIONS(551), + [anon_sym_AMP] = ACTIONS(553), + [anon_sym_CARET] = ACTIONS(551), + [anon_sym_PIPE] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(553), + [anon_sym_PERCENT] = ACTIONS(551), + [anon_sym_STAR_STAR] = ACTIONS(551), + [anon_sym_LT_EQ] = ACTIONS(551), + [anon_sym_EQ_EQ] = ACTIONS(553), + [anon_sym_EQ_EQ_EQ] = ACTIONS(551), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_BANG_EQ_EQ] = ACTIONS(551), + [anon_sym_GT_EQ] = ACTIONS(551), + [anon_sym_QMARK_QMARK] = ACTIONS(551), + [anon_sym_instanceof] = ACTIONS(553), + [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(551), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(75)] = { + [ts_builtin_sym_end] = ACTIONS(561), + [sym_identifier] = ACTIONS(563), + [anon_sym_export] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(563), + [anon_sym_default] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_COMMA] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(561), [anon_sym_import] = ACTIONS(563), [anon_sym_with] = ACTIONS(563), [anon_sym_var] = ACTIONS(563), @@ -16655,7 +17821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(561), [anon_sym_await] = ACTIONS(563), - [anon_sym_in] = ACTIONS(565), + [anon_sym_in] = ACTIONS(563), + [anon_sym_of] = ACTIONS(563), [anon_sym_while] = ACTIONS(563), [anon_sym_do] = ACTIONS(563), [anon_sym_try] = ACTIONS(563), @@ -16668,36 +17835,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_GT] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), [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), + [sym_optional_chain] = ACTIONS(561), [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_AMP_AMP] = ACTIONS(561), + [anon_sym_PIPE_PIPE] = ACTIONS(561), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(561), + [anon_sym_LT_LT] = ACTIONS(561), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_CARET] = ACTIONS(561), + [anon_sym_PIPE] = ACTIONS(563), [anon_sym_PLUS] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(563), [anon_sym_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_PERCENT] = ACTIONS(561), + [anon_sym_STAR_STAR] = ACTIONS(561), + [anon_sym_LT_EQ] = ACTIONS(561), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(561), + [anon_sym_GT_EQ] = ACTIONS(561), + [anon_sym_QMARK_QMARK] = ACTIONS(561), + [anon_sym_instanceof] = ACTIONS(563), [anon_sym_BANG] = ACTIONS(563), [anon_sym_TILDE] = ACTIONS(561), [anon_sym_typeof] = ACTIONS(563), @@ -16719,1031 +17886,1477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(563), [anon_sym_get] = ACTIONS(563), [anon_sym_set] = ACTIONS(563), - [sym__automatic_semicolon] = ACTIONS(569), + [sym__automatic_semicolon] = ACTIONS(561), + [sym__ternary_qmark] = ACTIONS(561), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(76)] = { + [ts_builtin_sym_end] = ACTIONS(545), + [sym_identifier] = ACTIONS(547), + [anon_sym_export] = ACTIONS(547), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_default] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(545), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(545), + [anon_sym_import] = ACTIONS(547), + [anon_sym_with] = ACTIONS(547), + [anon_sym_var] = ACTIONS(547), + [anon_sym_let] = ACTIONS(547), + [anon_sym_const] = ACTIONS(547), + [anon_sym_else] = ACTIONS(547), + [anon_sym_if] = ACTIONS(547), + [anon_sym_switch] = ACTIONS(547), + [anon_sym_for] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(545), + [anon_sym_SEMI] = ACTIONS(545), + [anon_sym_await] = ACTIONS(547), + [anon_sym_in] = ACTIONS(565), + [anon_sym_while] = ACTIONS(547), + [anon_sym_do] = ACTIONS(547), + [anon_sym_try] = ACTIONS(547), + [anon_sym_break] = ACTIONS(547), + [anon_sym_continue] = ACTIONS(547), + [anon_sym_debugger] = ACTIONS(547), + [anon_sym_return] = ACTIONS(547), + [anon_sym_throw] = ACTIONS(547), + [anon_sym_case] = ACTIONS(547), + [anon_sym_yield] = ACTIONS(547), + [anon_sym_EQ] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(545), + [anon_sym_LT] = ACTIONS(547), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_DOT] = ACTIONS(565), + [anon_sym_DQUOTE] = ACTIONS(545), + [anon_sym_SQUOTE] = ACTIONS(545), + [anon_sym_class] = ACTIONS(547), + [anon_sym_async] = ACTIONS(547), + [anon_sym_function] = ACTIONS(547), + [sym_optional_chain] = ACTIONS(567), + [anon_sym_new] = ACTIONS(547), + [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(547), + [anon_sym_DASH] = ACTIONS(547), + [anon_sym_SLASH] = ACTIONS(547), + [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(547), + [anon_sym_TILDE] = ACTIONS(545), + [anon_sym_typeof] = ACTIONS(547), + [anon_sym_void] = ACTIONS(547), + [anon_sym_delete] = ACTIONS(547), + [anon_sym_PLUS_PLUS] = ACTIONS(545), + [anon_sym_DASH_DASH] = ACTIONS(545), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(545), + [sym_number] = ACTIONS(545), + [sym_private_property_identifier] = ACTIONS(545), + [sym_this] = ACTIONS(547), + [sym_super] = ACTIONS(547), + [sym_true] = ACTIONS(547), + [sym_false] = ACTIONS(547), + [sym_null] = ACTIONS(547), + [sym_undefined] = ACTIONS(547), + [anon_sym_AT] = ACTIONS(545), + [anon_sym_static] = ACTIONS(547), + [anon_sym_get] = ACTIONS(547), + [anon_sym_set] = ACTIONS(547), + [sym__automatic_semicolon] = ACTIONS(571), [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), + [STATE(77)] = { + [ts_builtin_sym_end] = ACTIONS(573), + [sym_identifier] = ACTIONS(575), + [anon_sym_export] = ACTIONS(575), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_default] = ACTIONS(575), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_with] = ACTIONS(575), + [anon_sym_var] = ACTIONS(575), + [anon_sym_let] = ACTIONS(575), + [anon_sym_const] = ACTIONS(575), + [anon_sym_else] = ACTIONS(575), + [anon_sym_if] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(575), + [anon_sym_for] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_SEMI] = ACTIONS(573), + [anon_sym_await] = ACTIONS(575), + [anon_sym_in] = ACTIONS(577), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(575), + [anon_sym_try] = ACTIONS(575), + [anon_sym_break] = ACTIONS(575), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_debugger] = ACTIONS(575), + [anon_sym_return] = ACTIONS(575), + [anon_sym_throw] = ACTIONS(575), + [anon_sym_case] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DQUOTE] = ACTIONS(573), + [anon_sym_SQUOTE] = ACTIONS(573), + [anon_sym_class] = ACTIONS(575), + [anon_sym_async] = ACTIONS(575), + [anon_sym_function] = ACTIONS(575), + [sym_optional_chain] = ACTIONS(579), + [anon_sym_new] = ACTIONS(575), + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_GT_GT_GT] = ACTIONS(579), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(579), + [anon_sym_STAR_STAR] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(579), + [anon_sym_QMARK_QMARK] = ACTIONS(579), + [anon_sym_instanceof] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(575), + [anon_sym_void] = ACTIONS(575), + [anon_sym_delete] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), [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), + [anon_sym_BQUOTE] = ACTIONS(573), + [sym_number] = ACTIONS(573), + [sym_private_property_identifier] = ACTIONS(573), + [sym_this] = ACTIONS(575), + [sym_super] = ACTIONS(575), + [sym_true] = ACTIONS(575), + [sym_false] = ACTIONS(575), + [sym_null] = ACTIONS(575), + [sym_undefined] = ACTIONS(575), + [anon_sym_AT] = ACTIONS(573), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), + [sym__automatic_semicolon] = ACTIONS(581), + [sym__ternary_qmark] = ACTIONS(579), [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), + [STATE(78)] = { + [ts_builtin_sym_end] = ACTIONS(583), + [sym_identifier] = ACTIONS(585), + [anon_sym_export] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(587), + [anon_sym_default] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym_COMMA] = ACTIONS(589), + [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_import] = ACTIONS(585), + [anon_sym_with] = ACTIONS(585), + [anon_sym_var] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_else] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(583), + [anon_sym_await] = ACTIONS(585), + [anon_sym_in] = ACTIONS(587), + [anon_sym_while] = ACTIONS(585), + [anon_sym_do] = ACTIONS(585), + [anon_sym_try] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_debugger] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_throw] = ACTIONS(585), + [anon_sym_case] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(587), + [anon_sym_DOT] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(583), + [anon_sym_SQUOTE] = ACTIONS(583), + [anon_sym_class] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_function] = ACTIONS(585), + [sym_optional_chain] = ACTIONS(589), + [anon_sym_new] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(587), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(587), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_STAR_STAR] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_QMARK_QMARK] = ACTIONS(589), + [anon_sym_instanceof] = ACTIONS(587), + [anon_sym_BANG] = ACTIONS(585), + [anon_sym_TILDE] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(585), + [anon_sym_void] = ACTIONS(585), + [anon_sym_delete] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(583), + [anon_sym_DASH_DASH] = ACTIONS(583), [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), + [anon_sym_BQUOTE] = ACTIONS(583), + [sym_number] = ACTIONS(583), + [sym_private_property_identifier] = ACTIONS(583), + [sym_this] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_null] = ACTIONS(585), + [sym_undefined] = ACTIONS(585), + [anon_sym_AT] = ACTIONS(583), + [anon_sym_static] = ACTIONS(585), + [anon_sym_get] = ACTIONS(585), + [anon_sym_set] = ACTIONS(585), + [sym__automatic_semicolon] = ACTIONS(591), + [sym__ternary_qmark] = ACTIONS(589), [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), + [STATE(79)] = { + [ts_builtin_sym_end] = ACTIONS(593), + [sym_identifier] = ACTIONS(595), + [anon_sym_export] = ACTIONS(595), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_default] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_import] = ACTIONS(595), + [anon_sym_with] = ACTIONS(595), + [anon_sym_var] = ACTIONS(595), + [anon_sym_let] = ACTIONS(595), + [anon_sym_const] = ACTIONS(595), + [anon_sym_else] = ACTIONS(595), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(595), + [anon_sym_for] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(593), + [anon_sym_SEMI] = ACTIONS(593), + [anon_sym_await] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_while] = ACTIONS(595), + [anon_sym_do] = ACTIONS(595), + [anon_sym_try] = ACTIONS(595), + [anon_sym_break] = ACTIONS(595), + [anon_sym_continue] = ACTIONS(595), + [anon_sym_debugger] = ACTIONS(595), + [anon_sym_return] = ACTIONS(595), + [anon_sym_throw] = ACTIONS(595), + [anon_sym_case] = ACTIONS(595), + [anon_sym_yield] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(593), + [anon_sym_SQUOTE] = ACTIONS(593), + [anon_sym_class] = ACTIONS(595), + [anon_sym_async] = ACTIONS(595), + [anon_sym_function] = ACTIONS(595), + [sym_optional_chain] = ACTIONS(599), + [anon_sym_new] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(595), + [anon_sym_DASH] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(595), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_STAR_STAR] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_QMARK_QMARK] = ACTIONS(599), + [anon_sym_instanceof] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(593), + [anon_sym_typeof] = ACTIONS(595), + [anon_sym_void] = ACTIONS(595), + [anon_sym_delete] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(593), + [anon_sym_DASH_DASH] = ACTIONS(593), [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), + [anon_sym_BQUOTE] = ACTIONS(593), + [sym_number] = ACTIONS(593), + [sym_private_property_identifier] = ACTIONS(593), + [sym_this] = ACTIONS(595), + [sym_super] = ACTIONS(595), + [sym_true] = ACTIONS(595), + [sym_false] = ACTIONS(595), + [sym_null] = ACTIONS(595), + [sym_undefined] = ACTIONS(595), + [anon_sym_AT] = ACTIONS(593), + [anon_sym_static] = ACTIONS(595), + [anon_sym_get] = ACTIONS(595), + [anon_sym_set] = ACTIONS(595), + [sym__automatic_semicolon] = ACTIONS(601), + [sym__ternary_qmark] = ACTIONS(599), [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), + [STATE(80)] = { + [ts_builtin_sym_end] = ACTIONS(603), + [sym_identifier] = ACTIONS(605), + [anon_sym_export] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(607), + [anon_sym_default] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_import] = ACTIONS(605), + [anon_sym_with] = ACTIONS(605), + [anon_sym_var] = ACTIONS(605), + [anon_sym_let] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_else] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_switch] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_await] = ACTIONS(605), + [anon_sym_in] = ACTIONS(607), + [anon_sym_while] = ACTIONS(605), + [anon_sym_do] = ACTIONS(605), + [anon_sym_try] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_debugger] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_throw] = ACTIONS(605), + [anon_sym_case] = ACTIONS(605), + [anon_sym_yield] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(603), + [anon_sym_SQUOTE] = ACTIONS(603), + [anon_sym_class] = ACTIONS(605), + [anon_sym_async] = ACTIONS(605), + [anon_sym_function] = ACTIONS(605), + [sym_optional_chain] = ACTIONS(609), + [anon_sym_new] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(607), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(609), + [anon_sym_STAR_STAR] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(609), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_QMARK_QMARK] = ACTIONS(609), + [anon_sym_instanceof] = ACTIONS(607), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_typeof] = ACTIONS(605), + [anon_sym_void] = ACTIONS(605), + [anon_sym_delete] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [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), + [anon_sym_BQUOTE] = ACTIONS(603), + [sym_number] = ACTIONS(603), + [sym_private_property_identifier] = ACTIONS(603), + [sym_this] = ACTIONS(605), + [sym_super] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_null] = ACTIONS(605), + [sym_undefined] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(603), + [anon_sym_static] = ACTIONS(605), + [anon_sym_get] = ACTIONS(605), + [anon_sym_set] = ACTIONS(605), + [sym__automatic_semicolon] = ACTIONS(611), + [sym__ternary_qmark] = ACTIONS(609), [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), + [STATE(81)] = { + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(615), + [anon_sym_export] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_default] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_import] = ACTIONS(615), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(615), + [anon_sym_let] = ACTIONS(615), + [anon_sym_const] = ACTIONS(615), + [anon_sym_else] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_switch] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_await] = ACTIONS(615), + [anon_sym_in] = ACTIONS(617), + [anon_sym_while] = ACTIONS(615), + [anon_sym_do] = ACTIONS(615), + [anon_sym_try] = ACTIONS(615), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_debugger] = ACTIONS(615), + [anon_sym_return] = ACTIONS(615), + [anon_sym_throw] = ACTIONS(615), + [anon_sym_case] = ACTIONS(615), + [anon_sym_yield] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_DQUOTE] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_class] = ACTIONS(615), + [anon_sym_async] = ACTIONS(615), + [anon_sym_function] = ACTIONS(615), + [sym_optional_chain] = ACTIONS(619), + [anon_sym_new] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(617), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_STAR_STAR] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_EQ_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_QMARK_QMARK] = ACTIONS(619), + [anon_sym_instanceof] = ACTIONS(617), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(613), + [sym_number] = ACTIONS(613), + [sym_private_property_identifier] = ACTIONS(613), + [sym_this] = ACTIONS(615), + [sym_super] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_null] = ACTIONS(615), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(613), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), + [sym__automatic_semicolon] = ACTIONS(621), + [sym__ternary_qmark] = ACTIONS(619), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(82)] = { + [ts_builtin_sym_end] = ACTIONS(623), + [sym_identifier] = ACTIONS(625), + [anon_sym_export] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_default] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_import] = ACTIONS(625), + [anon_sym_with] = ACTIONS(625), + [anon_sym_var] = ACTIONS(625), + [anon_sym_let] = ACTIONS(625), + [anon_sym_const] = ACTIONS(625), + [anon_sym_else] = ACTIONS(625), + [anon_sym_if] = ACTIONS(625), + [anon_sym_switch] = ACTIONS(625), + [anon_sym_for] = ACTIONS(625), + [anon_sym_LPAREN] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_await] = ACTIONS(625), + [anon_sym_in] = ACTIONS(627), + [anon_sym_while] = ACTIONS(625), + [anon_sym_do] = ACTIONS(625), + [anon_sym_try] = ACTIONS(625), + [anon_sym_break] = ACTIONS(625), + [anon_sym_continue] = ACTIONS(625), + [anon_sym_debugger] = ACTIONS(625), + [anon_sym_return] = ACTIONS(625), + [anon_sym_throw] = ACTIONS(625), + [anon_sym_case] = ACTIONS(625), + [anon_sym_yield] = ACTIONS(625), + [anon_sym_LBRACK] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(625), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_DQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_class] = ACTIONS(625), + [anon_sym_async] = ACTIONS(625), + [anon_sym_function] = ACTIONS(625), + [sym_optional_chain] = ACTIONS(629), + [anon_sym_new] = ACTIONS(625), + [anon_sym_AMP_AMP] = ACTIONS(629), + [anon_sym_PIPE_PIPE] = ACTIONS(629), + [anon_sym_GT_GT] = ACTIONS(627), + [anon_sym_GT_GT_GT] = ACTIONS(629), + [anon_sym_LT_LT] = ACTIONS(629), + [anon_sym_AMP] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(629), + [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_PLUS] = ACTIONS(625), + [anon_sym_DASH] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(625), + [anon_sym_PERCENT] = ACTIONS(629), + [anon_sym_STAR_STAR] = ACTIONS(629), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_EQ_EQ] = ACTIONS(627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(629), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK] = ACTIONS(629), + [anon_sym_instanceof] = ACTIONS(627), + [anon_sym_BANG] = ACTIONS(625), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_typeof] = ACTIONS(625), + [anon_sym_void] = ACTIONS(625), + [anon_sym_delete] = ACTIONS(625), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(623), + [sym_number] = ACTIONS(623), + [sym_private_property_identifier] = ACTIONS(623), + [sym_this] = ACTIONS(625), + [sym_super] = ACTIONS(625), + [sym_true] = ACTIONS(625), + [sym_false] = ACTIONS(625), + [sym_null] = ACTIONS(625), + [sym_undefined] = ACTIONS(625), + [anon_sym_AT] = ACTIONS(623), + [anon_sym_static] = ACTIONS(625), + [anon_sym_get] = ACTIONS(625), + [anon_sym_set] = ACTIONS(625), + [sym__automatic_semicolon] = ACTIONS(631), + [sym__ternary_qmark] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(83)] = { + [ts_builtin_sym_end] = ACTIONS(633), + [sym_identifier] = ACTIONS(635), + [anon_sym_export] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_default] = ACTIONS(635), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(639), + [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(637), + [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(637), + [anon_sym_DOT] = ACTIONS(637), + [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(639), + [anon_sym_new] = ACTIONS(635), + [anon_sym_AMP_AMP] = ACTIONS(639), + [anon_sym_PIPE_PIPE] = ACTIONS(639), + [anon_sym_GT_GT] = ACTIONS(637), + [anon_sym_GT_GT_GT] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(635), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_STAR_STAR] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(639), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(639), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(639), + [anon_sym_GT_EQ] = ACTIONS(639), + [anon_sym_QMARK_QMARK] = ACTIONS(639), + [anon_sym_instanceof] = ACTIONS(637), + [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(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(641), + [sym__ternary_qmark] = ACTIONS(639), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(84)] = { + [ts_builtin_sym_end] = ACTIONS(643), + [sym_identifier] = ACTIONS(645), + [anon_sym_export] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(647), + [anon_sym_default] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_RBRACE] = ACTIONS(643), + [anon_sym_import] = ACTIONS(645), + [anon_sym_with] = ACTIONS(645), + [anon_sym_var] = ACTIONS(645), + [anon_sym_let] = ACTIONS(645), + [anon_sym_const] = ACTIONS(645), + [anon_sym_else] = ACTIONS(645), + [anon_sym_if] = ACTIONS(645), + [anon_sym_switch] = ACTIONS(645), + [anon_sym_for] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(643), + [anon_sym_await] = ACTIONS(645), + [anon_sym_in] = ACTIONS(647), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(645), + [anon_sym_try] = ACTIONS(645), + [anon_sym_break] = ACTIONS(645), + [anon_sym_continue] = ACTIONS(645), + [anon_sym_debugger] = ACTIONS(645), + [anon_sym_return] = ACTIONS(645), + [anon_sym_throw] = ACTIONS(645), + [anon_sym_case] = ACTIONS(645), + [anon_sym_yield] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(647), + [anon_sym_DOT] = ACTIONS(647), + [anon_sym_DQUOTE] = ACTIONS(643), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_class] = ACTIONS(645), + [anon_sym_async] = ACTIONS(645), + [anon_sym_function] = ACTIONS(645), + [sym_optional_chain] = ACTIONS(649), + [anon_sym_new] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(649), + [anon_sym_PIPE_PIPE] = ACTIONS(649), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_GT_GT_GT] = ACTIONS(649), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(647), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(647), + [anon_sym_PLUS] = ACTIONS(645), + [anon_sym_DASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_STAR_STAR] = ACTIONS(649), + [anon_sym_LT_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(647), + [anon_sym_EQ_EQ_EQ] = ACTIONS(649), + [anon_sym_BANG_EQ] = ACTIONS(647), + [anon_sym_BANG_EQ_EQ] = ACTIONS(649), + [anon_sym_GT_EQ] = ACTIONS(649), + [anon_sym_QMARK_QMARK] = ACTIONS(649), + [anon_sym_instanceof] = ACTIONS(647), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_typeof] = ACTIONS(645), + [anon_sym_void] = ACTIONS(645), + [anon_sym_delete] = ACTIONS(645), + [anon_sym_PLUS_PLUS] = ACTIONS(643), + [anon_sym_DASH_DASH] = ACTIONS(643), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(643), + [sym_number] = ACTIONS(643), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(645), + [sym_super] = ACTIONS(645), + [sym_true] = ACTIONS(645), + [sym_false] = ACTIONS(645), + [sym_null] = ACTIONS(645), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(643), + [anon_sym_static] = ACTIONS(645), + [anon_sym_get] = ACTIONS(645), + [anon_sym_set] = ACTIONS(645), + [sym__automatic_semicolon] = ACTIONS(651), + [sym__ternary_qmark] = ACTIONS(649), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(85)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(789), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1436), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_spread_element] = STATE(1339), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1299), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1340), + [aux_sym_array_pattern_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), [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), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), [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), + [STATE(86)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(789), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1436), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_spread_element] = STATE(1339), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1299), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1340), + [aux_sym_array_pattern_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_RBRACK] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), [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), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), [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), + [STATE(87)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(789), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1436), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_spread_element] = STATE(1339), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1299), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1340), + [aux_sym_array_pattern_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), [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), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), [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), + [STATE(88)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(792), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1436), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_spread_element] = STATE(1442), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1299), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1452), + [aux_sym_array_pattern_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), [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), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), [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), + [STATE(89)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(789), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1436), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_spread_element] = STATE(1339), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1299), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1340), + [aux_sym_array_pattern_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_RBRACK] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), [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), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), [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), + [STATE(90)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(789), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1436), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_spread_element] = STATE(1339), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1299), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1340), + [aux_sym_array_pattern_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_RBRACK] = ACTIONS(675), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), [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), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), [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), + [STATE(91)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(796), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1436), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_spread_element] = STATE(1442), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1299), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1452), + [aux_sym_array_pattern_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_COMMA] = ACTIONS(657), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_RBRACK] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), [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), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), [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), + [STATE(92)] = { + [sym_declaration] = STATE(410), + [sym_import] = STATE(1160), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(833), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1311), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), + [anon_sym_let] = ACTIONS(677), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), @@ -17753,7 +19366,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(637), + [anon_sym_async] = ACTIONS(679), [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), @@ -17777,61 +19390,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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(93)] = { + [sym_declaration] = STATE(1659), + [sym_import] = STATE(1160), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(824), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1251), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(681), + [anon_sym_const] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -17839,9 +19452,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(639), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(683), + [anon_sym_function] = ACTIONS(385), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -17864,61 +19477,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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), + [STATE(94)] = { + [sym_declaration] = STATE(1653), + [sym_import] = STATE(1160), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(839), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(1624), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(1624), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(1624), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1251), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(681), + [anon_sym_const] = ACTIONS(355), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -17926,9 +19539,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(65), - [anon_sym_async] = ACTIONS(637), - [anon_sym_function] = ACTIONS(69), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(683), + [anon_sym_function] = ACTIONS(385), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -17951,60 +19564,60 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(95)] = { + [sym_declaration] = STATE(404), + [sym_import] = STATE(1160), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(843), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_class_declaration] = STATE(430), + [sym_function_expression] = STATE(636), + [sym_function_declaration] = STATE(430), + [sym_generator_function] = STATE(636), + [sym_generator_function_declaration] = STATE(430), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1311), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), + [anon_sym_let] = ACTIONS(677), [anon_sym_const] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), @@ -18013,9 +19626,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(639), - [anon_sym_function] = ACTIONS(343), + [anon_sym_class] = ACTIONS(65), + [anon_sym_async] = ACTIONS(679), + [anon_sym_function] = ACTIONS(69), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -18038,1921 +19651,2343 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(96)] = { + [sym_import] = STATE(1141), + [sym_variable_declaration] = STATE(124), + [sym_lexical_declaration] = STATE(124), + [sym_empty_statement] = STATE(124), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(820), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1437), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1437), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1437), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1871), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(685), + [anon_sym_export] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_import] = ACTIONS(399), + [anon_sym_var] = ACTIONS(691), + [anon_sym_let] = ACTIONS(693), + [anon_sym_const] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(401), [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), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(701), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), [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), + [STATE(97)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1436), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1299), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_pattern_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), [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), + [STATE(98)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1436), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(510), + [sym_subscript_expression] = STATE(510), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1299), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_pattern_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(721), + [anon_sym_export] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(727), + [anon_sym_RBRACK] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(729), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(731), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_static] = ACTIONS(723), + [anon_sym_get] = ACTIONS(723), + [anon_sym_set] = ACTIONS(723), [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), + [STATE(99)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(861), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1436), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(510), + [sym_subscript_expression] = STATE(510), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1299), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_pattern_repeat1] = STATE(1454), + [sym_identifier] = ACTIONS(721), + [anon_sym_export] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(723), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(727), + [anon_sym_RBRACK] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(729), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(731), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(723), + [anon_sym_get] = ACTIONS(723), + [anon_sym_set] = ACTIONS(723), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(100)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(806), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1686), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_spread_element] = STATE(1427), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1431), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_RBRACK] = ACTIONS(733), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), [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), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), [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), + [STATE(101)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1338), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), [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), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1241), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), [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_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(709), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(682), - [anon_sym_get] = ACTIONS(682), - [anon_sym_set] = ACTIONS(682), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), [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), + [STATE(102)] = { + [sym_import] = STATE(1141), + [sym_variable_declaration] = STATE(122), + [sym_lexical_declaration] = STATE(122), + [sym_empty_statement] = STATE(122), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(802), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1437), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1437), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1437), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1880), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(685), + [anon_sym_export] = ACTIONS(687), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_import] = ACTIONS(399), + [anon_sym_var] = ACTIONS(691), + [anon_sym_let] = ACTIONS(693), + [anon_sym_const] = ACTIONS(695), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(701), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), [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), + [STATE(103)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1686), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1431), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), [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), + [STATE(104)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(798), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1461), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1902), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1274), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), [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), + [STATE(105)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(813), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1461), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1912), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1274), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), [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), + [STATE(106)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1823), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1457), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), [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), + [STATE(107)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(814), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_spread_element] = STATE(1391), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1392), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(108)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(815), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_spread_element] = STATE(1400), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1401), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(109)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1461), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1274), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), [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), + [STATE(110)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(817), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_spread_element] = STATE(1370), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(111)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1823), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1457), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), [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), + [STATE(112)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1337), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1328), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), [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), + [STATE(113)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(806), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_spread_element] = STATE(1427), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(114)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(784), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_spread_element] = STATE(1360), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [aux_sym_array_repeat1] = STATE(1361), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(744), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(115)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1823), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1457), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), [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), + [STATE(116)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1823), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1457), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), [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), + [STATE(117)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1823), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1457), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(118)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1235), + [sym_assignment_pattern] = STATE(1518), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1235), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1235), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [sym_pattern] = STATE(1372), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(703), + [anon_sym_export] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(705), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(715), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(719), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(705), + [anon_sym_get] = ACTIONS(705), + [anon_sym_set] = ACTIONS(705), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(119)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(812), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_spread_element] = STATE(1911), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1911), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(120)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(851), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1211), + [sym_assignment_pattern] = STATE(1518), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1211), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1211), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [sym_pattern] = STATE(1372), + [sym_rest_pattern] = STATE(1190), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(653), + [anon_sym_export] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(663), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(665), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(655), + [anon_sym_get] = ACTIONS(655), + [anon_sym_set] = ACTIONS(655), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(121)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(791), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_spread_element] = STATE(1886), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1886), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(121), - [sym_parenthesized_expression] = STATE(443), + [STATE(122)] = { + [sym_import] = STATE(1141), + [sym_empty_statement] = STATE(136), + [sym_parenthesized_expression] = STATE(465), [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), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1895), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), [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), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(123)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(726), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1698), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(718), + [anon_sym_SEMI] = ACTIONS(770), [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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -19975,2550 +22010,1515 @@ 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), + [anon_sym_static] = ACTIONS(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), + [sym__automatic_semicolon] = ACTIONS(770), [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), + [STATE(124)] = { + [sym_import] = STATE(1141), + [sym_empty_statement] = STATE(130), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(819), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1875), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), [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), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(125)] = { + [sym_import] = STATE(1141), + [sym_empty_statement] = STATE(135), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(804), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1953), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), [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), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(126)] = { + [sym_import] = STATE(1141), + [sym_empty_statement] = STATE(139), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(787), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1920), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), [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), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_import] = STATE(1272), + [STATE(127)] = { + [sym_import] = STATE(1160), [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_expression] = STATE(712), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), [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), - [sym_html_comment] = ACTIONS(5), - }, - [116] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [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_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1766), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(772), + [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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), + [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), - }, - [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), + [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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), + [sym__automatic_semicolon] = ACTIONS(772), [sym_html_comment] = ACTIONS(5), }, - [127] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(560), - [sym_parenthesized_expression] = STATE(430), + [STATE(128)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), [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_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1955), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(129)] = { + [sym_namespace_export] = STATE(1696), + [sym_export_clause] = STATE(1256), + [sym_declaration] = STATE(436), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_class_declaration] = STATE(430), + [sym_function_declaration] = STATE(430), + [sym_generator_function_declaration] = STATE(430), + [sym_decorator] = STATE(1420), + [aux_sym_export_statement_repeat1] = STATE(1263), + [aux_sym_object_repeat1] = STATE(1346), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_default] = ACTIONS(778), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_var] = ACTIONS(786), + [anon_sym_let] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_class] = ACTIONS(800), + [anon_sym_async] = ACTIONS(802), + [anon_sym_function] = ACTIONS(804), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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), + [STATE(130)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(800), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1940), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(131)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(511), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1428), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1428), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(511), + [sym_subscript_expression] = STATE(511), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1428), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(814), + [anon_sym_export] = ACTIONS(816), + [anon_sym_LBRACE] = ACTIONS(689), + [anon_sym_import] = ACTIONS(399), + [anon_sym_var] = ACTIONS(818), + [anon_sym_let] = ACTIONS(820), + [anon_sym_const] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(824), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(826), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(816), + [anon_sym_get] = ACTIONS(816), + [anon_sym_set] = ACTIONS(816), [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), + [STATE(132)] = { + [sym_namespace_export] = STATE(1696), + [sym_export_clause] = STATE(1256), + [sym_declaration] = STATE(436), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_class_declaration] = STATE(430), + [sym_function_declaration] = STATE(430), + [sym_generator_function_declaration] = STATE(430), + [sym_decorator] = STATE(1420), + [aux_sym_export_statement_repeat1] = STATE(1263), + [aux_sym_object_repeat1] = STATE(1440), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_default] = ACTIONS(778), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_var] = ACTIONS(786), + [anon_sym_let] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_class] = ACTIONS(800), + [anon_sym_async] = ACTIONS(802), + [anon_sym_function] = ACTIONS(804), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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), + [STATE(133)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1878), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(134)] = { + [sym_namespace_export] = STATE(1696), + [sym_export_clause] = STATE(1256), + [sym_declaration] = STATE(436), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_class_declaration] = STATE(430), + [sym_function_declaration] = STATE(430), + [sym_generator_function_declaration] = STATE(430), + [sym_decorator] = STATE(1420), + [aux_sym_export_statement_repeat1] = STATE(1263), + [aux_sym_object_repeat1] = STATE(1346), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_default] = ACTIONS(778), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_var] = ACTIONS(786), + [anon_sym_let] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_class] = ACTIONS(800), + [anon_sym_async] = ACTIONS(802), + [anon_sym_function] = ACTIONS(804), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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), + [STATE(135)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1901), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(136)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(805), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1915), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(137)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(779), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1965), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(838), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(796), - [anon_sym_get] = ACTIONS(796), - [anon_sym_set] = ACTIONS(796), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(138)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(808), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1924), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(840), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(139)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(810), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1960), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(842), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(140)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(593), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(884), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), + [STATE(141)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(807), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1949), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(142)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(707), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(769), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -22526,9 +23526,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -22551,214 +23551,614 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(143)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(486), + [sym_expression] = STATE(889), + [sym_primary_expression] = STATE(563), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(486), + [sym_subscript_expression] = STATE(486), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DOT] = ACTIONS(852), [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(455), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), [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), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(511), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(856), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), [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), + [STATE(144)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(785), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1908), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(145)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(579), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(146)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(816), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1897), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(147)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(793), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1906), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(148)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(821), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1928), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(149)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(514), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DOT] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), + [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(150)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(708), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(774), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -22766,9 +24166,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -22791,54 +24191,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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(151)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(688), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(711), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -22846,9 +24246,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -22871,134 +24271,774 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(152)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(795), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1887), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(153)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(585), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(661), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(154)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(590), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(679), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(155)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(797), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1882), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(156)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(598), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(649), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(157)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(593), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(650), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(158)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(572), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(655), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(159)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(801), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1909), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(160)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(781), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1904), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(161)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(721), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1771), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -23006,9 +25046,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -23031,694 +25071,694 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(162)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(803), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1900), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(163)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(727), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_sequence_expression] = STATE(1699), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), + [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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(164)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(514), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DOT] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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(165)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(689), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(777), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), + [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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(166)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1939), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(167)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(707), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(734), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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), + [STATE(168)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(788), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1881), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(169)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(688), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(750), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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), - }, - [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), - [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), - }, - [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), - [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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), + [STATE(170)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(698), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(720), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -23726,9 +25766,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -23751,1493 +25791,1414 @@ 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), - }, - [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), - [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), - }, - [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), - [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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), - [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), - }, - [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), - [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), - }, - [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(171)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(579), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(822), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(172)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(689), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(751), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(59), [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_class] = ACTIONS(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(469), + [sym_private_property_identifier] = ACTIONS(483), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(173)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(698), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(752), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [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(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(483), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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), + [STATE(174)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(699), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(753), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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), + [anon_sym_class] = ACTIONS(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(483), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(175)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(778), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1956), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(176)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(585), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(836), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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(177)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(818), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1905), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(178)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(780), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1927), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(179)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(590), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(840), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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(180)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(598), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(837), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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(181)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(486), + [sym_expression] = STATE(889), + [sym_primary_expression] = STATE(563), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(486), + [sym_subscript_expression] = STATE(486), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(848), + [anon_sym_export] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(455), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(511), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(856), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_static] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), [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(182)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(593), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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(183)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(572), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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(184)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(579), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(865), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), + [STATE(185)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(585), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(868), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(186)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(590), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(882), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(187)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(598), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(883), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(188)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(699), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(722), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -25245,9 +27206,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -25270,211 +27231,373 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(189)] = { + [sym_import] = STATE(1141), + [sym_statement_block] = STATE(572), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(885), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(844), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(539), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(190)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(790), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_sequence_expression] = STATE(1944), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(191)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(514), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DOT] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), + [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(192)] = { + [sym_import] = STATE(1160), + [sym_statement_block] = STATE(708), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(730), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(483), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(193)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(694), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -25482,9 +27605,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -25507,53 +27630,369 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(194)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(864), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), + [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(195)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(848), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(196)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(850), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(197)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(888), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1176), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1176), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(499), + [sym_subscript_expression] = STATE(499), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1176), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(862), + [anon_sym_export] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(866), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(864), + [anon_sym_get] = ACTIONS(864), + [anon_sym_set] = ACTIONS(864), [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(198)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(717), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -25561,9 +28000,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -25586,132 +28025,132 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(199)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(851), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(200)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(729), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -25719,9 +28158,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -25744,53 +28183,132 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(201)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(856), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), + [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), }, - [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(202)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(690), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -25798,9 +28316,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -25823,53 +28341,53 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(203)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(770), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -25877,9 +28395,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -25902,132 +28420,211 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(204)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(573), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(205)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(574), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(206)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(771), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26035,9 +28632,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26060,53 +28657,53 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(207)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(719), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26114,9 +28711,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26139,53 +28736,211 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(208)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(659), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(209)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(857), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), + [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), }, - [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), + [STATE(210)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(718), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26193,9 +28948,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26218,53 +28973,132 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(211)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(680), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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), + [STATE(212)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(782), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26272,9 +29106,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26297,63 +29131,1248 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(213)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(662), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(214)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(663), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(215)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(216)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(666), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(217)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(667), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(218)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(668), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(219)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(669), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(220)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(670), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(221)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(671), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(222)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(672), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(223)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(673), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(224)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(225)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(675), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(226)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(676), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(227)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(678), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(228)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(759), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), + [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_class] = ACTIONS(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26376,53 +30395,132 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(229)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(859), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [anon_sym_PLUS_PLUS] = ACTIONS(535), + [anon_sym_DASH_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(539), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), + [STATE(230)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(738), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26430,9 +30528,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26455,53 +30553,53 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(231)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(723), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26509,9 +30607,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26534,53 +30632,53 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(232)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(758), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26588,9 +30686,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26613,53 +30711,53 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(233)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(761), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26667,9 +30765,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26692,53 +30790,53 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(234)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(725), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26746,9 +30844,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26771,53 +30869,132 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(235)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(652), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(236)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(728), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26825,9 +31002,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26850,53 +31027,53 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(237)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(776), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -26904,9 +31081,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -26929,132 +31106,53 @@ 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), - }, - [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), - [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_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(826), - [anon_sym_get] = ACTIONS(826), - [anon_sym_set] = ACTIONS(826), + [anon_sym_static] = ACTIONS(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(238)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(773), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -27062,9 +31160,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -27087,1554 +31185,53 @@ 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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(239)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(713), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -28642,9 +31239,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -28667,369 +31264,53 @@ 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), - }, - [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), - [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_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), - [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), - }, - [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), - [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), - }, - [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), - [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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(240)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(686), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -29037,9 +31318,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -29062,53 +31343,132 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(241)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(570), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(242)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(762), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -29116,9 +31476,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -29141,53 +31501,369 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(243)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(244)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(765), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_SQUOTE] = ACTIONS(63), + [anon_sym_class] = ACTIONS(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(81), + [sym_number] = ACTIONS(83), + [sym_private_property_identifier] = ACTIONS(483), + [sym_this] = ACTIONS(87), + [sym_super] = ACTIONS(87), + [sym_true] = ACTIONS(87), + [sym_false] = ACTIONS(87), + [sym_null] = ACTIONS(87), + [sym_undefined] = ACTIONS(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(245)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(573), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), + [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(246)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(574), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), + [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(247)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -29195,9 +31871,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -29220,132 +31896,211 @@ 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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(248)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(847), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), + [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(249)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(842), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [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), }, - [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(250)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(772), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [anon_sym_LPAREN] = ACTIONS(33), [anon_sym_await] = ACTIONS(37), [anon_sym_yield] = ACTIONS(55), @@ -29353,9 +32108,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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), [anon_sym_new] = ACTIONS(71), [anon_sym_PLUS] = ACTIONS(73), [anon_sym_DASH] = ACTIONS(73), @@ -29378,7530 +32133,7173 @@ 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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), + [anon_sym_static] = ACTIONS(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), + [STATE(251)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(844), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(252)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(853), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(253)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(849), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(254)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(255)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(845), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(256)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(852), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(257)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(828), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(258)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(825), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(259)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(830), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(260)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(846), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(261)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(841), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(262)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(827), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(263)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(829), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(264)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(831), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(265)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(838), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(834), - [anon_sym_get] = ACTIONS(834), - [anon_sym_set] = ACTIONS(834), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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), + [STATE(266)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(570), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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(267)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(799), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), [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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), + [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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [STATE(268)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(764), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1279), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1279), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(505), + [sym_subscript_expression] = STATE(505), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1279), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(870), + [anon_sym_export] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(876), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(872), + [anon_sym_get] = ACTIONS(872), + [anon_sym_set] = ACTIONS(872), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(269)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(756), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(270)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(686), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(271)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(731), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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), + [STATE(272)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(733), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(273)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(735), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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), - }, - [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), - [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(274)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(736), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(275)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(860), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [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), + [STATE(276)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(737), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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), + [STATE(277)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(739), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(278)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(740), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(279)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(741), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(280)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(742), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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), + [STATE(281)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(743), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(282)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(744), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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), + [STATE(283)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(745), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(284)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(746), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(285)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(747), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(286)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(748), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(287)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(749), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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), + [STATE(288)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(863), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(289)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(755), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(290)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(862), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [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), }, - [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(291)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(694), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), + [sym_private_property_identifier] = ACTIONS(483), [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(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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(292)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(500), + [sym_expression] = STATE(690), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1957), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1957), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(500), + [sym_subscript_expression] = STATE(500), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1957), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1780), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(463), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [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), + [anon_sym_class] = ACTIONS(455), + [anon_sym_async] = ACTIONS(471), + [anon_sym_function] = ACTIONS(459), + [anon_sym_new] = ACTIONS(473), + [anon_sym_PLUS] = ACTIONS(475), + [anon_sym_DASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(477), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_typeof] = ACTIONS(475), + [anon_sym_void] = ACTIONS(475), + [anon_sym_delete] = ACTIONS(475), + [anon_sym_PLUS_PLUS] = ACTIONS(481), + [anon_sym_DASH_DASH] = ACTIONS(481), [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(81), [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(483), [sym_this] = ACTIONS(87), [sym_super] = ACTIONS(87), [sym_true] = ACTIONS(87), [sym_false] = ACTIONS(87), [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), + [sym_undefined] = ACTIONS(485), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), [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), - [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(293)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(573), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), - [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(294)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(574), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), - [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(295)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(866), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), - [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(296)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(887), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), - [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(297)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(869), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(298)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(870), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(299)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(871), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(300)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(301)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(873), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(302)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(874), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), - [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(303)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(304)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(876), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(305)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(877), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(306)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(878), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(307)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(879), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(308)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(880), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(309)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(881), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), - [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(310)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(854), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), - [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(311)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(886), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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), - [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(312)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(512), + [sym_expression] = STATE(570), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1968), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1968), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(512), + [sym_subscript_expression] = STATE(512), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1051), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1968), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1856), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(515), + [anon_sym_export] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(521), + [anon_sym_yield] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(527), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_BANG] = ACTIONS(533), + [anon_sym_TILDE] = ACTIONS(533), + [anon_sym_typeof] = ACTIONS(529), + [anon_sym_void] = ACTIONS(529), + [anon_sym_delete] = ACTIONS(529), + [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(537), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [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(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), [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(313)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(465), + [sym_expression] = STATE(764), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1885), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1885), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(465), + [sym_subscript_expression] = STATE(465), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1040), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1885), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1842), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(389), + [anon_sym_export] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(403), + [anon_sym_yield] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(419), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_TILDE] = ACTIONS(429), + [anon_sym_typeof] = ACTIONS(425), + [anon_sym_void] = ACTIONS(425), + [anon_sym_delete] = ACTIONS(425), + [anon_sym_PLUS_PLUS] = ACTIONS(431), + [anon_sym_DASH_DASH] = ACTIONS(431), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(437), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(441), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), [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(314)] = { + [sym_import] = STATE(1141), + [sym_parenthesized_expression] = STATE(451), + [sym_expression] = STATE(867), + [sym_primary_expression] = STATE(513), + [sym_yield_expression] = STATE(591), + [sym_object] = STATE(525), + [sym_object_pattern] = STATE(1937), + [sym_array] = STATE(525), + [sym_array_pattern] = STATE(1937), + [sym_jsx_element] = STATE(591), + [sym_jsx_opening_element] = STATE(1064), + [sym_jsx_self_closing_element] = STATE(591), + [sym_class] = STATE(525), + [sym_function_expression] = STATE(525), + [sym_generator_function] = STATE(525), + [sym_arrow_function] = STATE(591), + [sym_call_expression] = STATE(525), + [sym_new_expression] = STATE(525), + [sym_await_expression] = STATE(591), + [sym_member_expression] = STATE(451), + [sym_subscript_expression] = STATE(451), + [sym_assignment_expression] = STATE(591), + [sym__augmented_assignment_lhs] = STATE(1052), + [sym_augmented_assignment_expression] = STATE(591), + [sym__destructuring_pattern] = STATE(1937), + [sym_ternary_expression] = STATE(591), + [sym_binary_expression] = STATE(591), + [sym_unary_expression] = STATE(591), + [sym_update_expression] = STATE(591), + [sym_string] = STATE(525), + [sym_template_string] = STATE(525), + [sym_regex] = STATE(525), + [sym_meta_property] = STATE(525), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1569), + [aux_sym_export_statement_repeat1] = STATE(1277), + [sym_identifier] = ACTIONS(487), + [anon_sym_export] = ACTIONS(489), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_import] = ACTIONS(399), + [anon_sym_let] = ACTIONS(489), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(499), + [anon_sym_LT] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(415), + [anon_sym_class] = ACTIONS(417), + [anon_sym_async] = ACTIONS(501), + [anon_sym_function] = ACTIONS(421), + [anon_sym_new] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(505), + [anon_sym_DASH] = ACTIONS(505), + [anon_sym_SLASH] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(505), + [anon_sym_void] = ACTIONS(505), + [anon_sym_delete] = ACTIONS(505), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), [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(433), + [sym_number] = ACTIONS(435), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(439), + [sym_super] = ACTIONS(439), + [sym_true] = ACTIONS(439), + [sym_false] = ACTIONS(439), + [sym_null] = ACTIONS(439), + [sym_undefined] = ACTIONS(513), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_static] = ACTIONS(489), + [anon_sym_get] = ACTIONS(489), + [anon_sym_set] = ACTIONS(489), [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(315)] = { + [sym_import] = STATE(1160), + [sym_parenthesized_expression] = STATE(501), + [sym_expression] = STATE(768), + [sym_primary_expression] = STATE(562), + [sym_yield_expression] = STATE(681), + [sym_object] = STATE(636), + [sym_object_pattern] = STATE(1962), + [sym_array] = STATE(636), + [sym_array_pattern] = STATE(1962), + [sym_jsx_element] = STATE(681), + [sym_jsx_opening_element] = STATE(1062), + [sym_jsx_self_closing_element] = STATE(681), + [sym_class] = STATE(636), + [sym_function_expression] = STATE(636), + [sym_generator_function] = STATE(636), + [sym_arrow_function] = STATE(681), + [sym_call_expression] = STATE(636), + [sym_new_expression] = STATE(636), + [sym_await_expression] = STATE(681), + [sym_member_expression] = STATE(501), + [sym_subscript_expression] = STATE(501), + [sym_assignment_expression] = STATE(681), + [sym__augmented_assignment_lhs] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(681), + [sym__destructuring_pattern] = STATE(1962), + [sym_ternary_expression] = STATE(681), + [sym_binary_expression] = STATE(681), + [sym_unary_expression] = STATE(681), + [sym_update_expression] = STATE(681), + [sym_string] = STATE(636), + [sym_template_string] = STATE(636), + [sym_regex] = STATE(636), + [sym_meta_property] = STATE(636), + [sym_decorator] = STATE(1420), + [sym_formal_parameters] = STATE(1772), + [aux_sym_export_statement_repeat1] = STATE(1239), + [sym_identifier] = ACTIONS(443), + [anon_sym_export] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_import] = ACTIONS(451), + [anon_sym_let] = ACTIONS(445), + [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(455), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(459), + [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), - [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(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(445), + [anon_sym_get] = ACTIONS(445), + [anon_sym_set] = ACTIONS(445), [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(316)] = { + [sym_namespace_export] = STATE(1661), + [sym_export_clause] = STATE(1260), + [sym_declaration] = STATE(1543), + [sym_variable_declaration] = STATE(1624), + [sym_lexical_declaration] = STATE(1624), + [sym_class_declaration] = STATE(1624), + [sym_function_declaration] = STATE(1624), + [sym_generator_function_declaration] = STATE(1624), + [sym_decorator] = STATE(1420), + [aux_sym_export_statement_repeat1] = STATE(1272), + [anon_sym_STAR] = ACTIONS(878), + [anon_sym_default] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_var] = ACTIONS(882), + [anon_sym_let] = ACTIONS(884), + [anon_sym_const] = ACTIONS(884), + [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(886), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_class] = ACTIONS(890), + [anon_sym_async] = ACTIONS(892), + [anon_sym_function] = ACTIONS(894), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(782), [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(317)] = { + [sym_string] = STATE(1833), + [sym_formal_parameters] = STATE(1604), + [sym__property_name] = STATE(1833), + [sym_computed_property_name] = STATE(1833), + [aux_sym_object_repeat1] = STATE(1346), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(896), + [anon_sym_export] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_let] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(914), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [sym_number] = ACTIONS(916), + [sym_private_property_identifier] = ACTIONS(916), + [anon_sym_static] = ACTIONS(898), + [anon_sym_get] = ACTIONS(918), + [anon_sym_set] = ACTIONS(918), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(318)] = { + [sym_namespace_export] = STATE(1696), + [sym_export_clause] = STATE(1256), + [sym_declaration] = STATE(436), + [sym_variable_declaration] = STATE(430), + [sym_lexical_declaration] = STATE(430), + [sym_class_declaration] = STATE(430), + [sym_function_declaration] = STATE(430), + [sym_generator_function_declaration] = STATE(430), + [sym_decorator] = STATE(1420), + [aux_sym_export_statement_repeat1] = STATE(1263), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_default] = ACTIONS(778), + [anon_sym_LBRACE] = ACTIONS(780), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_var] = ACTIONS(786), + [anon_sym_let] = ACTIONS(788), + [anon_sym_const] = ACTIONS(788), + [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_class] = ACTIONS(800), + [anon_sym_async] = ACTIONS(802), + [anon_sym_function] = ACTIONS(804), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(782), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_AT] = ACTIONS(91), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(319)] = { + [sym_string] = STATE(1833), + [sym_formal_parameters] = STATE(1604), + [sym__property_name] = STATE(1833), + [sym_computed_property_name] = STATE(1833), + [aux_sym_object_repeat1] = STATE(1440), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(896), + [anon_sym_export] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_let] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(914), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(782), + [sym_number] = ACTIONS(916), + [sym_private_property_identifier] = ACTIONS(916), + [anon_sym_static] = ACTIONS(898), + [anon_sym_get] = ACTIONS(918), + [anon_sym_set] = ACTIONS(918), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(320)] = { + [sym_string] = STATE(1833), + [sym_formal_parameters] = STATE(1604), + [sym__property_name] = STATE(1833), + [sym_computed_property_name] = STATE(1833), + [aux_sym_object_repeat1] = STATE(1346), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(896), + [anon_sym_export] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_let] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_async] = ACTIONS(898), + [anon_sym_function] = ACTIONS(914), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [sym_number] = ACTIONS(916), + [sym_private_property_identifier] = ACTIONS(916), + [anon_sym_static] = ACTIONS(898), + [anon_sym_get] = ACTIONS(918), + [anon_sym_set] = ACTIONS(918), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(321)] = { + [sym_string] = STATE(1833), + [sym__property_name] = STATE(1833), + [sym_computed_property_name] = STATE(1833), + [aux_sym_object_repeat1] = STATE(1346), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(922), + [anon_sym_export] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_let] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_async] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [sym_number] = ACTIONS(916), + [sym_private_property_identifier] = ACTIONS(916), + [anon_sym_static] = ACTIONS(922), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(322)] = { + [sym_string] = STATE(1833), + [sym__property_name] = STATE(1833), + [sym_computed_property_name] = STATE(1833), + [aux_sym_object_repeat1] = STATE(1346), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(922), + [anon_sym_export] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_let] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_async] = ACTIONS(922), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [sym_number] = ACTIONS(916), + [sym_private_property_identifier] = ACTIONS(916), + [anon_sym_static] = ACTIONS(922), + [anon_sym_get] = ACTIONS(922), + [anon_sym_set] = ACTIONS(922), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(323)] = { + [sym_string] = STATE(1833), + [sym__property_name] = STATE(1833), + [sym_computed_property_name] = STATE(1833), + [aux_sym_object_repeat1] = STATE(1440), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(922), + [anon_sym_export] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_let] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_async] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [sym_number] = ACTIONS(916), + [sym_private_property_identifier] = ACTIONS(916), + [anon_sym_static] = ACTIONS(922), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(324)] = { + [sym_string] = STATE(1833), + [sym__property_name] = STATE(1833), + [sym_computed_property_name] = STATE(1833), + [aux_sym_object_repeat1] = STATE(1346), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(922), + [anon_sym_export] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_let] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_async] = ACTIONS(922), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [sym_number] = ACTIONS(916), + [sym_private_property_identifier] = ACTIONS(916), + [anon_sym_static] = ACTIONS(922), + [anon_sym_get] = ACTIONS(922), + [anon_sym_set] = ACTIONS(922), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(325)] = { + [sym_string] = STATE(1833), + [sym__property_name] = STATE(1833), + [sym_computed_property_name] = STATE(1833), + [aux_sym_object_repeat1] = STATE(1346), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(922), + [anon_sym_export] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_let] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_async] = ACTIONS(924), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [sym_number] = ACTIONS(916), + [sym_private_property_identifier] = ACTIONS(916), + [anon_sym_static] = ACTIONS(922), + [anon_sym_get] = ACTIONS(926), + [anon_sym_set] = ACTIONS(926), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(326)] = { + [sym_string] = STATE(1833), + [sym__property_name] = STATE(1833), + [sym_computed_property_name] = STATE(1833), + [aux_sym_object_repeat1] = STATE(1440), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(922), + [anon_sym_export] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_let] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(912), + [anon_sym_async] = ACTIONS(922), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [sym_number] = ACTIONS(916), + [sym_private_property_identifier] = ACTIONS(916), + [anon_sym_static] = ACTIONS(922), + [anon_sym_get] = ACTIONS(922), + [anon_sym_set] = ACTIONS(922), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(327)] = { + [sym_formal_parameters] = STATE(1588), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_let] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_of] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(782), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(930), + [anon_sym_function] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(939), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_static] = ACTIONS(930), + [anon_sym_get] = ACTIONS(930), + [anon_sym_set] = ACTIONS(930), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(941), [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(328)] = { + [sym_formal_parameters] = STATE(1528), + [sym_identifier] = ACTIONS(943), + [anon_sym_export] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_let] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_RPAREN] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(782), + [anon_sym_EQ] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(939), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_static] = ACTIONS(945), + [anon_sym_get] = ACTIONS(945), + [anon_sym_set] = ACTIONS(945), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(949), [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(329)] = { + [sym_formal_parameters] = STATE(1588), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_let] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_of] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(930), + [anon_sym_function] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(939), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_static] = ACTIONS(930), + [anon_sym_get] = ACTIONS(930), + [anon_sym_set] = ACTIONS(930), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(941), [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(330)] = { + [sym_formal_parameters] = STATE(1588), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_let] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_in] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(930), + [anon_sym_function] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(939), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(782), + [anon_sym_static] = ACTIONS(930), + [anon_sym_get] = ACTIONS(930), + [anon_sym_set] = ACTIONS(930), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(941), [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(331)] = { + [sym_formal_parameters] = STATE(1604), + [sym_identifier] = ACTIONS(955), + [anon_sym_export] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_let] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(886), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(957), + [anon_sym_function] = ACTIONS(959), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(782), + [anon_sym_static] = ACTIONS(957), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(957), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(332)] = { + [sym_variable_declarator] = STATE(1318), + [sym_object_pattern] = STATE(1210), + [sym_array_pattern] = STATE(1210), + [sym__destructuring_pattern] = STATE(1210), + [aux_sym_object_repeat1] = STATE(1346), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(782), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(333)] = { + [sym_formal_parameters] = STATE(1604), + [sym_identifier] = ACTIONS(955), + [anon_sym_export] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_let] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(957), + [anon_sym_function] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_static] = ACTIONS(957), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(957), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(334)] = { + [sym_formal_parameters] = STATE(1528), + [sym_identifier] = ACTIONS(943), + [anon_sym_export] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_let] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_in] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(939), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_static] = ACTIONS(945), + [anon_sym_get] = ACTIONS(945), + [anon_sym_set] = ACTIONS(945), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(949), [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(335)] = { + [sym_variable_declarator] = STATE(1318), + [sym_object_pattern] = STATE(1210), + [sym_array_pattern] = STATE(1210), + [sym__destructuring_pattern] = STATE(1210), + [aux_sym_object_repeat1] = STATE(1440), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(336)] = { + [sym_variable_declarator] = STATE(1318), + [sym_object_pattern] = STATE(1210), + [sym_array_pattern] = STATE(1210), + [sym__destructuring_pattern] = STATE(1210), + [aux_sym_object_repeat1] = STATE(1346), + [aux_sym_object_pattern_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(337)] = { + [sym_formal_parameters] = STATE(1604), + [sym_identifier] = ACTIONS(955), + [anon_sym_export] = ACTIONS(957), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_let] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_COLON] = ACTIONS(920), + [anon_sym_EQ] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(957), + [anon_sym_function] = ACTIONS(914), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_static] = ACTIONS(957), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(957), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(810), [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(338)] = { + [sym_formal_parameters] = STATE(1787), + [sym_identifier] = ACTIONS(973), + [anon_sym_export] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_let] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(793), + [anon_sym_of] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(806), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_static] = ACTIONS(975), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(975), + [sym__automatic_semicolon] = ACTIONS(782), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(979), [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(339)] = { + [sym_formal_parameters] = STATE(1588), + [sym_identifier] = ACTIONS(928), + [anon_sym_export] = ACTIONS(930), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_let] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_in] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(930), + [anon_sym_function] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(939), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_static] = ACTIONS(930), + [anon_sym_get] = ACTIONS(930), + [anon_sym_set] = ACTIONS(930), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(941), [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(340)] = { + [sym_formal_parameters] = STATE(1528), + [sym_identifier] = ACTIONS(943), + [anon_sym_export] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_let] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_in] = ACTIONS(793), + [anon_sym_EQ] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_RBRACK] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(939), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_static] = ACTIONS(945), + [anon_sym_get] = ACTIONS(945), + [anon_sym_set] = ACTIONS(945), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(949), [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(341)] = { + [sym_formal_parameters] = STATE(1528), + [sym_identifier] = ACTIONS(943), + [anon_sym_export] = ACTIONS(945), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_COMMA] = ACTIONS(782), + [anon_sym_let] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(989), + [anon_sym_of] = ACTIONS(992), + [anon_sym_EQ] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(793), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_async] = ACTIONS(945), + [anon_sym_function] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(939), + [sym_optional_chain] = ACTIONS(782), + [anon_sym_PLUS_EQ] = ACTIONS(808), + [anon_sym_DASH_EQ] = ACTIONS(808), + [anon_sym_STAR_EQ] = ACTIONS(808), + [anon_sym_SLASH_EQ] = ACTIONS(808), + [anon_sym_PERCENT_EQ] = ACTIONS(808), + [anon_sym_CARET_EQ] = ACTIONS(808), + [anon_sym_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_EQ] = ACTIONS(808), + [anon_sym_GT_GT_EQ] = ACTIONS(808), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(808), + [anon_sym_LT_LT_EQ] = ACTIONS(808), + [anon_sym_STAR_STAR_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP_EQ] = ACTIONS(808), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(808), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(793), + [anon_sym_PIPE_PIPE] = ACTIONS(793), + [anon_sym_GT_GT] = ACTIONS(793), + [anon_sym_GT_GT_GT] = ACTIONS(793), + [anon_sym_LT_LT] = ACTIONS(793), + [anon_sym_AMP] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_PERCENT] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(782), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_EQ_EQ_EQ] = ACTIONS(782), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ_EQ] = ACTIONS(782), + [anon_sym_GT_EQ] = ACTIONS(782), + [anon_sym_QMARK_QMARK] = ACTIONS(793), + [anon_sym_instanceof] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [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(782), + [anon_sym_static] = ACTIONS(945), + [anon_sym_get] = ACTIONS(945), + [anon_sym_set] = ACTIONS(945), + [sym__ternary_qmark] = ACTIONS(782), + [sym__shorthand_arrow] = ACTIONS(949), [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(342)] = { + [sym_catch_clause] = STATE(350), + [sym_finally_clause] = STATE(412), + [ts_builtin_sym_end] = ACTIONS(994), + [sym_identifier] = ACTIONS(996), + [anon_sym_export] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_import] = ACTIONS(996), + [anon_sym_with] = ACTIONS(996), + [anon_sym_var] = ACTIONS(996), + [anon_sym_let] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_else] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_switch] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_await] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_debugger] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_throw] = ACTIONS(996), + [anon_sym_case] = ACTIONS(996), + [anon_sym_catch] = ACTIONS(998), + [anon_sym_finally] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_LT] = ACTIONS(994), + [anon_sym_DQUOTE] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(994), + [anon_sym_class] = ACTIONS(996), + [anon_sym_async] = ACTIONS(996), + [anon_sym_function] = ACTIONS(996), + [anon_sym_new] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_typeof] = ACTIONS(996), + [anon_sym_void] = ACTIONS(996), + [anon_sym_delete] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(994), + [anon_sym_DASH_DASH] = ACTIONS(994), [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(994), + [sym_number] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(994), + [sym_this] = ACTIONS(996), + [sym_super] = ACTIONS(996), + [sym_true] = ACTIONS(996), + [sym_false] = ACTIONS(996), + [sym_null] = ACTIONS(996), + [sym_undefined] = ACTIONS(996), + [anon_sym_AT] = ACTIONS(994), + [anon_sym_static] = ACTIONS(996), + [anon_sym_get] = ACTIONS(996), + [anon_sym_set] = ACTIONS(996), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 12, + ACTIONS(806), 1, + anon_sym_EQ_GT, + ACTIONS(810), 1, + sym__shorthand_arrow, + ACTIONS(888), 1, + anon_sym_EQ, + ACTIONS(932), 1, + anon_sym_LPAREN, + ACTIONS(955), 1, + sym_identifier, + ACTIONS(959), 1, + anon_sym_function, + STATE(1604), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(499), 18, + ACTIONS(957), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(782), 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(808), 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(793), 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(1002), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(551), 17, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -36917,7 +39315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(501), 44, + ACTIONS(553), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -36962,14 +39360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [71] = 3, + [162] = 4, + ACTIONS(571), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(519), 18, + ACTIONS(545), 17, ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -36985,7 +39384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(521), 44, + ACTIONS(547), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37030,36 +39429,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [142] = 13, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(885), 1, + [235] = 12, + ACTIONS(806), 1, + anon_sym_EQ_GT, + ACTIONS(810), 1, + sym__shorthand_arrow, + ACTIONS(888), 1, anon_sym_EQ, - ACTIONS(887), 1, + ACTIONS(914), 1, anon_sym_function, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - STATE(1707), 1, + ACTIONS(932), 1, + anon_sym_LPAREN, + ACTIONS(955), 1, + sym_identifier, + STATE(1604), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(880), 6, + ACTIONS(957), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(764), 13, + ACTIONS(782), 13, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -37071,7 +39468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37087,8 +39484,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(793), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -37108,34 +39506,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [233] = 12, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(882), 1, + [324] = 14, + ACTIONS(932), 1, anon_sym_LPAREN, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(887), 1, + ACTIONS(937), 1, anon_sym_function, - ACTIONS(889), 1, + ACTIONS(939), 1, anon_sym_EQ_GT, - STATE(1707), 1, + ACTIONS(943), 1, + sym_identifier, + ACTIONS(949), 1, + sym__shorthand_arrow, + ACTIONS(967), 1, + anon_sym_RBRACK, + ACTIONS(970), 1, + anon_sym_EQ, + ACTIONS(981), 1, + anon_sym_COMMA, + STATE(1528), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(949), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(880), 6, + ACTIONS(945), 6, anon_sym_export, anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(764), 11, + ACTIONS(782), 11, sym__ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, @@ -37147,7 +39547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37163,7 +39563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + ACTIONS(793), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37185,48 +39585,115 @@ static const uint16_t ts_small_parse_table[] = { 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, + [417] = 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), 11, - sym__ternary_qmark, + ACTIONS(551), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(553), 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, + [487] = 13, + ACTIONS(806), 1, + anon_sym_EQ_GT, + ACTIONS(810), 1, + sym__shorthand_arrow, + ACTIONS(886), 1, + anon_sym_COLON, + ACTIONS(888), 1, + anon_sym_EQ, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(965), 1, + anon_sym_LBRACK, + STATE(1295), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1210), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(782), 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(808), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -37240,7 +39707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + ACTIONS(793), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37262,34 +39729,105 @@ static const uint16_t ts_small_parse_table[] = { 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, + [577] = 5, + ACTIONS(1000), 1, + anon_sym_finally, + STATE(392), 1, + sym_finally_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(925), 6, + ACTIONS(1004), 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(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, - ACTIONS(764), 13, - sym__ternary_qmark, - anon_sym_LBRACE, + [651] = 13, + ACTIONS(806), 1, + anon_sym_EQ_GT, + ACTIONS(810), 1, + sym__shorthand_arrow, + ACTIONS(888), 1, + anon_sym_EQ, + ACTIONS(920), 1, anon_sym_COLON, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(965), 1, anon_sym_LBRACK, + STATE(1318), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1210), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(782), 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, @@ -37299,7 +39837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37315,7 +39853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + ACTIONS(793), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37337,33 +39875,37 @@ static const uint16_t ts_small_parse_table[] = { 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, + [741] = 14, + ACTIONS(928), 1, sym_identifier, - STATE(1633), 1, + ACTIONS(932), 1, + anon_sym_LPAREN, + ACTIONS(935), 1, + anon_sym_EQ, + ACTIONS(937), 1, + anon_sym_function, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(941), 1, + sym__shorthand_arrow, + ACTIONS(989), 1, + anon_sym_in, + ACTIONS(992), 1, + anon_sym_of, + STATE(1588), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(909), 6, + ACTIONS(930), 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(782), 11, sym__ternary_qmark, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -37374,7 +39916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37390,9 +39932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + ACTIONS(793), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -37412,15 +39953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [584] = 5, - ACTIONS(940), 1, - anon_sym_finally, - STATE(375), 1, - sym_finally_clause, + [833] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(952), 17, + ACTIONS(555), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37438,7 +39975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(954), 42, + ACTIONS(557), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37460,6 +39997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_catch, + anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -37481,33 +40020,33 @@ static const uint16_t ts_small_parse_table[] = { 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, + [903] = 12, + ACTIONS(932), 1, anon_sym_LPAREN, - ACTIONS(907), 1, - sym_identifier, - ACTIONS(911), 1, + ACTIONS(937), 1, anon_sym_function, - STATE(1633), 1, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(1008), 1, + sym_identifier, + ACTIONS(1012), 1, + anon_sym_EQ, + ACTIONS(1014), 1, + sym__shorthand_arrow, + STATE(1859), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(909), 6, + ACTIONS(1010), 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(782), 11, sym__ternary_qmark, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -37518,7 +40057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37534,9 +40073,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + ACTIONS(793), 22, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -37556,80 +40096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [744] = 4, - ACTIONS(956), 1, - sym__automatic_semicolon, + [991] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(503), 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(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, + ACTIONS(561), 18, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(499), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37647,7 +40119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(501), 42, + ACTIONS(563), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37690,12 +40162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [886] = 3, + [1060] = 4, + ACTIONS(1016), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(499), 18, - sym__automatic_semicolon, + ACTIONS(551), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37713,7 +40186,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(501), 42, + ACTIONS(553), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37756,13 +40229,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [955] = 4, - ACTIONS(539), 1, + [1131] = 4, + ACTIONS(641), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(531), 17, + ACTIONS(633), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37780,7 +40253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(533), 42, + ACTIONS(635), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37823,17 +40296,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1026] = 3, + [1202] = 5, + ACTIONS(1022), 1, + anon_sym_else, + STATE(439), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(960), 18, + ACTIONS(1018), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LT, anon_sym_DQUOTE, @@ -37846,7 +40322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(962), 42, + ACTIONS(1020), 41, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37854,7 +40330,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -37889,84 +40364,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1095] = 3, + [1275] = 14, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(947), 1, + anon_sym_EQ, + ACTIONS(949), 1, + sym__shorthand_arrow, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(965), 1, + anon_sym_LBRACK, + ACTIONS(989), 1, + anon_sym_in, + ACTIONS(992), 1, + anon_sym_of, + ACTIONS(1024), 1, + sym_identifier, + STATE(1318), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(519), 18, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(1109), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(782), 13, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(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, + ACTIONS(808), 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(793), 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_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, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1366] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(541), 17, + ACTIONS(1026), 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, @@ -37979,7 +40464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(543), 42, + ACTIONS(1028), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38022,11 +40507,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1235] = 3, + [1435] = 4, + ACTIONS(611), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(964), 17, + ACTIONS(603), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38044,7 +40531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(966), 43, + ACTIONS(605), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38066,7 +40553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -38088,166 +40574,13 @@ static const uint16_t ts_small_parse_table[] = { 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_COLON, - ACTIONS(895), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - STATE(1260), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 14, + [1506] = 4, + ACTIONS(651), 1, 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(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_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, - 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_of, - 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), 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(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_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, - [1480] = 5, - ACTIONS(972), 1, - anon_sym_else, - STATE(404), 1, - sym_else_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(968), 17, + ACTIONS(643), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38265,7 +40598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(970), 41, + ACTIONS(645), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38273,6 +40606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -38307,11 +40641,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1553] = 3, + [1577] = 4, + ACTIONS(581), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(974), 17, + ACTIONS(573), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38329,7 +40665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(976), 43, + ACTIONS(575), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38351,7 +40687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -38373,13 +40708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1622] = 4, - ACTIONS(579), 1, - sym__automatic_semicolon, + [1648] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 17, + ACTIONS(551), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38397,7 +40731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(573), 42, + ACTIONS(553), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38440,11 +40774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1693] = 3, + [1717] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(523), 18, + ACTIONS(541), 18, sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, @@ -38463,7 +40797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(525), 42, + ACTIONS(543), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38506,18 +40840,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1762] = 4, - ACTIONS(589), 1, - sym__automatic_semicolon, + [1786] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(581), 17, + ACTIONS(1034), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1030), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, anon_sym_DQUOTE, @@ -38530,7 +40864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(583), 42, + ACTIONS(1032), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38573,13 +40907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1833] = 4, - ACTIONS(599), 1, - sym__automatic_semicolon, + [1857] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(591), 17, + ACTIONS(1036), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38597,7 +40929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(593), 42, + ACTIONS(1038), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38619,6 +40951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -38640,13 +40973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1904] = 4, - ACTIONS(609), 1, - sym__automatic_semicolon, + [1926] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(601), 17, + ACTIONS(555), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38664,7 +40996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(603), 42, + ACTIONS(557), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38707,88 +41039,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1975] = 12, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(864), 1, - 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, - 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, - 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(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_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, + [1995] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(551), 17, + ACTIONS(1040), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38806,7 +41061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(553), 42, + ACTIONS(1042), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38828,6 +41083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -38849,13 +41105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2133] = 4, - ACTIONS(569), 1, + [2064] = 4, + ACTIONS(591), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(561), 17, + ACTIONS(583), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38873,7 +41129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(563), 42, + ACTIONS(585), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38916,232 +41172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2204] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(527), 18, + [2135] = 4, + ACTIONS(621), 1, 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(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_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_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(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, - 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, - 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(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, - 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, - [2443] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(990), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(986), 16, + ACTIONS(613), 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, @@ -39154,7 +41196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(988), 42, + ACTIONS(615), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39197,11 +41239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2514] = 3, + [2206] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(992), 18, + ACTIONS(1044), 18, sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, @@ -39220,7 +41262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(994), 42, + ACTIONS(1046), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39263,11 +41305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2583] = 3, + [2275] = 4, + ACTIONS(631), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(996), 17, + ACTIONS(623), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39285,7 +41329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(998), 42, + ACTIONS(625), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39328,11 +41372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2651] = 3, + [2346] = 4, + ACTIONS(1048), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1000), 17, + ACTIONS(545), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39350,7 +41396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1002), 42, + ACTIONS(547), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39393,11 +41439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2719] = 3, + [2417] = 4, + ACTIONS(601), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1004), 17, + ACTIONS(593), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39415,7 +41463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1006), 42, + ACTIONS(595), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39458,11 +41506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2787] = 3, + [2488] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1008), 17, + ACTIONS(1050), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39480,7 +41528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1010), 42, + ACTIONS(1052), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39523,11 +41571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2855] = 3, + [2556] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1012), 17, + ACTIONS(1050), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39545,7 +41593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1014), 42, + ACTIONS(1052), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39588,76 +41636,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2923] = 3, + [2624] = 12, + ACTIONS(806), 1, + anon_sym_EQ_GT, + ACTIONS(810), 1, + sym__shorthand_arrow, + ACTIONS(888), 1, + anon_sym_EQ, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(965), 1, + anon_sym_LBRACK, + STATE(1295), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1016), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(1210), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(782), 13, + sym__automatic_semicolon, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(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(808), 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(793), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - 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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [2710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1020), 17, + ACTIONS(1054), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39675,7 +41732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1022), 42, + ACTIONS(1056), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39718,11 +41775,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3059] = 3, + [2778] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1024), 17, + ACTIONS(1058), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39740,7 +41797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1026), 42, + ACTIONS(1060), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39783,11 +41840,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3127] = 3, + [2846] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1028), 17, + ACTIONS(1054), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39805,7 +41862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1030), 42, + ACTIONS(1056), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39848,11 +41905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3195] = 3, + [2914] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1032), 17, + ACTIONS(1062), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39870,7 +41927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1034), 42, + ACTIONS(1064), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39913,11 +41970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3263] = 3, + [2982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1036), 17, + ACTIONS(1066), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39935,7 +41992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1038), 42, + ACTIONS(1068), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39978,11 +42035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3331] = 3, + [3050] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1040), 17, + ACTIONS(1070), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40000,7 +42057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1042), 42, + ACTIONS(1072), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40043,11 +42100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3399] = 3, + [3118] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1044), 17, + ACTIONS(1074), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40065,7 +42122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1046), 42, + ACTIONS(1076), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40108,11 +42165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3467] = 3, + [3186] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1048), 17, + ACTIONS(1078), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40130,7 +42187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1050), 42, + ACTIONS(1080), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40173,11 +42230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3535] = 3, + [3254] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1052), 17, + ACTIONS(1082), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40195,7 +42252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1054), 42, + ACTIONS(1084), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40238,11 +42295,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3603] = 3, + [3322] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1056), 17, + ACTIONS(1086), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40260,7 +42317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1058), 42, + ACTIONS(1088), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40303,11 +42360,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3671] = 3, + [3390] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1060), 17, + ACTIONS(1090), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40325,7 +42382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1062), 42, + ACTIONS(1092), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40368,11 +42425,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3739] = 3, + [3458] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1064), 17, + ACTIONS(1090), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40390,7 +42447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1066), 42, + ACTIONS(1092), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40433,11 +42490,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3807] = 3, + [3526] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1068), 17, + ACTIONS(1094), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40455,7 +42512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1070), 42, + ACTIONS(1096), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40498,11 +42555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3875] = 3, + [3594] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1072), 17, + ACTIONS(1098), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40520,7 +42577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1074), 42, + ACTIONS(1100), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40563,11 +42620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3943] = 3, + [3662] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1102), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40585,7 +42642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1104), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40628,11 +42685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4011] = 3, + [3730] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1080), 17, + ACTIONS(1106), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40650,7 +42707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1082), 42, + ACTIONS(1108), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40693,11 +42750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4079] = 3, + [3798] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1110), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40715,7 +42772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1112), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40758,141 +42815,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4147] = 3, + [3866] = 7, + ACTIONS(935), 1, + anon_sym_EQ, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(941), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1084), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(808), 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(793), 20, + 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(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_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [4215] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1088), 17, - ts_builtin_sym_end, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(782), 21, + sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, 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_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, - 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, + [3942] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1092), 17, + ACTIONS(1114), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40910,7 +42906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1094), 42, + ACTIONS(1116), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40953,11 +42949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4351] = 3, + [4010] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1096), 17, + ACTIONS(1118), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40975,7 +42971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1098), 42, + ACTIONS(1120), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41018,11 +43014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4419] = 3, + [4078] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1122), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41040,7 +43036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1124), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41083,11 +43079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4487] = 3, + [4146] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1100), 17, + ACTIONS(1126), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41105,7 +43101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1102), 42, + ACTIONS(1128), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41148,11 +43144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4555] = 3, + [4214] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1130), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41170,7 +43166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1132), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41213,11 +43209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4623] = 3, + [4282] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1104), 17, + ACTIONS(1134), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41235,7 +43231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1106), 42, + ACTIONS(1136), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41278,11 +43274,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4691] = 3, + [4350] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1108), 17, + ACTIONS(1138), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41300,7 +43296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1110), 42, + ACTIONS(1140), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41343,11 +43339,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4759] = 3, + [4418] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1142), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41365,7 +43361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1144), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41408,11 +43404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4827] = 3, + [4486] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1112), 17, + ACTIONS(1146), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41430,7 +43426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1114), 42, + ACTIONS(1148), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41473,141 +43469,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4895] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, + [4554] = 12, + ACTIONS(806), 1, + anon_sym_EQ_GT, + ACTIONS(810), 1, + sym__shorthand_arrow, + ACTIONS(888), 1, + anon_sym_EQ, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(963), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(965), 1, 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(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, + STATE(1318), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1116), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(1210), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(782), 13, + sym__automatic_semicolon, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1118), 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(808), 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(793), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - 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, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [4640] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1116), 17, + ACTIONS(1150), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41625,7 +43565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1118), 42, + ACTIONS(1152), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41668,11 +43608,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5099] = 3, + [4708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1120), 17, + ACTIONS(1154), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41690,7 +43630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1122), 42, + ACTIONS(1156), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41733,11 +43673,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5167] = 3, + [4776] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1124), 17, + ACTIONS(1158), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41755,7 +43695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1126), 42, + ACTIONS(1160), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41798,11 +43738,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5235] = 3, + [4844] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1128), 17, + ACTIONS(1162), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41820,7 +43760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1130), 42, + ACTIONS(1164), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41863,11 +43803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5303] = 3, + [4912] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1132), 17, + ACTIONS(1166), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41885,7 +43825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1134), 42, + ACTIONS(1168), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41928,11 +43868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5371] = 3, + [4980] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1136), 17, + ACTIONS(1170), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41950,7 +43890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1138), 42, + ACTIONS(1172), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41993,11 +43933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5439] = 3, + [5048] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1140), 17, + ACTIONS(1174), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42015,7 +43955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1142), 42, + ACTIONS(1176), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42058,11 +43998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5507] = 3, + [5116] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1144), 17, + ACTIONS(1178), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42080,7 +44020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1146), 42, + ACTIONS(1180), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42123,11 +44063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5575] = 3, + [5184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1148), 17, + ACTIONS(1182), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42145,7 +44085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1150), 42, + ACTIONS(1184), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42188,11 +44128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5643] = 3, + [5252] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1152), 17, + ACTIONS(1186), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42210,7 +44150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1154), 42, + ACTIONS(1188), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42253,11 +44193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5711] = 3, + [5320] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1156), 17, + ACTIONS(1190), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42275,7 +44215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1158), 42, + ACTIONS(1192), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42318,11 +44258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5779] = 3, + [5388] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1156), 17, + ACTIONS(1194), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42340,7 +44280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1158), 42, + ACTIONS(1196), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42383,11 +44323,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5847] = 3, + [5456] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1160), 17, + ACTIONS(1198), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42405,7 +44345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1162), 42, + ACTIONS(1200), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42448,11 +44388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5915] = 3, + [5524] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1164), 17, + ACTIONS(1202), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42470,7 +44410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1166), 42, + ACTIONS(1204), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42513,86 +44453,11 @@ static const uint16_t ts_small_parse_table[] = { 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_LBRACK, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - ACTIONS(1168), 1, - sym_identifier, - STATE(1260), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1099), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 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(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_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, - [6071] = 3, + [5592] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1170), 17, + ACTIONS(1206), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42610,7 +44475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1172), 42, + ACTIONS(1208), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42653,11 +44518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6139] = 3, + [5660] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1174), 17, + ACTIONS(1050), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42675,7 +44540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1176), 42, + ACTIONS(1052), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42718,11 +44583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6207] = 3, + [5728] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1178), 17, + ACTIONS(1210), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42740,7 +44605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1180), 42, + ACTIONS(1212), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42783,11 +44648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6275] = 3, + [5796] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1182), 17, + ACTIONS(1050), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42805,7 +44670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1184), 42, + ACTIONS(1052), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42848,11 +44713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6343] = 3, + [5864] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1186), 17, + ACTIONS(1050), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42870,7 +44735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1188), 42, + ACTIONS(1052), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42913,11 +44778,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6411] = 3, + [5932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1190), 17, + ACTIONS(1050), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42935,7 +44800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1192), 42, + ACTIONS(1052), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42978,11 +44843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6479] = 3, + [6000] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1012), 17, + ACTIONS(1214), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43000,7 +44865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1014), 42, + ACTIONS(1216), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43043,11 +44908,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6547] = 3, + [6068] = 7, + ACTIONS(1222), 1, + anon_sym_EQ, + ACTIONS(1224), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1194), 17, + ACTIONS(1226), 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(1218), 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(1220), 21, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + 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, + [6144] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1230), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43065,7 +44999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1196), 42, + ACTIONS(1232), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43108,11 +45042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6615] = 3, + [6212] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1198), 17, + ACTIONS(1234), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43130,7 +45064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1200), 42, + ACTIONS(1236), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43173,11 +45107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6683] = 3, + [6280] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1202), 17, + ACTIONS(1238), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43195,7 +45129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1204), 42, + ACTIONS(1240), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43238,11 +45172,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6751] = 3, + [6348] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1206), 17, + ACTIONS(1242), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43260,7 +45194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1208), 42, + ACTIONS(1244), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43303,11 +45237,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6819] = 3, + [6416] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1210), 17, + ACTIONS(1246), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43325,7 +45259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1212), 42, + ACTIONS(1248), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43368,11 +45302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6887] = 3, + [6484] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 17, + ACTIONS(1242), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43390,7 +45324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1216), 42, + ACTIONS(1244), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43433,11 +45367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6955] = 3, + [6552] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1218), 17, + ACTIONS(1250), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43455,7 +45389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1220), 42, + ACTIONS(1252), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43498,11 +45432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7023] = 3, + [6620] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1222), 17, + ACTIONS(1254), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43520,7 +45454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1224), 42, + ACTIONS(1256), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43563,259 +45497,554 @@ static const uint16_t ts_small_parse_table[] = { 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_LBRACK, - STATE(1260), 1, - sym_variable_declarator, + [6688] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 13, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1258), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(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_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, + 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7174] = 3, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [6756] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 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(1228), 36, - sym__ternary_qmark, + ACTIONS(1262), 17, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + 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, - [7240] = 3, + 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, + [6824] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1230), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, + 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_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_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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1232), 36, - sym__ternary_qmark, + 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, + [6892] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1270), 17, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + 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, - [7306] = 3, + 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, + [6960] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1234), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, + 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_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_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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1236), 36, - sym__ternary_qmark, + 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, + [7028] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1278), 17, + ts_builtin_sym_end, 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_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, + [7096] = 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, + [7164] = 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, + [7232] = 12, + ACTIONS(795), 1, + anon_sym_COLON, + ACTIONS(828), 1, + anon_sym_RBRACE, + ACTIONS(1290), 1, + anon_sym_LPAREN, + ACTIONS(1293), 1, + anon_sym_EQ, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(1297), 1, + sym__shorthand_arrow, + STATE(1440), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1220), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -43824,13 +46053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7372] = 5, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43846,7 +46069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43867,18 +46090,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1240), 21, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + [7317] = 12, + ACTIONS(784), 1, anon_sym_RBRACE, + ACTIONS(795), 1, + anon_sym_COLON, + ACTIONS(1290), 1, anon_sym_LPAREN, + ACTIONS(1293), 1, + anon_sym_EQ, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(1297), 1, + sym__shorthand_arrow, + STATE(1346), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1220), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, 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, @@ -43889,14 +46126,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7442] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1246), 21, + ACTIONS(1226), 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(1218), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -43915,62 +46163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1248), 36, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, + [7402] = 12, + ACTIONS(795), 1, 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, - [7508] = 11, - ACTIONS(766), 1, + ACTIONS(832), 1, anon_sym_RBRACE, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(1250), 1, + ACTIONS(1290), 1, anon_sym_LPAREN, - ACTIONS(1253), 1, + ACTIONS(1293), 1, anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(1295), 1, anon_sym_EQ_GT, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + ACTIONS(1297), 1, + sym__shorthand_arrow, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 15, + ACTIONS(1220), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -43986,7 +46199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44002,7 +46215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44023,46 +46236,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7590] = 3, + [7487] = 7, + ACTIONS(1224), 1, + anon_sym_EQ_GT, + ACTIONS(1299), 1, + anon_sym_EQ, + ACTIONS(1301), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(994), 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(992), 36, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44078,38 +46262,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [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(1220), 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, @@ -44120,23 +46282,7 @@ static const uint16_t ts_small_parse_table[] = { 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(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44157,11 +46303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7738] = 3, + [7561] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1257), 21, + ACTIONS(1303), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -44183,7 +46329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1259), 36, + ACTIONS(1305), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -44220,11 +46366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7804] = 3, + [7627] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1261), 21, + ACTIONS(1307), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -44246,7 +46392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1263), 36, + ACTIONS(1309), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -44283,41 +46429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7870] = 11, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(1250), 1, - anon_sym_LPAREN, - ACTIONS(1253), 1, + [7693] = 5, + ACTIONS(1222), 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(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, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44333,7 +46451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44354,37 +46472,15 @@ static const uint16_t ts_small_parse_table[] = { 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(1220), 21, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -44398,9 +46494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(775), 20, + [7763] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1311), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44419,15 +46520,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1313), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44443,18 +46549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 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, @@ -44463,9 +46557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(775), 20, + [7829] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1046), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44484,15 +46583,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1044), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44508,18 +46612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 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, @@ -44528,9 +46620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + [7895] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1315), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44549,15 +46646,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8165] = 6, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, + ACTIONS(1317), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44573,18 +46675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 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, @@ -44593,9 +46683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + [7961] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1319), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44614,41 +46709,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8236] = 12, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(897), 1, + ACTIONS(1321), 36, + sym__ternary_qmark, anon_sym_LBRACE, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, + anon_sym_COLON, anon_sym_LBRACK, - 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_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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44664,34 +46738,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - [8319] = 5, - ACTIONS(1267), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8027] = 7, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(947), 1, anon_sym_EQ, + ACTIONS(949), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44707,7 +46772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 19, + ACTIONS(782), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -44727,7 +46792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(793), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44748,74 +46813,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8387] = 3, + [8101] = 13, + ACTIONS(935), 1, + anon_sym_EQ, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(941), 1, + sym__shorthand_arrow, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(989), 1, + anon_sym_in, + ACTIONS(992), 1, + anon_sym_of, + ACTIONS(1323), 1, + sym_identifier, + ACTIONS(1325), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, + STATE(1416), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(782), 11, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(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, - [8450] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1234), 21, + ACTIONS(808), 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(793), 20, anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -44834,45 +46885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1236), 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, - [8513] = 3, + [8187] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1261), 21, + ACTIONS(1328), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -44894,15 +46912,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1263), 33, - sym__automatic_semicolon, + ACTIONS(1330), 36, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_PLUS_EQ, @@ -44928,15 +46949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8576] = 6, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, + [8253] = 7, + ACTIONS(935), 1, anon_sym_EQ, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(941), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44952,13 +46975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 17, + ACTIONS(782), 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, @@ -44970,7 +46994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(793), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44991,75 +47015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8645] = 3, - 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, - 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, - 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, + [8326] = 7, + ACTIONS(1222), 1, anon_sym_EQ, + ACTIONS(1224), 1, + anon_sym_EQ_GT, + ACTIONS(1228), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45075,13 +47041,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, + ACTIONS(1220), 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, @@ -45093,7 +47060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45114,14 +47081,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8777] = 3, + [8399] = 8, + ACTIONS(1224), 1, + anon_sym_EQ_GT, + ACTIONS(1301), 1, + sym__shorthand_arrow, + ACTIONS(1335), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 21, + ACTIONS(1332), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1220), 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(1226), 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(1218), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45140,17 +47147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1228), 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, + [8473] = 7, + ACTIONS(1295), 1, + anon_sym_EQ_GT, + ACTIONS(1297), 1, + sym__shorthand_arrow, + ACTIONS(1338), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45166,6 +47173,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1220), 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, @@ -45174,15 +47191,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8840] = 6, - ACTIONS(891), 1, + ACTIONS(1218), 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, + [8545] = 8, + ACTIONS(1222), 1, anon_sym_EQ, - ACTIONS(921), 1, + ACTIONS(1224), 1, anon_sym_EQ_GT, + ACTIONS(1228), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, + ACTIONS(1340), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1220), 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(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45198,25 +47257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 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(775), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45237,17 +47278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8909] = 7, - ACTIONS(870), 1, - anon_sym_COLON, - ACTIONS(1255), 1, + [8619] = 8, + ACTIONS(806), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(810), 1, + sym__shorthand_arrow, + ACTIONS(888), 1, anon_sym_EQ, + ACTIONS(920), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45263,7 +47306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 16, + ACTIONS(782), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -45280,7 +47323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(793), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45301,17 +47344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8980] = 7, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, + [8693] = 5, + ACTIONS(1299), 1, anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45327,13 +47366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 16, - sym__automatic_semicolon, + ACTIONS(1220), 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, @@ -45344,7 +47386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45365,15 +47407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9051] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1284), 1, + [8761] = 8, + ACTIONS(920), 1, + anon_sym_COLON, + ACTIONS(1295), 1, anon_sym_EQ_GT, + ACTIONS(1297), 1, + sym__shorthand_arrow, + ACTIONS(1338), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45389,13 +47435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, + ACTIONS(1220), 16, 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, @@ -45407,7 +47452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45428,34 +47473,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9120] = 7, - ACTIONS(889), 1, + [8835] = 7, + ACTIONS(806), 1, anon_sym_EQ_GT, - ACTIONS(904), 1, + ACTIONS(810), 1, + sym__shorthand_arrow, + ACTIONS(888), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(901), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45471,7 +47499,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(782), 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(793), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45492,17 +47538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9191] = 7, - ACTIONS(864), 1, - anon_sym_COLON, - ACTIONS(1255), 1, + [8907] = 7, + ACTIONS(1295), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1342), 1, anon_sym_EQ, + ACTIONS(1344), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45518,12 +47564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 16, + ACTIONS(1220), 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, @@ -45535,7 +47582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45556,43 +47603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9262] = 3, + [8979] = 7, + ACTIONS(806), 1, + anon_sym_EQ_GT, + ACTIONS(977), 1, + anon_sym_EQ, + ACTIONS(979), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1257), 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(1259), 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, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45608,6 +47629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(782), 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, @@ -45616,15 +47647,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9325] = 6, - ACTIONS(1284), 1, + ACTIONS(793), 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, + [9051] = 8, + ACTIONS(886), 1, + anon_sym_COLON, + ACTIONS(1295), 1, anon_sym_EQ_GT, - ACTIONS(1286), 1, + ACTIONS(1297), 1, + sym__shorthand_arrow, + ACTIONS(1338), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45640,13 +47696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, + ACTIONS(1220), 16, 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, @@ -45658,7 +47713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45679,75 +47734,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9394] = 3, + [9125] = 8, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(941), 1, + sym__shorthand_arrow, + ACTIONS(983), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, + ACTIONS(981), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(782), 13, + 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_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, - 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(808), 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(793), 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_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_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9199] = 8, + ACTIONS(1224), 1, anon_sym_EQ_GT, + ACTIONS(1228), 1, + sym__shorthand_arrow, + ACTIONS(1348), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, + ACTIONS(1346), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1220), 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(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45763,13 +47845,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1218), 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, + [9273] = 8, + ACTIONS(935), 1, + anon_sym_EQ, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(941), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(953), 4, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(782), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45781,7 +47895,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(808), 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(793), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45802,13 +47932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9526] = 5, - ACTIONS(1242), 1, + [9347] = 8, + ACTIONS(806), 1, + anon_sym_EQ_GT, + ACTIONS(810), 1, + sym__shorthand_arrow, + ACTIONS(886), 1, + anon_sym_COLON, + ACTIONS(888), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45824,14 +47960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 18, + ACTIONS(782), 16, 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, @@ -45843,7 +47977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(793), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45864,71 +47998,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9593] = 3, + [9421] = 8, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(949), 1, + sym__shorthand_arrow, + ACTIONS(970), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1290), 15, - anon_sym_LBRACE, + ACTIONS(967), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(782), 13, + 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_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, - 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, + ACTIONS(808), 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(793), 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_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, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9495] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, + ACTIONS(1353), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -45944,7 +48084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1274), 39, + ACTIONS(1351), 39, anon_sym_export, anon_sym_import, anon_sym_with, @@ -45984,34 +48124,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9719] = 7, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1295), 1, - anon_sym_EQ, + [9558] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1292), 4, + ACTIONS(1046), 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(1044), 33, + 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_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, @@ -46027,32 +48176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(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_QMARK_QMARK, - [9790] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9621] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1300), 15, + ACTIONS(1044), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -46068,7 +48204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1298), 39, + ACTIONS(1046), 39, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46108,52 +48244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9853] = 7, - ACTIONS(929), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, + [9684] = 3, 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, - 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(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(1307), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46172,34 +48270,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1309), 33, + 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_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(790), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46215,9 +48296,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9747] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1315), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46236,34 +48330,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1317), 33, + 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_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, @@ -46279,9 +48356,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9810] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1319), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46300,34 +48390,17 @@ static const uint16_t ts_small_parse_table[] = { 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(1321), 33, + 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_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, @@ -46343,9 +48416,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9873] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1303), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46364,15 +48450,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1305), 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, @@ -46388,13 +48476,31 @@ static const uint16_t ts_small_parse_table[] = { 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_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, + [9936] = 8, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(947), 1, + anon_sym_EQ, + ACTIONS(949), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(986), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(782), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46406,36 +48512,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [10206] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46451,25 +48528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 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(1238), 20, + ACTIONS(793), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46490,11 +48549,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10275] = 3, + [10009] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, + ACTIONS(1357), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -46510,7 +48569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1274), 39, + ACTIONS(1355), 39, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46550,27 +48609,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10338] = 3, + [10072] = 9, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(947), 1, + anon_sym_EQ, + ACTIONS(949), 1, + sym__shorthand_arrow, + ACTIONS(989), 1, + anon_sym_in, + ACTIONS(1359), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1313), 15, - anon_sym_LBRACE, + ACTIONS(782), 15, + 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_PLUS_PLUS, + 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(808), 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(793), 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, + [10147] = 5, + ACTIONS(1222), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1226), 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(1220), 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(1218), 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, + [10214] = 8, + ACTIONS(1224), 1, + anon_sym_EQ_GT, + ACTIONS(1299), 1, + anon_sym_EQ, + ACTIONS(1301), 1, + sym__shorthand_arrow, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1361), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1220), 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(1226), 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(1218), 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, + [10287] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1353), 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(1351), 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, + [10350] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1353), 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(1351), 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, + [10413] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1366), 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(1311), 39, + ACTIONS(1364), 39, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46610,11 +48982,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10401] = 3, + [10476] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(992), 15, + ACTIONS(1353), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -46630,7 +49002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(994), 39, + ACTIONS(1351), 39, anon_sym_export, anon_sym_import, anon_sym_with, @@ -46670,11 +49042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10464] = 3, + [10539] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1246), 21, + ACTIONS(1311), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -46696,7 +49068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1248), 33, + ACTIONS(1313), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -46730,43 +49102,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10527] = 3, + [10602] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(994), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, + ACTIONS(1370), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, 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_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), 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(992), 33, - sym__automatic_semicolon, + 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, + [10665] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1374), 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(1372), 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, + [10728] = 9, + ACTIONS(1224), 1, + anon_sym_EQ_GT, + ACTIONS(1299), 1, + anon_sym_EQ, + ACTIONS(1301), 1, + sym__shorthand_arrow, + ACTIONS(1376), 1, + anon_sym_in, + ACTIONS(1379), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1220), 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_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(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46782,19 +49268,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10590] = 3, + ACTIONS(1218), 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, + [10803] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1230), 21, + ACTIONS(1328), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -46816,7 +49314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1232), 33, + ACTIONS(1330), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -46850,17 +49348,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10653] = 7, - ACTIONS(788), 1, + [10866] = 9, + ACTIONS(939), 1, anon_sym_EQ_GT, - ACTIONS(864), 1, - anon_sym_COLON, - ACTIONS(866), 1, + ACTIONS(949), 1, + sym__shorthand_arrow, + ACTIONS(967), 1, + anon_sym_RBRACK, + ACTIONS(970), 1, anon_sym_EQ, + ACTIONS(981), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, + ACTIONS(782), 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(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46876,24 +49392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 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(775), 20, + ACTIONS(793), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46914,19 +49413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10724] = 7, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, + [10940] = 6, + ACTIONS(1348), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1315), 3, + ACTIONS(1346), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(1220), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46940,7 +49438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46956,7 +49454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46977,23 +49475,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10794] = 8, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, + [11008] = 6, + ACTIONS(1222), 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), 15, - sym__ternary_qmark, + ACTIONS(1340), 4, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1220), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47005,7 +49500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47021,8 +49516,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + ACTIONS(1218), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -47041,13 +49537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10866] = 5, - ACTIONS(1282), 1, + [11076] = 5, + ACTIONS(1342), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47063,13 +49559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, + ACTIONS(1220), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47081,7 +49577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47102,33 +49598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10932] = 7, - ACTIONS(885), 1, + [11142] = 5, + ACTIONS(1338), 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, - 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(790), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47144,41 +49620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 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, - [11002] = 6, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1292), 4, + ACTIONS(1220), 17, + 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_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47190,23 +49638,7 @@ static const uint16_t ts_small_parse_table[] = { 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(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47227,23 +49659,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11070] = 8, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(889), 1, + [11208] = 9, + ACTIONS(1224), 1, anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(1323), 1, - anon_sym_of, + ACTIONS(1301), 1, + sym__shorthand_arrow, + ACTIONS(1332), 1, + anon_sym_RBRACK, + ACTIONS(1335), 1, + anon_sym_EQ, + ACTIONS(1346), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(764), 15, + ACTIONS(1220), 13, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47255,7 +49687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47271,8 +49703,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 19, + ACTIONS(1218), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -47291,18 +49724,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11142] = 6, - ACTIONS(1242), 1, + [11282] = 6, + ACTIONS(1335), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 4, + ACTIONS(1332), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(1220), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -47316,7 +49749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47332,7 +49765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47353,20 +49786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11210] = 6, - ACTIONS(1304), 1, + [11350] = 7, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(1012), 1, anon_sym_EQ, + ACTIONS(1014), 1, + sym__shorthand_arrow, 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(782), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47378,7 +49811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47394,7 +49827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(793), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47415,80 +49848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11278] = 5, - ACTIONS(1286), 1, + [11419] = 6, + ACTIONS(1299), 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(1361), 3, 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(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_QMARK_QMARK, - [11344] = 8, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(901), 1, + anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 13, + ACTIONS(1220), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -47502,7 +49872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47518,7 +49888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47539,21 +49909,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11415] = 7, - ACTIONS(1267), 1, + [11486] = 9, + ACTIONS(935), 1, anon_sym_EQ, - ACTIONS(1318), 1, + ACTIONS(939), 1, + anon_sym_EQ_GT, + ACTIONS(941), 1, + sym__shorthand_arrow, + ACTIONS(989), 1, anon_sym_in, - ACTIONS(1321), 1, + ACTIONS(1359), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 15, + ACTIONS(782), 13, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47565,7 +49937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(808), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47581,7 +49953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + ACTIONS(793), 19, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -47601,143 +49973,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11484] = 6, - ACTIONS(1242), 1, + [11559] = 7, + ACTIONS(1299), 1, anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_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, + ACTIONS(1376), 1, 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(1379), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(764), 15, + ACTIONS(1220), 15, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_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, - 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, - [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, - sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47749,7 +49999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47765,9 +50015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1218), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -47786,19 +50035,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11689] = 6, - ACTIONS(1267), 1, + [11628] = 7, + ACTIONS(1224), 1, + anon_sym_EQ_GT, + ACTIONS(1381), 1, anon_sym_EQ, + ACTIONS(1383), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1315), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(1220), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47810,7 +50060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47826,7 +50076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47847,19 +50097,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11756] = 8, - ACTIONS(1242), 1, + [11697] = 9, + ACTIONS(1222), 1, anon_sym_EQ, - ACTIONS(1307), 1, + ACTIONS(1224), 1, anon_sym_EQ_GT, - ACTIONS(1318), 1, + ACTIONS(1228), 1, + sym__shorthand_arrow, + ACTIONS(1376), 1, anon_sym_in, - ACTIONS(1321), 1, + ACTIONS(1379), 1, anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 13, + ACTIONS(1220), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -47873,7 +50125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47889,7 +50141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + ACTIONS(1218), 19, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -47909,18 +50161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11826] = 6, - ACTIONS(1242), 1, + [11770] = 7, + ACTIONS(1332), 1, + anon_sym_RBRACK, + ACTIONS(1335), 1, anon_sym_EQ, - ACTIONS(1325), 1, - anon_sym_EQ_GT, + ACTIONS(1346), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 14, + ACTIONS(1220), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47932,7 +50185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47948,7 +50201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1218), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -47969,18 +50222,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11892] = 6, - ACTIONS(982), 1, + [11838] = 7, + ACTIONS(1222), 1, anon_sym_EQ, - ACTIONS(984), 1, - anon_sym_EQ_GT, + ACTIONS(1376), 1, + anon_sym_in, + ACTIONS(1379), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(764), 14, + ACTIONS(1220), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47992,7 +50246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48008,9 +50262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(1218), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -48029,21 +50282,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11958] = 8, - ACTIONS(891), 1, + [11905] = 5, + ACTIONS(1381), 1, anon_sym_EQ, - ACTIONS(932), 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), 13, + ACTIONS(1220), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -48055,7 +50303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(1226), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -48071,8 +50319,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 19, + ACTIONS(1218), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -48091,324 +50340,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12028] = 7, - 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, - sym__ternary_qmark, + [11968] = 9, + ACTIONS(433), 1, + anon_sym_BQUOTE, + ACTIONS(1389), 1, anon_sym_LPAREN, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1395), 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(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(5), 2, + sym_html_comment, + sym_comment, + STATE(534), 2, + sym_template_string, + sym_arguments, + ACTIONS(1385), 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, - [12096] = 6, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(984), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 14, + ACTIONS(1387), 24, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + 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, + [12032] = 10, + ACTIONS(433), 1, 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(1389), 1, + anon_sym_LPAREN, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1395), 1, + sym_optional_chain, + STATE(534), 1, + sym_template_string, + STATE(548), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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, - [12162] = 6, - ACTIONS(1325), 1, - anon_sym_EQ_GT, - ACTIONS(1327), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 14, + ACTIONS(1399), 24, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, 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(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, + anon_sym_COLON, + anon_sym_RBRACK, 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, - 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [12098] = 6, + ACTIONS(569), 1, + anon_sym_EQ, + ACTIONS(1401), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(567), 2, + anon_sym_LPAREN, 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(547), 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, - [12295] = 5, - ACTIONS(1327), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 14, + ACTIONS(545), 27, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + 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_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, - 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, - [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, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [12156] = 4, + ACTIONS(1403), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(553), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48421,16 +50522,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 24, + ACTIONS(551), 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, @@ -48446,19 +50551,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [12209] = 4, + ACTIONS(1405), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(547), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48471,11 +50571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 27, + ACTIONS(545), 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, @@ -48499,15 +50600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [12484] = 5, - ACTIONS(511), 1, + anon_sym_BQUOTE, + [12262] = 4, + ACTIONS(1222), 1, anon_sym_EQ, - ACTIONS(1341), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 12, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48520,7 +50620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(503), 29, + ACTIONS(1220), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48550,13 +50650,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12540] = 4, - ACTIONS(1343), 1, - sym__automatic_semicolon, + [12315] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 12, + ACTIONS(597), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48569,7 +50667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(499), 29, + ACTIONS(599), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48599,21 +50697,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + [12365] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1345), 12, + ACTIONS(1407), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48626,16 +50714,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 25, + ACTIONS(1409), 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, @@ -48652,13 +50744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12654] = 4, - ACTIONS(1341), 1, - sym__automatic_semicolon, + [12415] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 12, + ACTIONS(1411), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48671,7 +50761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(503), 29, + ACTIONS(1413), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48701,21 +50791,11 @@ 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, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1339), 1, - sym_optional_chain, - STATE(530), 1, - sym_template_string, + [12465] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(553), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48728,7 +50808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 25, + ACTIONS(551), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48738,7 +50818,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -48754,24 +50837,12 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_BQUOTE, + [12515] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 12, + ACTIONS(557), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48784,16 +50855,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1357), 23, + ACTIONS(555), 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, @@ -48807,14 +50882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12831] = 4, - ACTIONS(1242), 1, - anon_sym_EQ, + [12565] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(607), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48827,7 +50902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 29, + ACTIONS(609), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48857,15 +50932,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + [12615] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48878,7 +50949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 28, + ACTIONS(1220), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48907,24 +50978,12 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_BQUOTE, + [12665] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 12, + ACTIONS(1415), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48937,16 +50996,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 23, + ACTIONS(1417), 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, @@ -48960,14 +51023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13002] = 4, - ACTIONS(1369), 1, - sym_regex_flags, + [12715] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1419), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48980,8 +51043,7 @@ 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(1421), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -48989,6 +51051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49006,14 +51069,22 @@ 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, + [12765] = 5, + ACTIONS(1430), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(545), 12, + ACTIONS(1427), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1423), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49026,18 +51097,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(547), 29, + ACTIONS(1425), 24, 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, @@ -49056,11 +51122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13104] = 3, + [12819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(575), 12, + ACTIONS(1432), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49073,7 +51139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(577), 29, + ACTIONS(1434), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49103,11 +51169,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13154] = 3, + [12869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(555), 12, + ACTIONS(1436), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49120,7 +51186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 29, + ACTIONS(1438), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49150,11 +51216,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13204] = 3, + [12919] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(565), 12, + ACTIONS(617), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49167,7 +51233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 29, + ACTIONS(619), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49197,11 +51263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13254] = 3, + [12969] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(585), 12, + ACTIONS(627), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49214,7 +51280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(587), 29, + ACTIONS(629), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49244,11 +51310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13304] = 3, + [13019] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(595), 12, + ACTIONS(1440), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49261,7 +51327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 29, + ACTIONS(1442), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49291,11 +51357,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13354] = 3, + [13069] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(605), 12, + ACTIONS(1444), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49308,7 +51374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 29, + ACTIONS(1446), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49338,11 +51404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13404] = 3, + [13119] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(535), 12, + ACTIONS(647), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49355,7 +51421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 29, + ACTIONS(649), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49385,11 +51451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13454] = 3, + [13169] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(587), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49402,7 +51468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 29, + ACTIONS(589), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49432,11 +51498,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13504] = 3, + [13219] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(637), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49449,7 +51515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 29, + ACTIONS(639), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49479,18 +51545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13554] = 5, - ACTIONS(1378), 1, - anon_sym_EQ, + [13269] = 3, 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, + ACTIONS(1448), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49503,13 +51562,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 24, + 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, @@ -49528,11 +51592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13608] = 3, + [13319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1380), 12, + ACTIONS(1452), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49545,7 +51609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1382), 29, + ACTIONS(1454), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49575,11 +51639,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13658] = 3, + [13369] = 5, + ACTIONS(1463), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1384), 12, + ACTIONS(1460), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1456), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49592,18 +51663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1386), 29, + ACTIONS(1458), 24, 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, @@ -49622,11 +51688,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13708] = 3, + [13423] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1465), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49639,7 +51705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 29, + ACTIONS(1467), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49669,11 +51735,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13758] = 3, + [13473] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1392), 12, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49686,7 +51752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 29, + ACTIONS(1471), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49716,11 +51782,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13808] = 3, + [13523] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1473), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49733,7 +51799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 29, + ACTIONS(1475), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49763,11 +51829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13858] = 3, + [13573] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1396), 12, + ACTIONS(543), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49780,7 +51846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1398), 29, + ACTIONS(541), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49810,11 +51876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13908] = 3, + [13623] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1400), 12, + ACTIONS(1477), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49827,7 +51893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1402), 29, + ACTIONS(1479), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49857,18 +51923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13958] = 5, - ACTIONS(1411), 1, - anon_sym_EQ, + [13673] = 3, 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(577), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49881,13 +51940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 24, + ACTIONS(579), 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, @@ -49906,11 +51970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14012] = 3, + [13723] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1413), 12, + ACTIONS(1481), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49923,7 +51987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1415), 29, + ACTIONS(1483), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -49953,11 +52017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14062] = 3, + [13773] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1417), 12, + ACTIONS(1485), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49970,7 +52034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1419), 29, + ACTIONS(1487), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50000,11 +52064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14112] = 3, + [13823] = 4, + ACTIONS(1493), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 12, + ACTIONS(1489), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50017,7 +52083,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 29, + anon_sym_instanceof, + ACTIONS(1491), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50025,7 +52092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50043,15 +52109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14162] = 3, + [13875] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1425), 12, + ACTIONS(1495), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50064,7 +52129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1427), 29, + ACTIONS(1497), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50094,11 +52159,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14212] = 3, + [13925] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(525), 12, + ACTIONS(1499), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50111,7 +52176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(523), 29, + ACTIONS(1501), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50141,11 +52206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14262] = 3, + [13975] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1429), 12, + ACTIONS(1503), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50158,7 +52223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1431), 29, + ACTIONS(1505), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50188,11 +52253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14312] = 3, + [14025] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(1507), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50205,7 +52270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1435), 29, + ACTIONS(1509), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50235,11 +52300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14362] = 3, + [14075] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 12, + ACTIONS(1511), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50252,7 +52317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1439), 29, + ACTIONS(1513), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50282,18 +52347,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, + [14125] = 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(1515), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50306,13 +52364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 24, + ACTIONS(1517), 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, @@ -50331,11 +52394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14466] = 3, + [14175] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1444), 12, + ACTIONS(1519), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50348,7 +52411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 29, + ACTIONS(1521), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50378,11 +52441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14516] = 3, + [14225] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1448), 12, + ACTIONS(1523), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50395,7 +52458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1450), 29, + ACTIONS(1525), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50425,11 +52488,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14566] = 3, + [14275] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1452), 12, + ACTIONS(1527), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50442,7 +52505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1454), 29, + ACTIONS(1529), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50472,11 +52535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14616] = 3, + [14325] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1456), 12, + ACTIONS(563), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50489,7 +52552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1458), 29, + ACTIONS(561), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, @@ -50519,11 +52582,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14666] = 3, + [14375] = 5, + ACTIONS(569), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1460), 12, + ACTIONS(1531), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50536,18 +52606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1462), 29, + ACTIONS(567), 24, 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 +52631,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14716] = 3, + [14429] = 4, + ACTIONS(1299), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1464), 12, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50583,15 +52650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1466), 29, + ACTIONS(1220), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50613,11 +52678,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14766] = 3, + [14480] = 9, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1534), 1, + anon_sym_LPAREN, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1540), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1468), 12, + STATE(643), 2, + sym_template_string, + sym_arguments, + ACTIONS(1385), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50630,20 +52708,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1470), 29, + ACTIONS(1387), 21, + 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_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [14541] = 10, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1534), 1, + anon_sym_LPAREN, + ACTIONS(1536), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1538), 1, anon_sym_DOT, + ACTIONS(1540), 1, sym_optional_chain, + STATE(625), 1, + sym_arguments, + STATE(643), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1397), 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(1399), 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, @@ -50659,12 +52783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14816] = 3, + [14604] = 4, + ACTIONS(1430), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1472), 12, + ACTIONS(1423), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50677,15 +52802,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1474), 29, + ACTIONS(1425), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50707,11 +52830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14866] = 3, + [14655] = 4, + ACTIONS(1401), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1476), 12, + ACTIONS(547), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50724,12 +52849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 29, + ACTIONS(545), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -50753,12 +52877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14916] = 3, + [14706] = 4, + ACTIONS(1542), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1480), 12, + ACTIONS(553), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50771,12 +52896,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1482), 29, + ACTIONS(551), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -50800,12 +52924,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14966] = 3, + [14757] = 4, + ACTIONS(1463), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1456), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50818,15 +52943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, + ACTIONS(1458), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50848,11 +52971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15016] = 3, + [14808] = 4, + ACTIONS(569), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50865,15 +52990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, + ACTIONS(567), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50895,11 +53018,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15066] = 3, + [14859] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1544), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50912,12 +53035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, + ACTIONS(1546), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -50941,12 +53063,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15116] = 3, + [14907] = 7, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1548), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50959,18 +53089,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, + ACTIONS(1550), 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [14963] = 6, + ACTIONS(569), 1, + anon_sym_EQ, + ACTIONS(1556), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(567), 2, + anon_sym_LPAREN, + anon_sym_BQUOTE, + ACTIONS(547), 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(545), 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, @@ -50988,12 +53160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15166] = 3, + [15017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(529), 12, + ACTIONS(1558), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51006,12 +53177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(527), 29, + ACTIONS(1560), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -51035,12 +53205,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15216] = 3, + [15065] = 7, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1488), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51053,20 +53231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1490), 29, + ACTIONS(1564), 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -51080,14 +53254,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, - [15266] = 3, + [15121] = 6, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1492), 12, + ACTIONS(1566), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51100,20 +53277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1494), 29, + ACTIONS(1568), 24, 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, @@ -51129,12 +53302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15316] = 3, + [15175] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1496), 12, + ACTIONS(1570), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51147,12 +53319,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1498), 29, + ACTIONS(1572), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -51176,12 +53347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15366] = 3, + [15223] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1500), 12, + ACTIONS(1499), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51194,18 +53364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1502), 29, + ACTIONS(1501), 27, + 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, @@ -51224,11 +53392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15416] = 3, + [15271] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1504), 12, + ACTIONS(1574), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51241,12 +53409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1506), 29, + ACTIONS(1576), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -51270,12 +53437,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15466] = 3, + [15319] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1508), 12, + ACTIONS(1578), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51288,12 +53454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1510), 29, + ACTIONS(1580), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -51317,12 +53482,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15516] = 3, + [15367] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1582), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51335,12 +53499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1514), 29, + ACTIONS(1584), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -51364,12 +53527,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15566] = 3, + [15415] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1516), 12, + ACTIONS(553), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51382,12 +53544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1518), 29, + ACTIONS(551), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -51411,12 +53572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15616] = 3, + [15463] = 4, + ACTIONS(569), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1520), 12, + ACTIONS(565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51429,18 +53591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1522), 29, + ACTIONS(567), 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_AMP_AMP, @@ -51459,11 +53618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15666] = 3, + [15513] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1524), 12, + ACTIONS(557), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51476,12 +53635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1526), 29, + ACTIONS(555), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -51505,12 +53663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15716] = 3, + [15561] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1528), 12, + ACTIONS(1586), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51523,12 +53680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1530), 29, + ACTIONS(1588), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -51552,12 +53708,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15766] = 3, + [15609] = 4, + ACTIONS(1222), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1532), 12, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51570,18 +53727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1534), 29, + ACTIONS(1220), 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_AMP_AMP, @@ -51600,11 +53754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15816] = 3, + [15659] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 12, + ACTIONS(1590), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51617,12 +53771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(499), 29, + ACTIONS(1592), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -51646,12 +53799,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15866] = 3, + [15707] = 4, + ACTIONS(1463), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1536), 12, + ACTIONS(1456), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51664,18 +53818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1538), 29, + ACTIONS(1458), 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_AMP_AMP, @@ -51694,11 +53845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15916] = 3, + [15757] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(521), 12, + ACTIONS(1407), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51711,18 +53862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(519), 29, + ACTIONS(1409), 27, + 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, @@ -51741,11 +53890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15966] = 3, + [15805] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1540), 12, + ACTIONS(1594), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51758,12 +53907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1542), 29, + ACTIONS(1596), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, @@ -51787,212 +53935,148 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, + [15853] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1598), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1554), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1556), 2, 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), 12, + ACTIONS(1600), 27, 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_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [16097] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + anon_sym_RBRACK, 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_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [15901] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1602), 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(1568), 7, + ACTIONS(1604), 27, + 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_BQUOTE, - [16190] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + anon_sym_RBRACK, 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_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [15949] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1385), 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(1584), 7, + ACTIONS(1387), 27, + 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_LBRACK, anon_sym_RBRACK, - anon_sym_BQUOTE, - [16283] = 4, - ACTIONS(1267), 1, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [15997] = 4, + ACTIONS(1430), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1423), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52005,16 +54089,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 27, + ACTIONS(1425), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52033,93 +54116,63 @@ 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, - 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, + [16047] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1606), 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(1466), 7, + ACTIONS(1608), 27, + 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_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_RBRACK, anon_sym_DOT, - ACTIONS(1592), 1, sym_optional_chain, - STATE(674), 1, - sym_template_string, - STATE(681), 1, - sym_arguments, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [16095] = 6, + ACTIONS(569), 1, + anon_sym_EQ, + ACTIONS(1610), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(545), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52132,13 +54185,14 @@ 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(567), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -52154,291 +54208,192 @@ 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_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_BQUOTE, + [16149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1544), 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(1594), 7, + ACTIONS(1546), 27, + 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_BQUOTE, - [16583] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + anon_sym_RBRACK, 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_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [16197] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1544), 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(1596), 7, + ACTIONS(1546), 27, + 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_BQUOTE, - [16676] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + anon_sym_RBRACK, 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_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [16245] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1544), 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(1402), 7, + ACTIONS(1546), 27, + 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_BQUOTE, - [16769] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + anon_sym_RBRACK, 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_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [16293] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1612), 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(1598), 7, + ACTIONS(1614), 27, + 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_LBRACK, 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_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [16341] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(577), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52451,11 +54406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 24, + ACTIONS(579), 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, @@ -52476,220 +54432,104 @@ 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_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_BQUOTE, + [16388] = 5, + ACTIONS(1616), 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(633), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(637), 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(1446), 7, + ACTIONS(639), 23, + sym__ternary_qmark, 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_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_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, + [16439] = 5, + ACTIONS(1618), 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(583), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(587), 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(589), 23, 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_LT_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, - [17085] = 25, - ACTIONS(1333), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + 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, - 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_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(1490), 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, - [17178] = 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, + [16490] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1511), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52702,432 +54542,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 20, + ACTIONS(1513), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [17241] = 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, + [16537] = 5, + ACTIONS(1620), 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(593), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(597), 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(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(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, - 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_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(599), 23, 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, - [17419] = 22, - ACTIONS(1333), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + 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(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - 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_PIPE_PIPE, 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_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_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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, 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, + [16588] = 5, + ACTIONS(1622), 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(613), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(617), 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(619), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17575] = 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(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, - STATE(528), 1, - sym_arguments, + [16639] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1432), 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(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(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, - 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_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(1434), 26, + sym__automatic_semicolon, 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_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_of, 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, + [16686] = 5, + ACTIONS(1624), 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(573), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(577), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1554), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -53136,103 +54724,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(1546), 19, + ACTIONS(579), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [17810] = 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, - 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(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, + [16737] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1371), 12, + ACTIONS(617), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53245,16 +54768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 27, + ACTIONS(619), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -53273,26 +54795,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, + [16784] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1440), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53305,34 +54812,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 20, + ACTIONS(1442), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [18017] = 4, - ACTIONS(1411), 1, - anon_sym_EQ, + [16831] = 5, + ACTIONS(1626), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 12, + ACTIONS(623), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(627), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53345,16 +54861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 27, + ACTIONS(629), 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, @@ -53373,73 +54885,55 @@ 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, + [16882] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(627), 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(629), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [18145] = 4, - ACTIONS(511), 1, - anon_sym_EQ, + [16929] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 12, + ACTIONS(1527), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53452,16 +54946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 27, + ACTIONS(1529), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -53480,149 +54973,55 @@ 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, - 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, - STATE(528), 1, - sym_arguments, + [16976] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1452), 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), 9, + ACTIONS(1454), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [18285] = 25, - ACTIONS(1333), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_of, 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_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(1502), 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, - [18378] = 5, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(517), 1, - sym__automatic_semicolon, + [17023] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 12, + ACTIONS(1465), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53635,7 +55034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(503), 25, + ACTIONS(1467), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -53661,18 +55061,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, + [17070] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(503), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(507), 12, + ACTIONS(1515), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53685,11 +55078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 23, + ACTIONS(1517), 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, @@ -53709,13 +55105,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, + [17117] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1371), 12, + ACTIONS(1448), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53728,7 +55122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 26, + ACTIONS(1450), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -53755,78 +55149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18534] = 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, - 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(1602), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [18626] = 3, + [17164] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1532), 12, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53839,7 +55166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1534), 27, + ACTIONS(1471), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -53847,7 +55174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -53867,24 +55193,11 @@ 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, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - STATE(651), 1, - sym_arguments, + [17211] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 12, + ACTIONS(1473), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53897,13 +55210,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1357), 20, + ACTIONS(1475), 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, @@ -53917,16 +55234,19 @@ 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, - [18734] = 4, - ACTIONS(1411), 1, - anon_sym_EQ, + [17258] = 4, + ACTIONS(1628), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 12, + ACTIONS(1489), 14, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -53937,14 +55257,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 26, + anon_sym_instanceof, + ACTIONS(1491), 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, @@ -53960,25 +55279,16 @@ 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, - [18784] = 8, - 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, + [17307] = 4, + ACTIONS(1338), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1345), 12, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53991,13 +55301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 22, + ACTIONS(1220), 25, 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, @@ -54014,13 +55327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18842] = 4, - ACTIONS(1242), 1, - anon_sym_EQ, + [17356] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1411), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54033,7 +55344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 26, + ACTIONS(1413), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54060,13 +55371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18892] = 4, - ACTIONS(511), 1, - anon_sym_EQ, + [17403] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 12, + ACTIONS(637), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54079,7 +55388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 26, + ACTIONS(639), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54106,21 +55415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18942] = 8, - ACTIONS(81), 1, - anon_sym_BQUOTE, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1592), 1, - sym_optional_chain, - STATE(674), 1, - sym_template_string, + [17450] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1477), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54133,7 +55432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 22, + ACTIONS(1479), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54141,6 +55440,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -54156,15 +55458,12 @@ static const uint16_t ts_small_parse_table[] = { 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, + [17497] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(597), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54177,7 +55476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 25, + ACTIONS(599), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54203,11 +55502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [19052] = 3, + anon_sym_BQUOTE, + [17544] = 4, + ACTIONS(1342), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1536), 12, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54220,15 +55522,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1538), 27, + ACTIONS(1220), 25, 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_DOT, sym_optional_chain, @@ -54248,24 +55548,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + [17593] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 12, + ACTIONS(1485), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54278,13 +55565,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 20, + ACTIONS(1487), 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, @@ -54298,17 +55589,16 @@ 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, - [19160] = 5, - ACTIONS(599), 1, - sym__automatic_semicolon, + [17640] = 4, + ACTIONS(1628), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(591), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(595), 12, + ACTIONS(1489), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54321,9 +55611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 23, + anon_sym_instanceof, + ACTIONS(1491), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -54341,15 +55634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19211] = 3, + [17689] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1472), 12, + ACTIONS(1495), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54362,7 +55654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1474), 26, + ACTIONS(1497), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54389,11 +55681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19258] = 3, + [17736] = 5, + ACTIONS(1630), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(603), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(607), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54406,14 +55703,11 @@ 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(609), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54433,11 +55727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19305] = 3, + [17787] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1419), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54450,7 +55744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, + ACTIONS(1421), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54477,11 +55771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19352] = 3, + [17834] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1488), 12, + ACTIONS(647), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54494,7 +55788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1490), 26, + ACTIONS(649), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54521,143 +55815,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19399] = 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, + [17881] = 5, + ACTIONS(1430), 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, + ACTIONS(1632), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1423), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 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(1634), 2, + anon_sym_SLASH, 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(1490), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [19490] = 25, - ACTIONS(1586), 1, + ACTIONS(1425), 21, + sym__ternary_qmark, 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_GT_GT_GT, + anon_sym_LT_LT, 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_LT_EQ, 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_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1594), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19581] = 3, + [17932] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1400), 12, + ACTIONS(607), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54670,7 +55878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1402), 26, + ACTIONS(609), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54697,11 +55905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19628] = 3, + [17979] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1476), 12, + ACTIONS(1523), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54714,7 +55922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 26, + ACTIONS(1525), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54741,11 +55949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19675] = 3, + [18026] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1492), 12, + ACTIONS(587), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54758,7 +55966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1494), 26, + ACTIONS(589), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54785,11 +55993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19722] = 3, + [18073] = 5, + ACTIONS(1463), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1496), 12, + ACTIONS(1634), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1456), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54802,14 +56017,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(1458), 21, 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, @@ -54829,77 +56039,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19769] = 25, - ACTIONS(1586), 1, + [18124] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1218), 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(1220), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_SEMI, + anon_sym_of, 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_GT_GT_GT, + anon_sym_LT_LT, 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_LT_EQ, 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_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1498), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19860] = 3, + [18171] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1500), 12, + ACTIONS(1415), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54912,7 +56100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1502), 26, + ACTIONS(1417), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -54939,84 +56127,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19907] = 25, - ACTIONS(1586), 1, + [18218] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1436), 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(1438), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_SEMI, + anon_sym_of, 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_GT_GT_GT, + anon_sym_LT_LT, 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_LT_EQ, 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_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1502), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19998] = 5, - ACTIONS(1304), 1, - anon_sym_EQ, + [18265] = 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(1503), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55029,9 +56188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, + ACTIONS(1505), 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, @@ -55051,11 +56215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20049] = 3, + [18312] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1504), 12, + ACTIONS(1507), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55068,7 +56232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1506), 26, + ACTIONS(1509), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -55095,11 +56259,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20096] = 3, + [18359] = 5, + ACTIONS(569), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(545), 12, + ACTIONS(1636), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55112,14 +56283,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(567), 21, 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, @@ -55139,11 +56305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20143] = 3, + [18410] = 5, + ACTIONS(1335), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1508), 12, + ACTIONS(1332), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55156,14 +56329,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(1220), 21, 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, @@ -55183,11 +56351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20190] = 3, + [18461] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1444), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55200,7 +56368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1514), 26, + ACTIONS(1446), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -55227,11 +56395,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20237] = 3, + [18508] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1380), 12, + ACTIONS(1519), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55244,7 +56412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1382), 26, + ACTIONS(1521), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -55271,16 +56439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20284] = 5, - ACTIONS(579), 1, - sym__automatic_semicolon, + [18555] = 5, + ACTIONS(1348), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(575), 12, + ACTIONS(1346), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55293,11 +56463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(577), 23, + ACTIONS(1220), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55317,11 +56485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20335] = 3, + [18606] = 5, + ACTIONS(1638), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1516), 12, + ACTIONS(643), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(647), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55334,14 +56507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1518), 26, - sym__automatic_semicolon, + ACTIONS(649), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55361,11 +56531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20382] = 3, + [18657] = 5, + ACTIONS(1222), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1520), 12, + ACTIONS(1340), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55378,14 +56555,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1522), 26, - sym__automatic_semicolon, + ACTIONS(1220), 21, 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, @@ -55405,11 +56577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20429] = 3, + [18708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1384), 12, + ACTIONS(1481), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55422,7 +56594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1386), 26, + ACTIONS(1483), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -55449,61 +56621,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20476] = 5, - ACTIONS(559), 1, - sym__automatic_semicolon, + [18755] = 23, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(551), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(555), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 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(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 23, - sym__ternary_qmark, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1614), 6, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [18841] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, + ACTIONS(1644), 1, anon_sym_AMP_AMP, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 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, - [20527] = 4, - ACTIONS(1282), 1, + ACTIONS(1608), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [18927] = 6, + ACTIONS(1463), 1, anon_sym_EQ, + ACTIONS(1634), 1, + anon_sym_of, + ACTIONS(1674), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1456), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55514,11 +56769,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 25, - sym__automatic_semicolon, + ACTIONS(1458), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -55540,108 +56793,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20576] = 3, + [18979] = 23, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1413), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 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(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1415), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1677), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [19065] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, + ACTIONS(1644), 1, anon_sym_AMP_AMP, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1670), 1, 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(1672), 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(1238), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 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(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1666), 2, 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, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 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(1679), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [19151] = 6, ACTIONS(569), 1, - sym__automatic_semicolon, + anon_sym_EQ, + ACTIONS(1636), 1, + anon_sym_of, + ACTIONS(1681), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(561), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(565), 12, + ACTIONS(565), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55676,57 +56965,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20725] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(575), 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(577), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + [19203] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, + ACTIONS(1644), 1, anon_sym_AMP_AMP, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 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, - [20772] = 3, + ACTIONS(1560), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [19289] = 6, + ACTIONS(1299), 1, + anon_sym_EQ, + ACTIONS(1376), 1, + anon_sym_in, + ACTIONS(1379), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(555), 12, + ACTIONS(1218), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55737,14 +57050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 26, - sym__automatic_semicolon, + ACTIONS(1220), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55764,11 +57074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20819] = 3, + [19341] = 5, + ACTIONS(1684), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(565), 12, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55781,14 +57095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 26, + ACTIONS(1220), 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, @@ -55808,108 +57119,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20866] = 5, - ACTIONS(589), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(581), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(585), 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(587), 23, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + [19391] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, + ACTIONS(1644), 1, anon_sym_AMP_AMP, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20917] = 3, + ACTIONS(1672), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 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(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1584), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [19477] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, + ACTIONS(1644), 1, anon_sym_AMP_AMP, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 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, - [20964] = 5, - ACTIONS(609), 1, - sym__automatic_semicolon, + ACTIONS(1689), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [19563] = 6, + ACTIONS(1430), 1, + anon_sym_EQ, + ACTIONS(1632), 1, + anon_sym_of, + ACTIONS(1691), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(601), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(605), 12, + ACTIONS(1423), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55920,7 +57267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 23, + ACTIONS(1425), 23, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -55944,189 +57291,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21015] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(585), 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(587), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + [19615] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, + ACTIONS(1644), 1, anon_sym_AMP_AMP, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21062] = 3, + ACTIONS(1672), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(595), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 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(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1592), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [19701] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, + ACTIONS(1644), 1, anon_sym_AMP_AMP, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21109] = 3, + ACTIONS(1672), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(605), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 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(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1694), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [19787] = 13, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 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(1648), 1, + anon_sym_GT_GT, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 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, - [21156] = 5, - ACTIONS(539), 1, - sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(531), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(535), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 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(537), 23, + ACTIONS(1696), 16, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21207] = 3, + [19853] = 5, + ACTIONS(1700), 1, + anon_sym_LPAREN, + ACTIONS(1703), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(535), 12, + ACTIONS(1473), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56139,14 +57491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 26, + ACTIONS(1475), 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, @@ -56166,11 +57515,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21254] = 3, + [19903] = 8, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1417), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1698), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56183,173 +57543,454 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1419), 26, - sym__automatic_semicolon, + ACTIONS(1696), 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21301] = 3, + [19959] = 23, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1480), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1705), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [20045] = 19, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1648), 1, anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, anon_sym_PIPE, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1482), 26, - sym__automatic_semicolon, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1696), 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, + [20123] = 20, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 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, + ACTIONS(1696), 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, + [20203] = 11, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 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(1486), 26, - sym__automatic_semicolon, + ACTIONS(1696), 18, 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21395] = 5, - ACTIONS(549), 1, - sym__automatic_semicolon, + [20265] = 17, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(541), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(545), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1698), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1696), 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, + [20339] = 18, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1648), 1, anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(547), 23, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1696), 11, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + 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, + [20415] = 19, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_CARET, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1698), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 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, - [21446] = 3, + ACTIONS(1696), 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, + [20493] = 10, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1698), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -56358,41 +57999,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, - sym__automatic_semicolon, + ACTIONS(1696), 18, 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21493] = 3, + [20553] = 8, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1524), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1698), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56405,87 +58048,155 @@ 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(1696), 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21540] = 3, + [20609] = 15, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1528), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1698), 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(1530), 26, - sym__automatic_semicolon, + ACTIONS(1696), 13, 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_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [20679] = 21, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, + ACTIONS(1644), 1, anon_sym_AMP_AMP, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 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, - [21587] = 4, - ACTIONS(1642), 1, - sym_regex_flags, + ACTIONS(1696), 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, + [20761] = 5, + ACTIONS(1299), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 14, + ACTIONS(1361), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56496,13 +58207,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1367), 23, - sym__automatic_semicolon, + ACTIONS(1220), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56518,87 +58225,204 @@ 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, - [21636] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [20811] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1600), 5, - sym__automatic_semicolon, + ACTIONS(1707), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [21727] = 5, - ACTIONS(1378), 1, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [20897] = 23, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1604), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [20983] = 23, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1644), 4, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1640), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1709), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1371), 12, + [21069] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1385), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56611,9 +58435,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 21, + ACTIONS(1387), 24, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56632,19 +58460,17 @@ 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, + [21114] = 6, + ACTIONS(569), 1, anon_sym_EQ, + ACTIONS(1531), 1, + anon_sym_RBRACK, + ACTIONS(1636), 1, + anon_sym_COMMA, 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, + ACTIONS(565), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56657,7 +58483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 21, + ACTIONS(567), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -56679,18 +58505,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21829] = 5, - ACTIONS(511), 1, - anon_sym_EQ, + [21165] = 3, 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(1594), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56703,9 +58522,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 21, + ACTIONS(1596), 24, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56724,12 +58547,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21880] = 3, + [21210] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1392), 12, + ACTIONS(1570), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56742,12 +58564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 26, + ACTIONS(1572), 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, @@ -56768,19 +58589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21927] = 5, - ACTIONS(1295), 1, - anon_sym_EQ, + [21255] = 3, 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(1598), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56793,9 +58606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, + ACTIONS(1600), 24, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56814,12 +58631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21978] = 3, + [21300] = 6, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1566), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56832,17 +58654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 26, + ACTIONS(1568), 21, 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, @@ -56858,78 +58676,95 @@ static const uint16_t ts_small_parse_table[] = { 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, + [21351] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1586), 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(1588), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, 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_GT_GT_GT, + anon_sym_LT_LT, 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [21396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1602), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 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(1634), 2, + anon_sym_SLASH, 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(1568), 5, + ACTIONS(1604), 24, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [22116] = 3, + 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, + [21441] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56942,12 +58777,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 26, + ACTIONS(1614), 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, @@ -56968,12 +58802,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22163] = 3, + [21486] = 7, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 12, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56986,17 +58828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 26, + ACTIONS(1564), 19, 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, @@ -57010,14 +58848,11 @@ 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, - [22210] = 3, + [21539] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1425), 12, + ACTIONS(1578), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57030,12 +58865,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1427), 26, + ACTIONS(1580), 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, @@ -57056,12 +58890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22257] = 3, + [21584] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1544), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57074,12 +58907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 26, + ACTIONS(1546), 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, @@ -57100,12 +58932,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22304] = 3, + [21629] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1396), 12, + ACTIONS(553), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57118,12 +58949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1398), 26, + ACTIONS(551), 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, @@ -57144,12 +58974,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22351] = 3, + [21674] = 7, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1429), 12, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1548), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57162,17 +59000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1431), 26, + ACTIONS(1550), 19, 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, @@ -57186,14 +59020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22398] = 3, + [21727] = 4, + ACTIONS(1715), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(553), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57206,12 +59039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1435), 26, - sym__automatic_semicolon, + ACTIONS(551), 23, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, anon_sym_LBRACK, @@ -57232,12 +59063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22445] = 3, + [21774] = 6, + ACTIONS(1427), 1, + anon_sym_RBRACK, + ACTIONS(1430), 1, + anon_sym_EQ, + ACTIONS(1632), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 12, + ACTIONS(1423), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57250,14 +59086,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(1425), 21, 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, @@ -57277,13 +59108,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22492] = 4, - ACTIONS(1642), 1, - sym_regex_flags, + [21825] = 6, + ACTIONS(1460), 1, + anon_sym_RBRACK, + ACTIONS(1463), 1, + anon_sym_EQ, + ACTIONS(1634), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1456), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57296,14 +59131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1367), 24, - sym__automatic_semicolon, + ACTIONS(1458), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57319,14 +59149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22541] = 3, + [21876] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1540), 12, + ACTIONS(1606), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57339,12 +59170,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1542), 26, + ACTIONS(1608), 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, @@ -57365,78 +59195,96 @@ 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, + [21921] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1558), 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(1560), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, 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_GT_GT_GT, + anon_sym_LT_LT, 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [21966] = 4, + ACTIONS(1556), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(547), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 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(1634), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(545), 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, - 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_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1598), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22679] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [22013] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1444), 12, + ACTIONS(1574), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57449,12 +59297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 26, + ACTIONS(1576), 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, @@ -57475,134 +59322,95 @@ 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, - 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, + [22058] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1544), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 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(1634), 2, + anon_sym_SLASH, 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(1446), 5, + ACTIONS(1546), 24, sym__automatic_semicolon, + sym__ternary_qmark, 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_of, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1630), 1, anon_sym_STAR_STAR, - STATE(651), 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, + [22103] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(557), 12, 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, anon_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), 15, + ACTIONS(555), 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_BQUOTE, - [22888] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [22148] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1448), 12, + ACTIONS(1544), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57615,12 +59423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1450), 26, + ACTIONS(1546), 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, @@ -57641,159 +59448,140 @@ 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, + [22193] = 6, + ACTIONS(1332), 1, + anon_sym_RBRACK, + ACTIONS(1335), 1, + anon_sym_EQ, + ACTIONS(1346), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1218), 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(1220), 21, + sym__ternary_qmark, 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_GT_GT_GT, + anon_sym_LT_LT, 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22244] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1544), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1668), 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(1676), 2, + anon_sym_SLASH, 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(1594), 5, + ACTIONS(1546), 24, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_of, - anon_sym_BQUOTE, - [23026] = 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_GT_GT_GT, + anon_sym_LT_LT, 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [22289] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1590), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1668), 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(1676), 2, + anon_sym_SLASH, 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(1402), 5, + ACTIONS(1592), 24, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_of, - anon_sym_BQUOTE, - [23117] = 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_AMP_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(651), 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, + [22334] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1582), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57806,1717 +59594,1918 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, + ACTIONS(1584), 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_BQUOTE, - [23178] = 25, - ACTIONS(1586), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [22379] = 4, + ACTIONS(1493), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1489), 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(1491), 20, + sym__ternary_qmark, 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_GT_GT_GT, + anon_sym_LT_LT, 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1682), 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, + anon_sym_BQUOTE, + [22425] = 24, + ACTIONS(99), 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(1568), 5, - sym__automatic_semicolon, + ACTIONS(101), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23269] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(111), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(1721), 1, + anon_sym_RBRACE, + ACTIONS(1723), 1, + anon_sym_LBRACK, + ACTIONS(1725), 1, + anon_sym_async, + ACTIONS(1729), 1, + anon_sym_static, + STATE(928), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, + STATE(1407), 1, + aux_sym_object_repeat1, + STATE(1409), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1727), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1731), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1717), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1352), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1386), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1463), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1943), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [22511] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1598), 5, + ACTIONS(1604), 4, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23360] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [22595] = 25, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(1767), 1, + anon_sym_COMMA, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1761), 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(1446), 5, + ACTIONS(1769), 2, 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, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1658), 1, - anon_sym_GT_GT, - ACTIONS(1670), 1, - anon_sym_PERCENT, - ACTIONS(1672), 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(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(1554), 7, + ACTIONS(1735), 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_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1757), 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, - [23522] = 10, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [22683] = 21, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1672), 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(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), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1737), 1, anon_sym_AMP_AMP, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - 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, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, + ACTIONS(1696), 6, 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, + [22763] = 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(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LBRACK, + ACTIONS(1773), 1, + anon_sym_RBRACE, + ACTIONS(1775), 1, + anon_sym_async, + ACTIONS(1777), 1, + anon_sym_static, + STATE(928), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, + STATE(1407), 1, + aux_sym_object_repeat1, + STATE(1409), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1727), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1779), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1771), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1352), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1386), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1463), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1943), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [22849] = 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(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LBRACK, + ACTIONS(1783), 1, + anon_sym_RBRACE, + ACTIONS(1785), 1, + anon_sym_async, + ACTIONS(1787), 1, + anon_sym_static, + STATE(928), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, + STATE(1407), 1, + aux_sym_object_repeat1, + STATE(1409), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1727), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1789), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1781), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1352), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1386), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1463), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1943), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [22935] = 25, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1737), 1, + anon_sym_AMP_AMP, + ACTIONS(1739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1763), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1765), 1, + sym__ternary_qmark, + ACTIONS(1767), 1, + anon_sym_COMMA, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1791), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1757), 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_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, + [23023] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1658), 1, + ACTIONS(1739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1763), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1765), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, + ACTIONS(1677), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, 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, + [23107] = 8, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1670), 1, - anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1698), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1668), 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), 17, + ACTIONS(1696), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [23901] = 19, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [23161] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1737), 1, + anon_sym_AMP_AMP, + ACTIONS(1739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1670), 1, + ACTIONS(1745), 1, + anon_sym_AMP, + ACTIONS(1747), 1, + anon_sym_CARET, + ACTIONS(1749), 1, + anon_sym_PIPE, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1763), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1765), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, + ACTIONS(1689), 4, 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_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, + [23245] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1737), 1, + anon_sym_AMP_AMP, + ACTIONS(1739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(1747), 1, + anon_sym_CARET, + ACTIONS(1749), 1, + anon_sym_PIPE, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1763), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1765), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, + ACTIONS(1608), 4, 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_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, + [23329] = 25, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1737), 1, + anon_sym_AMP_AMP, + ACTIONS(1739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1670), 1, + ACTIONS(1749), 1, + anon_sym_PIPE, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1763), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1765), 1, + sym__ternary_qmark, + ACTIONS(1767), 1, + anon_sym_COMMA, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1793), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1757), 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_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, + [23417] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1670), 1, + ACTIONS(1737), 1, + anon_sym_AMP_AMP, + ACTIONS(1739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1741), 1, + anon_sym_GT_GT, + ACTIONS(1745), 1, + anon_sym_AMP, + ACTIONS(1747), 1, + anon_sym_CARET, + ACTIONS(1749), 1, + anon_sym_PIPE, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1763), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1765), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 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, + ACTIONS(1743), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 17, - 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_LT_EQ, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1735), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 3, + anon_sym_LT_EQ, 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, + ACTIONS(1560), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [23501] = 11, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1672), 1, + ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1733), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1751), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 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), 18, + ACTIONS(1696), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [24270] = 17, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [23561] = 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(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LBRACK, + ACTIONS(1797), 1, + anon_sym_RBRACE, + ACTIONS(1799), 1, + anon_sym_async, + ACTIONS(1801), 1, + anon_sym_static, + STATE(928), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, + STATE(1397), 1, + aux_sym_object_repeat1, + STATE(1409), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1727), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1803), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1795), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1352), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1365), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1386), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1943), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [23647] = 19, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1698), 1, + anon_sym_PIPE, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1670), 1, + ACTIONS(1745), 1, + anon_sym_AMP, + ACTIONS(1747), 1, + anon_sym_CARET, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1652), 3, + ACTIONS(1759), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1761), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1757), 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, + ACTIONS(1696), 8, 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_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, + [23723] = 25, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1763), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1765), 1, + sym__ternary_qmark, + ACTIONS(1767), 1, + anon_sym_COMMA, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1805), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1757), 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, + [23811] = 25, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(1767), 1, + anon_sym_COMMA, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1807), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1757), 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, + [23899] = 10, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 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, + ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(1755), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1698), 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(1696), 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, + [23957] = 23, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, + ACTIONS(1737), 1, + anon_sym_AMP_AMP, + ACTIONS(1739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1741), 1, + anon_sym_GT_GT, + ACTIONS(1745), 1, + anon_sym_AMP, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1466), 5, + ACTIONS(1709), 4, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [24614] = 22, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [24041] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1616), 1, + ACTIONS(1815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1839), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1841), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, + ACTIONS(1584), 4, 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, + anon_sym_of, + [24125] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1628), 1, + ACTIONS(1813), 1, + anon_sym_AMP_AMP, + ACTIONS(1815), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1817), 1, + anon_sym_GT_GT, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1823), 1, + anon_sym_CARET, + ACTIONS(1825), 1, + anon_sym_PIPE, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1839), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1841), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1626), 2, + ACTIONS(1819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, + ACTIONS(1835), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1837), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1811), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1833), 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, + [24209] = 6, + ACTIONS(1222), 1, + anon_sym_EQ, + ACTIONS(1376), 1, anon_sym_in, + ACTIONS(1379), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1218), 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(1546), 17, - sym__automatic_semicolon, + ACTIONS(1220), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24766] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [24259] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1839), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1841), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1490), 5, + ACTIONS(1709), 4, 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, + [24343] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1839), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1841), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1498), 5, + ACTIONS(1592), 4, 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, + [24427] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1839), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1841), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1502), 5, + ACTIONS(1694), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_BQUOTE, - [25039] = 19, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [24511] = 13, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1628), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 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(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1698), 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(1636), 2, + ACTIONS(1696), 14, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [24575] = 8, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, + ACTIONS(1831), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1698), 12, + anon_sym_STAR, 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, + 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(1696), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25118] = 20, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_instanceof, + [24629] = 20, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(1737), 1, + anon_sym_AMP_AMP, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1628), 1, + ACTIONS(1747), 1, + anon_sym_CARET, + ACTIONS(1749), 1, + anon_sym_PIPE, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, + ACTIONS(1696), 7, 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, - anon_sym_BQUOTE, - [25199] = 21, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [24707] = 19, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1628), 1, + ACTIONS(1825), 1, + anon_sym_PIPE, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, + ACTIONS(1696), 8, 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_QMARK_QMARK, - anon_sym_BQUOTE, - [25282] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [24783] = 20, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1600), 5, + ACTIONS(1696), 7, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_BQUOTE, - [25373] = 12, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [24861] = 11, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1628), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1554), 10, + ACTIONS(1827), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 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_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 17, + ACTIONS(1696), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -59528,186 +61517,195 @@ static const uint16_t ts_small_parse_table[] = { 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, + [24921] = 17, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1630), 1, + ACTIONS(1817), 1, + anon_sym_GT_GT, + ACTIONS(1829), 1, + anon_sym_PERCENT, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1698), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1809), 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(1819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, + ACTIONS(1837), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1811), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1833), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1696), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [25499] = 17, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [24993] = 18, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1698), 1, + anon_sym_PIPE, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1628), 1, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1610), 3, + ACTIONS(1835), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1837), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1833), 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, + ACTIONS(1696), 9, 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_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, + [25067] = 19, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1698), 1, + anon_sym_PIPE, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, + ACTIONS(1696), 8, 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_QMARK_QMARK, - anon_sym_BQUOTE, - [25661] = 3, + [25143] = 10, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, + ACTIONS(1829), 1, + anon_sym_PERCENT, + ACTIONS(1831), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1452), 12, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1809), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1698), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -59716,41 +61714,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(1454), 26, + ACTIONS(1696), 16, 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, - [25708] = 3, + [25201] = 8, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, + ACTIONS(1831), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1456), 12, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1698), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -59763,2169 +61761,1707 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1458), 26, + ACTIONS(1696), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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, - 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), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + [25255] = 15, + ACTIONS(1536), 1, anon_sym_LBRACK, + ACTIONS(1538), 1, anon_sym_DOT, + ACTIONS(1711), 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(1817), 1, + anon_sym_GT_GT, + ACTIONS(1829), 1, anon_sym_PERCENT, + ACTIONS(1831), 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, - [25804] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1460), 12, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1809), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1827), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1833), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1698), 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(1462), 26, + ACTIONS(1696), 11, 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, - [25851] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [25323] = 21, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1596), 5, + ACTIONS(1696), 6, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - anon_sym_BQUOTE, - [25942] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_QMARK_QMARK, + [25403] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1839), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1841), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1584), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26033] = 3, - 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, + ACTIONS(1707), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + [25487] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, + ACTIONS(1538), 1, anon_sym_DOT, + ACTIONS(1711), 1, sym_optional_chain, + ACTIONS(1813), 1, anon_sym_AMP_AMP, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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, - 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, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1839), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1841), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1466), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26171] = 3, - 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, + ACTIONS(1604), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_of, + [25571] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, + ACTIONS(1538), 1, anon_sym_DOT, + ACTIONS(1711), 1, sym_optional_chain, + ACTIONS(1813), 1, anon_sym_AMP_AMP, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1817), 1, + anon_sym_GT_GT, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1823), 1, anon_sym_CARET, + ACTIONS(1825), 1, + anon_sym_PIPE, + ACTIONS(1829), 1, anon_sym_PERCENT, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1839), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1841), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1809), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1827), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1835), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1811), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1833), 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, - [26218] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1614), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [25655] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1839), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1841), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1596), 5, + ACTIONS(1608), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [26309] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_of, + [25739] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1839), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1841), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1811), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1402), 5, + ACTIONS(1560), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [26400] = 27, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_of, + [25823] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - ACTIONS(1684), 1, - anon_sym_COMMA, - ACTIONS(1687), 1, - anon_sym_RBRACE, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26494] = 5, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1315), 3, + ACTIONS(1679), 4, + sym__automatic_semicolon, anon_sym_COMMA, 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, + anon_sym_SEMI, + [25907] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1839), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1841), 1, sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_in, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1652), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 2, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1674), 3, + ACTIONS(1811), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1689), 4, + ACTIONS(1677), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_of, - [26636] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [25991] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1694), 4, + ACTIONS(1843), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [26726] = 27, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [26075] = 25, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - ACTIONS(1696), 1, + ACTIONS(1767), 1, anon_sym_COMMA, - ACTIONS(1699), 1, - anon_sym_RBRACE, - STATE(651), 1, - sym_arguments, + STATE(1314), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1845), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26820] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [26163] = 17, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1755), 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, + ACTIONS(1698), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1701), 4, + ACTIONS(1696), 9, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [26910] = 6, - ACTIONS(1378), 1, - anon_sym_EQ, - ACTIONS(1644), 1, - anon_sym_of, - ACTIONS(1703), 1, - anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [26235] = 19, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, + ACTIONS(1741), 1, + anon_sym_GT_GT, + ACTIONS(1745), 1, + anon_sym_AMP, + ACTIONS(1747), 1, + anon_sym_CARET, + ACTIONS(1749), 1, + anon_sym_PIPE, + ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(1755), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1371), 11, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1733), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1743), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 23, + ACTIONS(1761), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1735), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1696), 8, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [26311] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, + ACTIONS(1538), 1, anon_sym_DOT, + ACTIONS(1711), 1, sym_optional_chain, + ACTIONS(1813), 1, anon_sym_AMP_AMP, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1817), 1, + anon_sym_GT_GT, + ACTIONS(1821), 1, + anon_sym_AMP, + ACTIONS(1823), 1, anon_sym_CARET, + ACTIONS(1825), 1, + anon_sym_PIPE, + ACTIONS(1829), 1, anon_sym_PERCENT, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1839), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26962] = 6, - ACTIONS(1411), 1, - anon_sym_EQ, - ACTIONS(1646), 1, - anon_sym_of, - ACTIONS(1706), 1, - anon_sym_in, + ACTIONS(1841), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 11, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1809), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1819), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 23, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1837), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27014] = 6, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(1648), 1, - anon_sym_of, - ACTIONS(1709), 1, + ACTIONS(1811), 3, anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(507), 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(509), 23, - sym__ternary_qmark, + ACTIONS(1833), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1679), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + [26395] = 18, + ACTIONS(1536), 1, anon_sym_LBRACK, + ACTIONS(1538), 1, anon_sym_DOT, + ACTIONS(1698), 1, + anon_sym_PIPE, + ACTIONS(1711), 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(1741), 1, + anon_sym_GT_GT, + ACTIONS(1745), 1, + anon_sym_AMP, + ACTIONS(1753), 1, anon_sym_PERCENT, + ACTIONS(1755), 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, - [27066] = 5, - ACTIONS(1712), 1, - anon_sym_LPAREN, - ACTIONS(1715), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1733), 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(1743), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 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, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27116] = 6, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(1318), 1, + ACTIONS(1735), 3, 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, + ACTIONS(1757), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1696), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, 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, - [27168] = 27, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [26469] = 25, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - ACTIONS(1717), 1, + ACTIONS(1847), 1, anon_sym_COMMA, - STATE(651), 1, - sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(1850), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1689), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1719), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27262] = 27, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [26557] = 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(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LBRACK, + ACTIONS(1854), 1, + anon_sym_RBRACE, + ACTIONS(1856), 1, + anon_sym_async, + ACTIONS(1858), 1, + anon_sym_static, + STATE(928), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, + STATE(1407), 1, + aux_sym_object_repeat1, + STATE(1409), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1727), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1860), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1852), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1352), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1386), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1463), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1943), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [26643] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(651), 1, - sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1721), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27356] = 27, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1862), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [26727] = 24, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1813), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1815), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1817), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1821), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1823), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1825), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1829), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1831), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1839), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1841), 1, sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(651), 1, - sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(1866), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1809), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1811), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1819), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1827), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1837), 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, + ACTIONS(1833), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27450] = 27, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1864), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [26813] = 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(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LBRACK, + ACTIONS(1871), 1, + anon_sym_RBRACE, + ACTIONS(1873), 1, + anon_sym_async, + ACTIONS(1875), 1, + anon_sym_static, + STATE(928), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, + STATE(1407), 1, + aux_sym_object_repeat1, + STATE(1409), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1727), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1877), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1869), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1352), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1386), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1463), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1943), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [26899] = 25, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - ACTIONS(1687), 1, + ACTIONS(1850), 1, anon_sym_RBRACE, - ACTIONS(1725), 1, + ACTIONS(1879), 1, anon_sym_COMMA, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1594), 2, + ACTIONS(1694), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27544] = 5, - ACTIONS(1728), 1, - anon_sym_LPAREN, - ACTIONS(1731), 1, - anon_sym_COLON, - 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, + [26987] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, + ACTIONS(1538), 1, anon_sym_DOT, + ACTIONS(1711), 1, sym_optional_chain, + ACTIONS(1737), 1, anon_sym_AMP_AMP, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1741), 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, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(1755), 1, + anon_sym_STAR_STAR, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - ACTIONS(1733), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1283), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27687] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1707), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [27071] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1711), 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(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1741), 1, + anon_sym_GT_GT, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(1755), 1, + anon_sym_STAR_STAR, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1765), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27780] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1592), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [27155] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1711), 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(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1741), 1, + anon_sym_GT_GT, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(1755), 1, + anon_sym_STAR_STAR, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1739), 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, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27873] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1694), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [27239] = 13, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1755), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1751), 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, + ACTIONS(1698), 7, 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, - 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(1743), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1317), 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, - [28059] = 27, - ACTIONS(698), 1, + ACTIONS(1696), 14, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - 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_RBRACE, + anon_sym_SEMI, 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, - 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(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_QMARK_QMARK, anon_sym_instanceof, - [28245] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [27303] = 25, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(1882), 1, + anon_sym_COMMA, + ACTIONS(1885), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1694), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1761), 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, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28334] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [27391] = 15, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1741), 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, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1755), 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, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1751), 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, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1757), 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(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, + ACTIONS(1698), 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(1373), 21, + ACTIONS(1696), 11, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28474] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [27459] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1711), 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(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1741), 1, + anon_sym_GT_GT, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(1755), 1, + anon_sym_STAR_STAR, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1783), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1757), 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, + ACTIONS(1584), 4, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [27543] = 4, + ACTIONS(1381), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 12, + ACTIONS(1218), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61938,9 +63474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 21, + ACTIONS(1220), 22, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61960,17 +63497,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28618] = 6, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(1441), 1, - anon_sym_RBRACK, - ACTIONS(1648), 1, - anon_sym_COMMA, + [27589] = 8, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, + ACTIONS(1755), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 12, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1698), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61983,3734 +63525,3916 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 21, + ACTIONS(1696), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28669] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [27643] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1711), 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(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1741), 1, + anon_sym_GT_GT, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(1755), 1, + anon_sym_STAR_STAR, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1765), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28762] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1614), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [27727] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1889), 1, + anon_sym_RBRACK, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 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, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28851] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [27814] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1787), 1, + ACTIONS(1891), 1, anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28944] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [27901] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1789), 1, - anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + ACTIONS(1893), 1, + anon_sym_RPAREN, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 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, + [27988] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1791), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1355), 1, - aux_sym_array_repeat1, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1895), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29130] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [28075] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1711), 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(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1741), 1, + anon_sym_GT_GT, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(1755), 1, + anon_sym_STAR_STAR, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1765), 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, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1705), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1757), 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, + [28158] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1795), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1367), 1, - aux_sym_array_repeat1, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1897), 1, + anon_sym_SEMI, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29316] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [28245] = 25, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 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, + ACTIONS(1899), 1, + anon_sym_RPAREN, + STATE(1366), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29409] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [28332] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1799), 1, - anon_sym_RBRACE, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + ACTIONS(1901), 1, + anon_sym_RBRACK, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29502] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [28419] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1801), 1, + ACTIONS(1903), 1, anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29595] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [28506] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1803), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + ACTIONS(1905), 1, + anon_sym_SEMI, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29688] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [28593] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1805), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + ACTIONS(1907), 1, + anon_sym_RBRACK, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29781] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [28680] = 25, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 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, + ACTIONS(1909), 1, + anon_sym_RBRACK, + STATE(1355), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29874] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [28767] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1809), 1, + ACTIONS(1911), 1, anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29967] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [28854] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1811), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + ACTIONS(1913), 1, + anon_sym_RBRACE, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30060] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [28941] = 25, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1813), 1, - anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(1915), 1, + anon_sym_RBRACK, + STATE(1446), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30153] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [29028] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1917), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 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, + [29115] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1817), 1, + ACTIONS(1919), 1, anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30335] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [29202] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1921), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 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, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30424] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [29289] = 25, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(1923), 1, + anon_sym_RBRACK, + STATE(1446), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 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, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30513] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [29376] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1819), 1, - anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + ACTIONS(1925), 1, + anon_sym_RPAREN, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30606] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [29463] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1821), 1, + ACTIONS(1927), 1, anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30699] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [29550] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1761), 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, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30788] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [29633] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1929), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 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, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30877] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [29720] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1931), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 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, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30966] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [29807] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 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, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1823), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + ACTIONS(1933), 1, + anon_sym_SEMI, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31059] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [29894] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1825), 1, - anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + ACTIONS(1935), 1, + anon_sym_RBRACE, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31152] = 15, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [29981] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1769), 1, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1937), 1, + anon_sym_SEMI, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 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, + ACTIONS(1666), 2, 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, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_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, + [30068] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1827), 1, + ACTIONS(1939), 1, anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31314] = 10, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [30155] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1771), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1640), 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(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1666), 2, 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, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_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, + ACTIONS(1941), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [30238] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1943), 1, + anon_sym_RBRACK, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 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, + [30325] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1945), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 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, + [30412] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1769), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1947), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1767), 2, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 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, + ACTIONS(1666), 2, 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, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_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, + [30499] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1949), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 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, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31691] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [30586] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1829), 1, - anon_sym_RBRACE, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + ACTIONS(1951), 1, + anon_sym_RPAREN, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31784] = 19, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [30673] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1769), 1, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1953), 1, + anon_sym_RBRACE, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 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, + [30760] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1757), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1769), 1, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1955), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 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_LPAREN, - ACTIONS(1335), 1, + [30847] = 25, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1757), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1769), 1, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1957), 1, + anon_sym_RPAREN, + STATE(1394), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 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, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [30934] = 25, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1769), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1959), 1, + anon_sym_RPAREN, + STATE(1403), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 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, + ACTIONS(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1666), 2, 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, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [32084] = 10, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [31021] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1961), 1, + anon_sym_COLON, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1640), 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(1650), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1666), 2, 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, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1664), 3, + anon_sym_LT_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, + [31108] = 25, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 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(1963), 1, + anon_sym_RPAREN, + STATE(1373), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32236] = 17, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [31195] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1769), 1, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_RPAREN, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 3, + ACTIONS(1666), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1668), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 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, + [31282] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1833), 1, + ACTIONS(1967), 1, anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32402] = 23, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [31369] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(1887), 1, + anon_sym_COMMA, + ACTIONS(1969), 1, + anon_sym_SEMI, + STATE(1127), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1664), 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, + [31456] = 25, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1648), 1, + anon_sym_GT_GT, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1660), 1, + anon_sym_PERCENT, + ACTIONS(1662), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1887), 1, anon_sym_COMMA, - ACTIONS(1835), 1, + ACTIONS(1971), 1, anon_sym_RPAREN, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, + STATE(1127), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32580] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [31543] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2005), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1584), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2001), 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, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32669] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [31625] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2005), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1608), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32762] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [31707] = 24, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2007), 1, + anon_sym_SEMI, + ACTIONS(2009), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1761), 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, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1757), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32851] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [31791] = 18, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1698), 1, + anon_sym_PIPE, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1995), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32944] = 27, - ACTIONS(698), 1, + ACTIONS(1696), 7, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [31863] = 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(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, + anon_sym_LBRACK, + ACTIONS(2016), 1, + anon_sym_async, + ACTIONS(2018), 1, + anon_sym_static, + STATE(928), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1727), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2013), 2, anon_sym_COMMA, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_RBRACE, + ACTIONS(2020), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2011), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1386), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1789), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1851), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1943), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [31941] = 15, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1991), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1975), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1997), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1698), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 9, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, 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_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, 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, + [32007] = 17, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1698), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33037] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1696), 7, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [32077] = 21, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1989), 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(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33130] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1696), 4, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + [32155] = 19, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1698), 1, + anon_sym_PIPE, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1995), 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, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2001), 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, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33219] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1696), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [32229] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2005), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1707), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1997), 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, + [32311] = 23, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1977), 1, + anon_sym_AMP_AMP, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1987), 1, + anon_sym_CARET, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, + ACTIONS(2003), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2005), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1560), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1991), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1999), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2001), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1997), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32393] = 23, + ACTIONS(1536), 1, + anon_sym_LBRACK, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, + ACTIONS(1737), 1, + anon_sym_AMP_AMP, + ACTIONS(1739), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1741), 1, anon_sym_GT_GT, + ACTIONS(1745), 1, anon_sym_AMP, + ACTIONS(1747), 1, + anon_sym_CARET, + ACTIONS(1749), 1, anon_sym_PIPE, + ACTIONS(1753), 1, + anon_sym_PERCENT, + ACTIONS(1755), 1, + anon_sym_STAR_STAR, + ACTIONS(1763), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1765), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1743), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, - sym__ternary_qmark, - anon_sym_LPAREN, + ACTIONS(1761), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2022), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1735), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32475] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, + ACTIONS(1393), 1, anon_sym_DOT, + ACTIONS(1552), 1, sym_optional_chain, + ACTIONS(1977), 1, anon_sym_AMP_AMP, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1987), 1, anon_sym_CARET, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(1993), 1, anon_sym_PERCENT, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2003), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2005), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1679), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1991), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1999), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1975), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1997), 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, - [33359] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [32557] = 19, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1981), 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, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1989), 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(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33452] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1696), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [32631] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2005), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1592), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2001), 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, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33541] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [32713] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2005), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1584), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1614), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33629] = 4, - ACTIONS(1327), 1, - anon_sym_EQ, + [32795] = 23, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1977), 1, + anon_sym_AMP_AMP, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1987), 1, + anon_sym_CARET, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, + ACTIONS(2003), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2005), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1677), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 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(1983), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 22, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, + ACTIONS(2001), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1975), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1997), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32877] = 23, + ACTIONS(1536), 1, anon_sym_LBRACK, + ACTIONS(1538), 1, anon_sym_DOT, + ACTIONS(1711), 1, sym_optional_chain, + ACTIONS(1737), 1, anon_sym_AMP_AMP, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1741), 1, + anon_sym_GT_GT, + ACTIONS(1745), 1, + anon_sym_AMP, + ACTIONS(1747), 1, anon_sym_CARET, + ACTIONS(1749), 1, + anon_sym_PIPE, + ACTIONS(1753), 1, anon_sym_PERCENT, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1763), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1765), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1713), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1733), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1743), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1751), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1759), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2024), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1735), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 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, - [33675] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [32959] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2005), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1604), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1881), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1548), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33763] = 4, - ACTIONS(1369), 1, - sym_regex_flags, + [33041] = 8, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 14, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1698), 12, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -65721,1057 +67445,622 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1367), 20, + ACTIONS(1696), 15, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [33809] = 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, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1887), 1, - anon_sym_RBRACE, - ACTIONS(1889), 1, + anon_sym_instanceof, + [33093] = 23, + ACTIONS(1391), 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(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1977), 1, + anon_sym_AMP_AMP, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1987), 1, + anon_sym_CARET, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, + ACTIONS(2003), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2005), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1897), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1883), 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, - 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_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, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1709), 2, anon_sym_LBRACE, - ACTIONS(1889), 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(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1907), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1899), 3, - anon_sym_export, - anon_sym_let, - 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, - 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_COLON, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1991), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1999), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2001), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1975), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1997), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [33175] = 24, + ACTIONS(1536), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1538), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1711), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1737), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1739), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1741), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1745), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1747), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1749), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1753), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1755), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1763), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1765), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + ACTIONS(2026), 1, + anon_sym_SEMI, + ACTIONS(2028), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1713), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1733), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1743), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1751), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1761), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1909), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(1735), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1757), 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, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1913), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, - anon_sym_async, - ACTIONS(1917), 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, - sym_number, - sym_private_property_identifier, - ACTIONS(1919), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1911), 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, - 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, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1923), 1, - anon_sym_RBRACE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 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, - sym_number, - sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1921), 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, - 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, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 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, - 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, - 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, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 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, - sym_number, - sym_private_property_identifier, - ACTIONS(1949), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1941), 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, - 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(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, + [33259] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2005), 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, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1694), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34553] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33341] = 20, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1687), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1548), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34641] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1696), 5, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [33417] = 10, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1995), 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, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1698), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1696), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - 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_QMARK_QMARK, anon_sym_instanceof, - [34729] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33473] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2005), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1594), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1689), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34817] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33555] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1402), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1850), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34905] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33637] = 8, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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, + ACTIONS(1995), 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, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1568), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1698), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 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(1873), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1696), 15, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - 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_QMARK_QMARK, anon_sym_instanceof, - [34993] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33689] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1598), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1885), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35081] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33771] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1446), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2030), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35169] = 15, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33853] = 11, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1867), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 7, + ACTIONS(1698), 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), 12, + ACTIONS(1696), 14, sym__ternary_qmark, - anon_sym_of, + 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, @@ -66779,2160 +68068,2179 @@ static const uint16_t ts_small_parse_table[] = { 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, + [33911] = 13, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1869), 1, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1973), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1991), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 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), 15, + ACTIONS(1696), 12, sym__ternary_qmark, - anon_sym_of, + 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, - [35295] = 21, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [33973] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1855), 1, + ACTIONS(1707), 1, + anon_sym_of, + ACTIONS(2036), 1, + anon_sym_AMP_AMP, + ACTIONS(2038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2064), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2056), 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, + [34054] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1679), 1, + anon_sym_of, + ACTIONS(2036), 1, anon_sym_AMP_AMP, - ACTIONS(1855), 1, + ACTIONS(2038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2064), 1, + sym__ternary_qmark, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2056), 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, + [34135] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - 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(1847), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1865), 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), 14, - sym__ternary_qmark, - anon_sym_of, + ACTIONS(1977), 1, anon_sym_AMP_AMP, + ACTIONS(1979), 1, 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, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1867), 1, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1987), 1, + anon_sym_CARET, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2003), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2005), 1, + sym__ternary_qmark, + ACTIONS(2066), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1847), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1997), 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, + [34216] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1977), 1, + anon_sym_AMP_AMP, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1867), 1, + ACTIONS(1987), 1, + anon_sym_CARET, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2003), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2005), 1, + sym__ternary_qmark, + ACTIONS(2068), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1997), 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, + [34297] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1644), 1, + anon_sym_AMP_AMP, + ACTIONS(1646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1867), 1, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(1670), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1672), 1, + sym__ternary_qmark, + ACTIONS(2070), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1664), 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, + [34378] = 24, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - 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(1847), 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), 14, - sym__ternary_qmark, + ACTIONS(1864), 1, anon_sym_of, + ACTIONS(2036), 1, anon_sym_AMP_AMP, + ACTIONS(2038), 1, 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, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1869), 1, - anon_sym_STAR_STAR, - 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(1554), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2040), 1, anon_sym_GT_GT, + ACTIONS(2044), 1, 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, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, 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, - 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, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2064), 1, + sym__ternary_qmark, + ACTIONS(2072), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2034), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - 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, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2058), 2, 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, + ACTIONS(2060), 2, 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, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34461] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + ACTIONS(2003), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2005), 1, + sym__ternary_qmark, + ACTIONS(2075), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1997), 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, + [34542] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2077), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1466), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36119] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [34623] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2005), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2079), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1490), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36207] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [34704] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1644), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1646), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1648), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1652), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1654), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1656), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1660), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1662), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(1670), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(1672), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2081), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1498), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1640), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1650), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1666), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1668), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1642), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1664), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36295] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [34785] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2005), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + ACTIONS(2083), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1502), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36383] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [34866] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1584), 1, + anon_sym_of, + ACTIONS(2036), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2064), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1600), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36471] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [34947] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1689), 1, + anon_sym_of, + ACTIONS(2036), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2064), 1, sym__ternary_qmark, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1596), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36559] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [35028] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1977), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1979), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1981), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1985), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1987), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1989), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1993), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1995), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2003), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2005), 1, sym__ternary_qmark, - ACTIONS(1955), 1, + ACTIONS(2085), 1, anon_sym_COLON, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1973), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1983), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1991), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1999), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2001), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1975), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1997), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36646] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [35109] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1592), 1, + anon_sym_of, + ACTIONS(2036), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2064), 1, sym__ternary_qmark, - ACTIONS(1957), 1, - anon_sym_LBRACE, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36733] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [35190] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1694), 1, + anon_sym_of, + ACTIONS(2036), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2064), 1, sym__ternary_qmark, - ACTIONS(1959), 1, - anon_sym_COLON, - STATE(528), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36820] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [35271] = 13, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2040), 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, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2054), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2050), 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, + ACTIONS(1698), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 11, + 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, - [36907] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [35332] = 8, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2054), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1698), 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(1696), 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, - 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, - [36994] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + [35383] = 19, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2054), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37081] = 26, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1696), 5, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [35456] = 20, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1689), 1, - anon_sym_of, - ACTIONS(1851), 1, + ACTIONS(2036), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2054), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1857), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1871), 3, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37170] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1696), 4, + sym__ternary_qmark, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [35531] = 11, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 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, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2032), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1698), 8, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 13, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [35588] = 17, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2054), 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(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1698), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37257] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1696), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [35657] = 18, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1698), 1, + anon_sym_PIPE, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2032), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2058), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1696), 6, + sym__ternary_qmark, + anon_sym_of, 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, + [35728] = 19, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1698), 1, + anon_sym_PIPE, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37344] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, + ACTIONS(1696), 5, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [35801] = 10, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2032), 2, 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, - anon_sym_LBRACE, - ACTIONS(1889), 1, + anon_sym_SLASH, + ACTIONS(1698), 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(1696), 13, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [35856] = 8, + ACTIONS(1391), 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(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, 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, - 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, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1698), 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(1696), 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, + [35907] = 15, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2032), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1698), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 8, + sym__ternary_qmark, + anon_sym_of, anon_sym_AMP_AMP, - ACTIONS(1755), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [35972] = 21, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(2036), 1, + anon_sym_AMP_AMP, + ACTIONS(2038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2054), 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, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1696), 3, + sym__ternary_qmark, + anon_sym_of, + anon_sym_QMARK_QMARK, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37506] = 24, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [36049] = 23, + ACTIONS(1391), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1393), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1552), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1604), 1, + anon_sym_of, + ACTIONS(2036), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2064), 1, sym__ternary_qmark, - STATE(651), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2032), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2056), 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, + [36130] = 23, + ACTIONS(1391), 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(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1614), 1, + anon_sym_of, + ACTIONS(2036), 1, + anon_sym_AMP_AMP, + ACTIONS(2038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + ACTIONS(2062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2064), 1, + sym__ternary_qmark, 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, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2032), 2, anon_sym_STAR, - ACTIONS(2005), 1, - anon_sym_RBRACE, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2058), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36211] = 23, + ACTIONS(1391), 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, - 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(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1608), 1, + anon_sym_of, + ACTIONS(2036), 1, + anon_sym_AMP_AMP, + ACTIONS(2038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + ACTIONS(2062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2064), 1, + sym__ternary_qmark, 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, - 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, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2032), 2, anon_sym_STAR, - ACTIONS(2009), 1, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2058), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36292] = 23, + ACTIONS(1391), 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(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1560), 1, + anon_sym_of, + ACTIONS(2036), 1, + anon_sym_AMP_AMP, + ACTIONS(2038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + ACTIONS(2062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2064), 1, + sym__ternary_qmark, 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, - 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, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2032), 2, anon_sym_STAR, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2058), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36373] = 23, + ACTIONS(1391), 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(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1677), 1, + anon_sym_of, + ACTIONS(2036), 1, + anon_sym_AMP_AMP, + ACTIONS(2038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + ACTIONS(2062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2064), 1, + sym__ternary_qmark, 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, - 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, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2032), 2, anon_sym_STAR, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2058), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36454] = 23, + ACTIONS(1391), 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(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1709), 1, + anon_sym_of, + ACTIONS(2036), 1, + anon_sym_AMP_AMP, + ACTIONS(2038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, + anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + ACTIONS(2062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2064), 1, + sym__ternary_qmark, 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, - sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37944] = 21, - ACTIONS(91), 1, - anon_sym_AT, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2032), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2058), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36535] = 22, + ACTIONS(1391), 1, + anon_sym_LBRACK, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(1552), 1, + sym_optional_chain, + ACTIONS(1977), 1, + anon_sym_AMP_AMP, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1987), 1, + anon_sym_CARET, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, ACTIONS(2003), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2005), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1973), 2, anon_sym_STAR, - ACTIONS(2009), 1, + anon_sym_SLASH, + ACTIONS(1983), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1991), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1999), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2001), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1975), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1997), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36613] = 22, + ACTIONS(1536), 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(1538), 1, + anon_sym_DOT, + ACTIONS(1711), 1, + sym_optional_chain, + ACTIONS(1977), 1, + anon_sym_AMP_AMP, + ACTIONS(1979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1981), 1, + anon_sym_GT_GT, + ACTIONS(1985), 1, + anon_sym_AMP, + ACTIONS(1987), 1, + anon_sym_CARET, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(1993), 1, + anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_STAR_STAR, + ACTIONS(2003), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2005), 1, + sym__ternary_qmark, 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, - sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [38015] = 18, - ACTIONS(91), 1, - anon_sym_AT, + ACTIONS(1554), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1973), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1983), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1991), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1999), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2001), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1975), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1997), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36691] = 20, ACTIONS(99), 1, anon_sym_STAR, - ACTIONS(119), 1, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, aux_sym_method_definition_token1, - ACTIONS(702), 1, + ACTIONS(748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(2091), 1, + anon_sym_RBRACE, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2041), 1, + ACTIONS(2095), 1, anon_sym_async, - ACTIONS(2043), 1, + ACTIONS(2099), 1, anon_sym_static, - STATE(915), 1, + STATE(928), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1009), 1, sym_decorator, + STATE(1384), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1995), 2, + ACTIONS(2097), 2, sym_number, sym_private_property_identifier, - ACTIONS(2039), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2045), 2, + ACTIONS(2101), 2, anon_sym_get, anon_sym_set, - ACTIONS(2037), 3, + ACTIONS(2087), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1301), 3, + STATE(1369), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1430), 3, + STATE(1383), 3, sym_spread_element, sym_method_definition, sym_pair, - [38080] = 21, - ACTIONS(2050), 1, + [36761] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2105), 1, anon_sym_STAR, - ACTIONS(2053), 1, + ACTIONS(2107), 1, anon_sym_RBRACE, - ACTIONS(2055), 1, + ACTIONS(2109), 1, anon_sym_SEMI, - ACTIONS(2058), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, - ACTIONS(2061), 1, + ACTIONS(2113), 1, anon_sym_DQUOTE, - ACTIONS(2064), 1, + ACTIONS(2115), 1, anon_sym_SQUOTE, - ACTIONS(2067), 1, + ACTIONS(2117), 1, anon_sym_async, - ACTIONS(2073), 1, - anon_sym_AT, - ACTIONS(2076), 1, + ACTIONS(2121), 1, anon_sym_static, - ACTIONS(2079), 1, + ACTIONS(2123), 1, aux_sym_method_definition_token1, - STATE(876), 1, + STATE(896), 1, aux_sym_class_body_repeat1, - STATE(910), 1, + STATE(929), 1, aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, + STATE(977), 1, sym_class_static_block, - STATE(1006), 1, + STATE(984), 1, + sym_method_definition, + STATE(1009), 1, sym_decorator, - STATE(1399), 1, + STATE(1647), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2070), 2, + ACTIONS(2119), 2, sym_number, sym_private_property_identifier, - ACTIONS(2082), 2, + ACTIONS(2125), 2, anon_sym_get, anon_sym_set, - ACTIONS(2047), 3, + ACTIONS(2103), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1130), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - [38151] = 14, - ACTIONS(673), 1, + [36832] = 14, + ACTIONS(717), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(1719), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2129), 1, anon_sym_COMMA, - ACTIONS(2089), 1, + ACTIONS(2131), 1, anon_sym_RBRACE, - STATE(1312), 1, + ACTIONS(2133), 1, + anon_sym_LBRACK, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + STATE(1336), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, + ACTIONS(2139), 2, sym_number, sym_private_property_identifier, - STATE(1281), 3, + STATE(1462), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1620), 3, + STATE(1913), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1693), 3, + STATE(1943), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2085), 7, + ACTIONS(2127), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68940,42 +70248,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38208] = 14, - ACTIONS(673), 1, + [36889] = 14, + ACTIONS(717), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(1719), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2129), 1, anon_sym_COMMA, - ACTIONS(2095), 1, + ACTIONS(2133), 1, + anon_sym_LBRACK, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + ACTIONS(2143), 1, anon_sym_RBRACE, - STATE(1335), 1, + STATE(1409), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, + ACTIONS(2139), 2, sym_number, sym_private_property_identifier, - STATE(1332), 3, + STATE(1352), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1620), 3, + STATE(1913), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1693), 3, + STATE(1943), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2093), 7, + ACTIONS(2141), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -68983,854 +70291,1022 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [38265] = 21, - ACTIONS(91), 1, + [36946] = 21, + ACTIONS(117), 1, anon_sym_AT, - ACTIONS(2003), 1, + ACTIONS(2105), 1, anon_sym_STAR, - ACTIONS(2009), 1, + ACTIONS(2111), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, + ACTIONS(2113), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(2115), 1, anon_sym_SQUOTE, - ACTIONS(2015), 1, + ACTIONS(2117), 1, anon_sym_async, - ACTIONS(2019), 1, + ACTIONS(2121), 1, anon_sym_static, - ACTIONS(2021), 1, + ACTIONS(2123), 1, aux_sym_method_definition_token1, - ACTIONS(2097), 1, + ACTIONS(2145), 1, anon_sym_RBRACE, - ACTIONS(2099), 1, + ACTIONS(2147), 1, anon_sym_SEMI, - STATE(870), 1, + STATE(895), 1, aux_sym_class_body_repeat1, - STATE(910), 1, + STATE(929), 1, aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, + STATE(977), 1, sym_class_static_block, - STATE(1006), 1, + STATE(984), 1, + sym_method_definition, + STATE(1009), 1, sym_decorator, - STATE(1399), 1, + STATE(1647), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, + ACTIONS(2119), 2, sym_number, sym_private_property_identifier, - ACTIONS(2023), 2, + ACTIONS(2125), 2, anon_sym_get, anon_sym_set, - ACTIONS(2001), 3, + ACTIONS(2103), 3, anon_sym_export, anon_sym_let, sym_identifier, - STATE(1130), 3, + STATE(1158), 3, sym_string, sym__property_name, sym_computed_property_name, - [38336] = 12, - ACTIONS(673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, + [37017] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2105), 1, + anon_sym_STAR, + ACTIONS(2109), 1, + anon_sym_SEMI, + ACTIONS(2111), 1, + anon_sym_LBRACK, + ACTIONS(2113), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2115), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2121), 1, + anon_sym_static, + ACTIONS(2123), 1, + aux_sym_method_definition_token1, + ACTIONS(2149), 1, + anon_sym_RBRACE, + STATE(896), 1, + aux_sym_class_body_repeat1, + STATE(929), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_class_static_block, + STATE(984), 1, + sym_method_definition, + STATE(1009), 1, + sym_decorator, + STATE(1647), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, + ACTIONS(2119), 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, + ACTIONS(2125), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2103), 3, anon_sym_export, anon_sym_let, - anon_sym_async, 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, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [37088] = 21, + ACTIONS(2154), 1, anon_sym_STAR, - ACTIONS(2107), 1, + ACTIONS(2157), 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(2159), 1, + anon_sym_SEMI, + ACTIONS(2162), 1, + anon_sym_LBRACK, + ACTIONS(2165), 1, + anon_sym_DQUOTE, + ACTIONS(2168), 1, + anon_sym_SQUOTE, + ACTIONS(2171), 1, + anon_sym_async, + ACTIONS(2177), 1, + anon_sym_AT, + ACTIONS(2180), 1, + anon_sym_static, + ACTIONS(2183), 1, + aux_sym_method_definition_token1, + STATE(896), 1, + aux_sym_class_body_repeat1, + STATE(929), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_class_static_block, + STATE(984), 1, + sym_method_definition, + STATE(1009), 1, + sym_decorator, + STATE(1647), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2174), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(2186), 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, + ACTIONS(2151), 3, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, - anon_sym_static, - [38444] = 16, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [37159] = 18, + ACTIONS(99), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(121), 1, + aux_sym_method_definition_token1, + ACTIONS(748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2093), 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(2193), 1, + anon_sym_async, + ACTIONS(2195), 1, + anon_sym_static, + STATE(928), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2097), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(2191), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2197), 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, + ACTIONS(2189), 3, anon_sym_export, anon_sym_let, sym_identifier, - anon_sym_static, - [38502] = 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, + STATE(1369), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1789), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [37224] = 21, + ACTIONS(117), 1, + anon_sym_AT, ACTIONS(2105), 1, anon_sym_STAR, ACTIONS(2111), 1, - anon_sym_EQ, + anon_sym_LBRACK, + ACTIONS(2113), 1, + anon_sym_DQUOTE, ACTIONS(2115), 1, + anon_sym_SQUOTE, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2121), 1, + anon_sym_static, + ACTIONS(2123), 1, + aux_sym_method_definition_token1, + ACTIONS(2199), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(2201), 1, + anon_sym_SEMI, + STATE(900), 1, + aux_sym_class_body_repeat1, + STATE(929), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_class_static_block, + STATE(984), 1, + sym_method_definition, + STATE(1009), 1, + sym_decorator, + STATE(1647), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2119), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(2125), 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, + ACTIONS(2103), 3, 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, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [37295] = 21, + ACTIONS(117), 1, + anon_sym_AT, ACTIONS(2105), 1, anon_sym_STAR, ACTIONS(2111), 1, - anon_sym_EQ, + anon_sym_LBRACK, + ACTIONS(2113), 1, + anon_sym_DQUOTE, ACTIONS(2115), 1, + anon_sym_SQUOTE, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2121), 1, + anon_sym_static, + ACTIONS(2123), 1, + aux_sym_method_definition_token1, + ACTIONS(2203), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(2205), 1, + anon_sym_SEMI, + STATE(891), 1, + aux_sym_class_body_repeat1, + STATE(929), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_class_static_block, + STATE(984), 1, + sym_method_definition, + STATE(1009), 1, + sym_decorator, + STATE(1647), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2119), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(2125), 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, + ACTIONS(2103), 3, 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, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [37366] = 21, + ACTIONS(117), 1, + anon_sym_AT, ACTIONS(2105), 1, anon_sym_STAR, + ACTIONS(2109), 1, + anon_sym_SEMI, ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + anon_sym_LBRACK, + ACTIONS(2113), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, + anon_sym_SQUOTE, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2121), 1, + anon_sym_static, + ACTIONS(2123), 1, + aux_sym_method_definition_token1, + ACTIONS(2207), 1, + anon_sym_RBRACE, + STATE(896), 1, + aux_sym_class_body_repeat1, + STATE(929), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_class_static_block, + STATE(984), 1, + sym_method_definition, + STATE(1009), 1, + sym_decorator, + STATE(1647), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2119), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(2125), 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, + ACTIONS(2103), 3, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, - anon_sym_static, - [38672] = 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, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [37437] = 21, + ACTIONS(117), 1, + anon_sym_AT, ACTIONS(2105), 1, anon_sym_STAR, - ACTIONS(2107), 1, + ACTIONS(2111), 1, + anon_sym_LBRACK, + ACTIONS(2113), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, + anon_sym_SQUOTE, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2121), 1, + anon_sym_static, + ACTIONS(2123), 1, + aux_sym_method_definition_token1, + ACTIONS(2209), 1, anon_sym_RBRACE, + ACTIONS(2211), 1, + anon_sym_SEMI, + STATE(902), 1, + aux_sym_class_body_repeat1, + STATE(929), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_class_static_block, + STATE(984), 1, + sym_method_definition, + STATE(1009), 1, + sym_decorator, + STATE(1647), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2119), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2125), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2103), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [37508] = 21, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2105), 1, + anon_sym_STAR, + ACTIONS(2109), 1, + anon_sym_SEMI, ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + anon_sym_LBRACK, + ACTIONS(2113), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, + anon_sym_SQUOTE, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2121), 1, + anon_sym_static, + ACTIONS(2123), 1, + aux_sym_method_definition_token1, + ACTIONS(2213), 1, + anon_sym_RBRACE, + STATE(896), 1, + aux_sym_class_body_repeat1, + STATE(929), 1, + aux_sym_export_statement_repeat1, + STATE(977), 1, + sym_class_static_block, + STATE(984), 1, + sym_method_definition, + STATE(1009), 1, + sym_decorator, + STATE(1647), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2119), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(2125), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, + ACTIONS(2103), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1158), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [37579] = 12, + ACTIONS(717), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(2133), 1, + anon_sym_LBRACK, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2139), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2217), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1851), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1913), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + STATE(1943), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2215), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [38730] = 16, + anon_sym_get, + anon_sym_set, + [37631] = 16, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, + ACTIONS(924), 1, anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2219), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2221), 1, + anon_sym_RBRACE, + ACTIONS(2225), 1, anon_sym_EQ, - STATE(1310), 1, + STATE(1346), 1, aux_sym_object_repeat1, - STATE(1311), 1, + STATE(1445), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(922), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [38788] = 16, + [37689] = 16, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(800), 1, + ACTIONS(828), 1, anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, + ACTIONS(924), 1, anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2219), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2225), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1440), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(922), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [38846] = 15, + [37747] = 15, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(800), 1, + ACTIONS(784), 1, anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2219), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2225), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [38902] = 16, + [37803] = 16, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(766), 1, + ACTIONS(784), 1, anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, + ACTIONS(924), 1, anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2219), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2225), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(922), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [38960] = 15, + [37861] = 15, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2219), 1, anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2113), 1, + ACTIONS(2221), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + ACTIONS(2225), 1, + anon_sym_EQ, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39016] = 15, + [37917] = 15, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(766), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2219), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2225), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + ACTIONS(2227), 1, + anon_sym_RBRACE, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39072] = 13, + [37973] = 16, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(924), 1, + anon_sym_async, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2219), 1, + anon_sym_STAR, + ACTIONS(2225), 1, anon_sym_EQ, - ACTIONS(2113), 1, + ACTIONS(2227), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(926), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [39123] = 13, + [38031] = 15, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2219), 1, + anon_sym_STAR, + ACTIONS(2225), 1, anon_sym_EQ, - ACTIONS(2115), 1, + ACTIONS(2229), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(926), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 5, 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, - anon_sym_LBRACK, - ACTIONS(2011), 1, + [38087] = 16, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(2117), 1, - anon_sym_STAR, - ACTIONS(2119), 1, - anon_sym_LBRACE, - ACTIONS(2121), 1, + ACTIONS(924), 1, anon_sym_async, - ACTIONS(2127), 1, - sym__automatic_semicolon, - STATE(962), 1, - sym_statement_block, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2219), 1, + anon_sym_STAR, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2229), 1, + anon_sym_RBRACE, + STATE(1346), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2123), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2125), 2, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 3, + ACTIONS(2223), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(1111), 3, + anon_sym_COLON, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2001), 4, + ACTIONS(922), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [39227] = 13, + [38145] = 15, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(832), 1, + anon_sym_RBRACE, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, + ACTIONS(2219), 1, + anon_sym_STAR, + ACTIONS(2225), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(926), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [39278] = 13, + [38201] = 16, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(792), 1, + ACTIONS(832), 1, anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(924), 1, + anon_sym_async, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2219), 1, + anon_sym_STAR, + ACTIONS(2225), 1, anon_sym_EQ, - STATE(1310), 1, + STATE(1346), 1, aux_sym_object_repeat1, - STATE(1311), 1, + STATE(1445), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(926), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [39329] = 13, + [38259] = 15, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(766), 1, + ACTIONS(828), 1, anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2219), 1, + anon_sym_STAR, + ACTIONS(2225), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1440), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(926), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [39380] = 13, + [38315] = 13, ACTIONS(101), 1, anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2225), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + ACTIONS(2227), 1, + anon_sym_RBRACE, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -69838,464 +71314,529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [39431] = 13, - ACTIONS(854), 1, + [38366] = 14, + ACTIONS(2111), 1, + anon_sym_LBRACK, + ACTIONS(2113), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2115), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2231), 1, anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, + ACTIONS(2233), 1, + anon_sym_LBRACE, + ACTIONS(2235), 1, + anon_sym_async, + ACTIONS(2241), 1, + sym__automatic_semicolon, + STATE(958), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2237), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(2239), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 3, anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2130), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, + anon_sym_SEMI, + anon_sym_EQ, + STATE(1136), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(2103), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [39481] = 13, - ACTIONS(854), 1, + [38419] = 13, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2133), 1, + ACTIONS(2221), 1, anon_sym_RBRACE, - STATE(1296), 1, + ACTIONS(2225), 1, + anon_sym_EQ, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39531] = 14, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + [38470] = 13, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2133), 1, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2229), 1, anon_sym_RBRACE, - STATE(1296), 1, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [39583] = 18, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + [38521] = 13, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(784), 1, + anon_sym_RBRACE, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 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(2225), 1, + anon_sym_EQ, + STATE(1346), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(872), 2, - anon_sym_let, - sym_identifier, - ACTIONS(2143), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - STATE(1588), 3, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - [39643] = 12, - ACTIONS(854), 1, + ACTIONS(922), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [38572] = 13, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(828), 1, + anon_sym_RBRACE, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2225), 1, anon_sym_EQ, + STATE(1440), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2130), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39691] = 11, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + [38623] = 13, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(832), 1, + anon_sym_RBRACE, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, + ACTIONS(2225), 1, + anon_sym_EQ, + STATE(1346), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2153), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39736] = 10, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + [38674] = 13, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(924), 1, + anon_sym_async, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2155), 1, + ACTIONS(2219), 1, anon_sym_STAR, + ACTIONS(2225), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2159), 2, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - STATE(1484), 3, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2244), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1833), 3, 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), 5, + ACTIONS(922), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [39779] = 11, - ACTIONS(854), 1, + [38724] = 12, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2161), 1, + ACTIONS(2219), 1, anon_sym_STAR, - ACTIONS(2165), 1, - anon_sym_get, - ACTIONS(2167), 1, - anon_sym_set, + ACTIONS(2225), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2163), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - STATE(1486), 3, + ACTIONS(926), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2244), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1833), 3, 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), 5, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39824] = 10, - ACTIONS(854), 1, + [38772] = 13, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2117), 1, + ACTIONS(2219), 1, anon_sym_STAR, + ACTIONS(2247), 1, + anon_sym_RBRACE, + STATE(1389), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2171), 2, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - STATE(1458), 3, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1833), 3, 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), 5, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [39867] = 12, - ACTIONS(854), 1, + [38822] = 14, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, + ACTIONS(924), 1, anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2219), 1, anon_sym_STAR, + ACTIONS(2247), 1, + anon_sym_RBRACE, + STATE(1389), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2153), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(922), 4, anon_sym_export, anon_sym_let, sym_identifier, anon_sym_static, - [39914] = 16, - ACTIONS(91), 1, + [38874] = 18, + ACTIONS(117), 1, anon_sym_AT, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(2173), 1, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2249), 1, + anon_sym_export, + ACTIONS(2251), 1, anon_sym_STAR, - ACTIONS(2175), 1, + ACTIONS(2253), 1, + anon_sym_class, + ACTIONS(2255), 1, anon_sym_async, - ACTIONS(2179), 1, + ACTIONS(2259), 1, anon_sym_static, - ACTIONS(2181), 1, + ACTIONS(2261), 1, aux_sym_method_definition_token1, - ACTIONS(2183), 1, + ACTIONS(2263), 1, anon_sym_get, - ACTIONS(2185), 1, + ACTIONS(2265), 1, anon_sym_set, - STATE(944), 1, + STATE(948), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1009), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2177), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2001), 3, - anon_sym_export, + ACTIONS(922), 2, anon_sym_let, sym_identifier, - STATE(1114), 3, + ACTIONS(2257), 2, + sym_number, + sym_private_property_identifier, + STATE(1638), 3, sym_string, sym__property_name, sym_computed_property_name, - [39969] = 11, - ACTIONS(854), 1, + [38934] = 16, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2187), 1, + ACTIONS(2251), 1, anon_sym_STAR, - ACTIONS(2191), 1, + ACTIONS(2255), 1, + anon_sym_async, + ACTIONS(2259), 1, + anon_sym_static, + ACTIONS(2261), 1, + aux_sym_method_definition_token1, + ACTIONS(2263), 1, anon_sym_get, - ACTIONS(2193), 1, + ACTIONS(2265), 1, anon_sym_set, + STATE(948), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2189), 2, + ACTIONS(2257), 2, sym_number, sym_private_property_identifier, - STATE(1504), 3, + ACTIONS(922), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1638), 3, 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), 5, + [38989] = 16, + ACTIONS(117), 1, + anon_sym_AT, + ACTIONS(2111), 1, + anon_sym_LBRACK, + ACTIONS(2113), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, + anon_sym_SQUOTE, + ACTIONS(2267), 1, + anon_sym_STAR, + ACTIONS(2269), 1, + anon_sym_async, + ACTIONS(2273), 1, + anon_sym_static, + ACTIONS(2275), 1, + aux_sym_method_definition_token1, + ACTIONS(2277), 1, + anon_sym_get, + ACTIONS(2279), 1, + anon_sym_set, + STATE(948), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2271), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2103), 3, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, - anon_sym_static, - [40014] = 10, - ACTIONS(854), 1, + STATE(1159), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [39044] = 10, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2225), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2130), 2, + ACTIONS(2244), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70303,68 +71844,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40057] = 12, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, + [39087] = 10, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(2195), 1, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2231), 1, anon_sym_STAR, - ACTIONS(2197), 1, - anon_sym_async, - ACTIONS(2201), 1, - anon_sym_get, - ACTIONS(2203), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2199), 2, + ACTIONS(2281), 2, sym_number, sym_private_property_identifier, - STATE(1109), 3, + ACTIONS(2283), 2, + anon_sym_get, + anon_sym_set, + STATE(1693), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2001), 4, + ACTIONS(2223), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - ACTIONS(2109), 4, + [39130] = 10, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2285), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2287), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2289), 2, + anon_sym_get, + anon_sym_set, + STATE(1726), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2223), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [40104] = 11, - ACTIONS(854), 1, + ACTIONS(922), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [39173] = 11, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1987), 1, + ACTIONS(2089), 1, anon_sym_COMMA, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2133), 1, + ACTIONS(2247), 1, anon_sym_RBRACE, - STATE(1296), 1, + STATE(1389), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70372,186 +71944,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40149] = 16, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(854), 1, + [39218] = 11, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2137), 1, + ACTIONS(2291), 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, + ACTIONS(2295), 1, anon_sym_get, - ACTIONS(2151), 1, + ACTIONS(2297), 1, anon_sym_set, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - 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, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2293), 2, sym_number, sym_private_property_identifier, - STATE(1484), 3, + STATE(1728), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2223), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, + [39263] = 12, + ACTIONS(2111), 1, + anon_sym_LBRACK, + ACTIONS(2113), 1, + anon_sym_DQUOTE, + ACTIONS(2115), 1, + anon_sym_SQUOTE, + ACTIONS(2299), 1, + anon_sym_STAR, + ACTIONS(2301), 1, + anon_sym_async, + ACTIONS(2305), 1, anon_sym_get, + ACTIONS(2307), 1, anon_sym_set, - [40242] = 6, - ACTIONS(2209), 1, - anon_sym_LPAREN, - ACTIONS(2211), 1, - anon_sym_DOT, - STATE(1004), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2205), 8, + ACTIONS(2303), 2, + sym_number, + sym_private_property_identifier, + STATE(1142), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2103), 4, 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, + ACTIONS(2223), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [39310] = 11, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, + ACTIONS(2309), 1, + anon_sym_STAR, + ACTIONS(2313), 1, + anon_sym_get, + ACTIONS(2315), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2213), 2, + ACTIONS(2311), 2, sym_number, sym_private_property_identifier, - STATE(1489), 3, + STATE(1748), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2223), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(922), 5, 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, + [39355] = 11, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, + ACTIONS(2219), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2215), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - STATE(1488), 3, + ACTIONS(926), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2317), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1833), 3, 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, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, + [39400] = 12, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(924), 1, + anon_sym_async, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2219), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(916), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(926), 2, anon_sym_get, anon_sym_set, - [40352] = 8, - ACTIONS(854), 1, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2317), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1833), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [39447] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2217), 2, + ACTIONS(2281), 2, sym_number, sym_private_property_identifier, - STATE(1505), 3, + STATE(1693), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2223), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70559,29 +72146,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40390] = 8, - ACTIONS(854), 1, + [39485] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2319), 2, sym_number, sym_private_property_identifier, - STATE(1458), 3, + STATE(1731), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2223), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70589,60 +72176,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40428] = 9, - ACTIONS(854), 1, + [39523] = 9, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2153), 2, + ACTIONS(2317), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [39563] = 6, + ACTIONS(2325), 1, + anon_sym_LPAREN, + ACTIONS(2327), 1, + anon_sym_DOT, + STATE(1002), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2321), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [40468] = 8, - ACTIONS(854), 1, + ACTIONS(2323), 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, + [39597] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2219), 2, + ACTIONS(2287), 2, sym_number, sym_private_property_identifier, - STATE(1506), 3, + STATE(1726), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2223), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70650,11 +72265,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [40506] = 3, + [39635] = 8, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2221), 7, + ACTIONS(2329), 2, + sym_number, + sym_private_property_identifier, + STATE(1750), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2223), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70662,23 +72295,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2223), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + [39673] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, + ACTIONS(912), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40533] = 3, + ACTIONS(2093), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2331), 2, + sym_number, + sym_private_property_identifier, + STATE(1749), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2223), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70686,23 +72325,43 @@ static const uint16_t ts_small_parse_table[] = { 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, + [39711] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, + ACTIONS(912), 1, anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2333), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40560] = 3, + STATE(1730), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2223), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(922), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [39749] = 4, + ACTIONS(2335), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(553), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70710,9 +72369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(551), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70722,35 +72380,40 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40587] = 3, + [39778] = 6, + ACTIONS(2341), 1, + anon_sym_AT, + STATE(948), 1, + aux_sym_export_statement_repeat1, + STATE(1009), 1, + sym_decorator, 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, + ACTIONS(2339), 7, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, aux_sym_method_definition_token1, - [40614] = 3, + ACTIONS(2337), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [39811] = 4, + ACTIONS(2344), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(547), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70758,9 +72421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(545), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70770,11 +72432,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40641] = 3, + [39840] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2233), 9, + ACTIONS(2346), 9, anon_sym_export, anon_sym_let, anon_sym_DOT, @@ -70784,7 +72446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2235), 9, + ACTIONS(2348), 9, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACK, @@ -70794,11 +72456,30 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40668] = 3, + [39867] = 10, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + anon_sym_EQ_GT, + ACTIONS(2354), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2352), 2, + sym_number, + sym_private_property_identifier, + STATE(1646), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70806,23 +72487,42 @@ static const uint16_t ts_small_parse_table[] = { 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, + [39908] = 11, + ACTIONS(910), 1, anon_sym_DQUOTE, + ACTIONS(912), 1, anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_LPAREN, + ACTIONS(2356), 1, + anon_sym_STAR, + ACTIONS(2360), 1, + anon_sym_get, + ACTIONS(2362), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2358), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40695] = 3, + STATE(1565), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [39950] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70830,9 +72530,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70842,11 +72541,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40722] = 3, + [39976] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70854,9 +72553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70866,11 +72564,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40749] = 3, + [40002] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70878,9 +72576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70890,11 +72587,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40776] = 3, + [40028] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2237), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70902,9 +72599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2239), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70914,11 +72610,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40803] = 3, + [40054] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70926,9 +72622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70938,11 +72633,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40830] = 3, + [40080] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2241), 7, + ACTIONS(2368), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70950,9 +72645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2243), 11, + ACTIONS(2370), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70962,11 +72656,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40857] = 3, + [40106] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70974,9 +72668,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70986,11 +72679,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40884] = 3, + [40132] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -70998,9 +72691,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71010,11 +72702,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40911] = 3, + [40158] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71022,9 +72714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71034,11 +72725,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40938] = 3, + [40184] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71046,9 +72737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71058,11 +72748,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40965] = 3, + [40210] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2372), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71070,9 +72760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2374), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71082,11 +72771,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40992] = 3, + [40236] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2376), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71094,9 +72783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2378), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71106,11 +72794,41 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41019] = 3, + [40262] = 10, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_LPAREN, + ACTIONS(2285), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2287), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2289), 2, + anon_sym_get, + anon_sym_set, + STATE(1726), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [40302] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71118,9 +72836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71130,38 +72847,42 @@ static const uint16_t ts_small_parse_table[] = { 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, + [40328] = 11, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_LPAREN, + ACTIONS(2380), 1, + anon_sym_STAR, + ACTIONS(2384), 1, + anon_sym_get, + ACTIONS(2386), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2251), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2382), 2, sym_number, sym_private_property_identifier, - aux_sym_method_definition_token1, - ACTIONS(2249), 8, + STATE(1752), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [41079] = 3, + [40370] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2364), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71169,9 +72890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(2366), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71181,11 +72901,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41106] = 3, + [40396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2388), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71193,9 +72913,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2390), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71205,11 +72924,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41133] = 3, + [40422] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2388), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71217,9 +72936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2390), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71229,13 +72947,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41160] = 4, - ACTIONS(2256), 1, - sym__automatic_semicolon, + [40448] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 7, + ACTIONS(2388), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71243,7 +72959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(499), 10, + ACTIONS(2390), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71254,11 +72970,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41189] = 3, + [40474] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2392), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71266,9 +72982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2394), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71278,11 +72993,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41216] = 3, + [40500] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2258), 7, + ACTIONS(2388), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71290,9 +73005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2260), 11, + ACTIONS(2390), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71302,11 +73016,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41243] = 3, + [40526] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2388), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71314,9 +73028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2390), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71326,11 +73039,44 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41270] = 3, + [40552] = 13, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(786), 1, + anon_sym_var, + ACTIONS(800), 1, + anon_sym_class, + ACTIONS(802), 1, + anon_sym_async, + ACTIONS(804), 1, + anon_sym_function, + ACTIONS(2223), 1, + anon_sym_LPAREN, + ACTIONS(2396), 1, + anon_sym_default, + STATE(442), 1, + sym_declaration, + STATE(1263), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(788), 2, + anon_sym_let, + anon_sym_const, + STATE(430), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [40598] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2388), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71338,9 +73084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2390), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71350,13 +73095,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41297] = 4, - ACTIONS(2262), 1, - sym__automatic_semicolon, + [40624] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 7, + ACTIONS(2398), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71364,7 +73107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(503), 10, + ACTIONS(2400), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71375,35 +73118,42 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41326] = 3, + [40650] = 11, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_LPAREN, + ACTIONS(2402), 1, + anon_sym_STAR, + ACTIONS(2406), 1, + anon_sym_get, + ACTIONS(2408), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2404), 2, + sym_number, + sym_private_property_identifier, + STATE(1566), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 5, 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, - 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, + [40692] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2264), 7, + ACTIONS(2392), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71411,9 +73161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2266), 11, + ACTIONS(2394), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71423,11 +73172,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41380] = 3, + [40718] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 7, + ACTIONS(2410), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71435,7 +73184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(499), 10, + ACTIONS(2412), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71446,11 +73195,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41406] = 3, + [40744] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(521), 7, + ACTIONS(2392), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71458,7 +73207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(519), 10, + ACTIONS(2394), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71469,13 +73218,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41432] = 4, - ACTIONS(2272), 1, - anon_sym_SEMI, + [40770] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2268), 7, + ACTIONS(2392), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71483,9 +73230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2270), 9, + ACTIONS(2394), 10, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -71493,101 +73241,98 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41460] = 9, - ACTIONS(854), 1, + [40796] = 11, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_EQ_GT, + ACTIONS(2414), 1, + anon_sym_STAR, + ACTIONS(2418), 1, + anon_sym_get, + ACTIONS(2420), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2416), 2, sym_number, sym_private_property_identifier, - STATE(1610), 3, + STATE(1556), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 5, 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, - anon_sym_DQUOTE, - ACTIONS(856), 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, + [40838] = 4, + ACTIONS(2422), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2281), 2, - sym_number, - sym_private_property_identifier, - STATE(1462), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(2398), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41540] = 10, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + ACTIONS(2400), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [40866] = 12, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, - ACTIONS(2287), 1, + ACTIONS(2425), 1, anon_sym_STAR, + ACTIONS(2427), 1, + anon_sym_async, + ACTIONS(2431), 1, + anon_sym_get, + ACTIONS(2433), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2429), 2, sym_number, sym_private_property_identifier, - ACTIONS(2289), 2, - anon_sym_get, - anon_sym_set, - STATE(1610), 3, + STATE(1608), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(922), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - [41580] = 3, + [40910] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2291), 7, + ACTIONS(2435), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71595,7 +73340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2293), 10, + ACTIONS(2437), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71606,11 +73351,11 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41606] = 3, + [40936] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2295), 7, + ACTIONS(2439), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71618,7 +73363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2297), 10, + ACTIONS(2441), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71629,168 +73374,80 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41632] = 13, - 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(2109), 1, - anon_sym_LPAREN, - ACTIONS(2299), 1, - anon_sym_default, - STATE(378), 1, - sym_declaration, - STATE(1006), 1, - sym_decorator, - STATE(1220), 1, - aux_sym_export_statement_repeat1, + [40962] = 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, - [41678] = 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(2301), 1, - anon_sym_STAR, - ACTIONS(2305), 1, - anon_sym_get, - ACTIONS(2307), 1, - anon_sym_set, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2303), 2, - sym_number, - sym_private_property_identifier, - STATE(1578), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(553), 7, 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, + ACTIONS(551), 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, + [40988] = 3, 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, + ACTIONS(557), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [41764] = 10, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + ACTIONS(555), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, 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, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41014] = 3, 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, + ACTIONS(2443), 7, anon_sym_export, anon_sym_let, anon_sym_async, 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, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2321), 2, + ACTIONS(2445), 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, - 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, + anon_sym_AT, + aux_sym_method_definition_token1, + [41040] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2327), 7, + ACTIONS(2447), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71798,7 +73455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2329), 10, + ACTIONS(2449), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71809,42 +73466,34 @@ static const uint16_t ts_small_parse_table[] = { 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, + [41066] = 3, 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, + ACTIONS(2392), 7, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41914] = 3, + anon_sym_get, + anon_sym_set, + ACTIONS(2394), 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, + [41092] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2268), 7, + ACTIONS(2392), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71852,7 +73501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2270), 10, + ACTIONS(2394), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71863,53 +73512,85 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41940] = 8, - ACTIONS(854), 1, + [41118] = 10, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, + ACTIONS(2451), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2352), 2, sym_number, sym_private_property_identifier, - STATE(1484), 3, + ACTIONS(2453), 2, + anon_sym_get, + anon_sym_set, + STATE(1646), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 5, anon_sym_export, anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, + [41158] = 10, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2231), 1, + anon_sym_STAR, + ACTIONS(2455), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2281), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2283), 2, anon_sym_get, anon_sym_set, - [41975] = 8, - ACTIONS(854), 1, + STATE(1693), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [41197] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2339), 2, + ACTIONS(2457), 2, sym_number, sym_private_property_identifier, - STATE(1605), 3, + STATE(1558), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71917,26 +73598,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42010] = 8, - ACTIONS(854), 1, + [41232] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 2, + ACTIONS(2459), 2, sym_number, sym_private_property_identifier, - STATE(1409), 3, + STATE(1570), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71944,26 +73625,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42045] = 8, - ACTIONS(854), 1, + [41267] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2343), 2, + ACTIONS(2461), 2, sym_number, sym_private_property_identifier, - STATE(1585), 3, + STATE(1571), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -71971,11 +73652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42080] = 3, + [41302] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1448), 8, + ACTIONS(1503), 8, anon_sym_export, anon_sym_let, anon_sym_class, @@ -71984,7 +73665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1450), 8, + ACTIONS(1505), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -71993,170 +73674,123 @@ static const uint16_t ts_small_parse_table[] = { 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, + [41327] = 3, 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, + ACTIONS(1411), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42140] = 11, - ACTIONS(854), 1, + ACTIONS(1413), 8, + anon_sym_STAR, + anon_sym_LBRACK, 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, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41352] = 3, 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, + ACTIONS(1436), 8, anon_sym_export, anon_sym_let, + anon_sym_class, + anon_sym_async, sym_identifier, anon_sym_static, - [42181] = 8, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + ACTIONS(1438), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41377] = 3, 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, + ACTIONS(2463), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42216] = 10, - ACTIONS(854), 1, + ACTIONS(2465), 8, + anon_sym_STAR, + anon_sym_LBRACK, 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(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, + anon_sym_AT, + aux_sym_method_definition_token1, + [41402] = 12, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(768), 1, + ACTIONS(882), 1, anon_sym_var, - ACTIONS(782), 1, + ACTIONS(890), 1, anon_sym_class, - ACTIONS(784), 1, + ACTIONS(892), 1, anon_sym_async, - ACTIONS(786), 1, + ACTIONS(894), 1, anon_sym_function, - ACTIONS(2361), 1, + ACTIONS(2467), 1, anon_sym_default, - STATE(378), 1, - sym_declaration, - STATE(1006), 1, - sym_decorator, - STATE(1220), 1, + STATE(1272), 1, aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + STATE(1796), 1, + sym_declaration, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(770), 2, + ACTIONS(884), 2, anon_sym_let, anon_sym_const, - STATE(412), 5, + STATE(1624), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [42298] = 8, - ACTIONS(854), 1, + [41445] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2352), 2, sym_number, sym_private_property_identifier, - STATE(1610), 3, + STATE(1646), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72164,26 +73798,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42333] = 8, - ACTIONS(854), 1, + [41480] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2469), 2, sym_number, sym_private_property_identifier, - STATE(1571), 3, + STATE(1716), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72191,56 +73825,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42368] = 11, - ACTIONS(854), 1, + [41515] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 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(2223), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2369), 2, + ACTIONS(2471), 2, sym_number, sym_private_property_identifier, - STATE(1487), 3, + STATE(1717), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [42409] = 8, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + [41550] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 2, + ACTIONS(2473), 2, sym_number, sym_private_property_identifier, - STATE(1499), 3, + STATE(1732), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72248,26 +73879,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42444] = 8, - ACTIONS(854), 1, + [41585] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2377), 2, + ACTIONS(2475), 2, sym_number, sym_private_property_identifier, - STATE(1501), 3, + STATE(1733), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72275,82 +73906,106 @@ static const uint16_t ts_small_parse_table[] = { 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, + [41620] = 3, 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, + ACTIONS(2477), 8, anon_sym_export, anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42514] = 10, - ACTIONS(854), 1, + ACTIONS(2479), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41645] = 12, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(786), 1, + anon_sym_var, + ACTIONS(800), 1, + anon_sym_class, + ACTIONS(802), 1, anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(804), 1, + anon_sym_function, + ACTIONS(2396), 1, + anon_sym_default, + STATE(442), 1, + sym_declaration, + STATE(1263), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(788), 2, + anon_sym_let, + anon_sym_const, + STATE(430), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [41688] = 8, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, + ACTIONS(2223), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2481), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - STATE(1412), 3, + STATE(1557), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - [42553] = 8, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + [41723] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2381), 2, + ACTIONS(2483), 2, sym_number, sym_private_property_identifier, - STATE(1509), 3, + STATE(1626), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72358,26 +74013,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42588] = 8, - ACTIONS(854), 1, + [41758] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2383), 2, + ACTIONS(2485), 2, sym_number, sym_private_property_identifier, - STATE(1614), 3, + STATE(1627), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72385,26 +74040,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42623] = 8, - ACTIONS(854), 1, + [41793] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2385), 2, + ACTIONS(2487), 2, sym_number, sym_private_property_identifier, - STATE(1531), 3, + STATE(1546), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72412,26 +74067,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42658] = 8, - ACTIONS(854), 1, + [41828] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2287), 2, sym_number, sym_private_property_identifier, - STATE(1532), 3, + STATE(1726), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72439,53 +74094,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42693] = 8, - ACTIONS(854), 1, + [41863] = 11, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(2489), 1, + anon_sym_STAR, + ACTIONS(2491), 1, + anon_sym_async, + ACTIONS(2495), 1, + anon_sym_get, + ACTIONS(2497), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2389), 2, + ACTIONS(2493), 2, sym_number, sym_private_property_identifier, - STATE(1516), 3, + STATE(1729), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 4, 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, + [41904] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2391), 2, + ACTIONS(2499), 2, sym_number, sym_private_property_identifier, - STATE(1517), 3, + STATE(1743), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72493,26 +74151,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42763] = 8, - ACTIONS(854), 1, + [41939] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2393), 2, + ACTIONS(2501), 2, sym_number, sym_private_property_identifier, - STATE(1519), 3, + STATE(1745), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72520,26 +74178,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42798] = 8, - ACTIONS(854), 1, + [41974] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2503), 2, sym_number, sym_private_property_identifier, - STATE(1520), 3, + STATE(1746), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72547,26 +74205,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42833] = 8, - ACTIONS(854), 1, + [42009] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2397), 2, + ACTIONS(2505), 2, sym_number, sym_private_property_identifier, - STATE(1422), 3, + STATE(1753), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72574,26 +74232,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42868] = 8, - ACTIONS(854), 1, + [42044] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2507), 2, sym_number, sym_private_property_identifier, - STATE(1553), 3, + STATE(1754), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72601,26 +74259,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42903] = 8, - ACTIONS(854), 1, + [42079] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2401), 2, + ACTIONS(2509), 2, sym_number, sym_private_property_identifier, - STATE(1554), 3, + STATE(1759), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72628,108 +74286,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [42938] = 3, + [42114] = 8, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 8, + ACTIONS(2511), 2, + sym_number, + sym_private_property_identifier, + STATE(1760), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1514), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [42149] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, + ACTIONS(912), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42963] = 3, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1528), 8, + ACTIONS(2513), 2, + sym_number, + sym_private_property_identifier, + STATE(1762), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1530), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [42184] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, + ACTIONS(912), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42988] = 3, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2205), 8, + ACTIONS(2515), 2, + sym_number, + sym_private_property_identifier, + STATE(1763), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(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(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, + [42219] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2403), 8, + ACTIONS(2321), 8, anon_sym_export, anon_sym_let, anon_sym_class, @@ -72738,7 +74380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2405), 8, + ACTIONS(2323), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -72747,75 +74389,82 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [43081] = 8, - ACTIONS(854), 1, + [42244] = 10, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(924), 1, + anon_sym_async, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(2219), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2407), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - STATE(1465), 3, + ACTIONS(926), 2, + anon_sym_get, + anon_sym_set, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 4, anon_sym_export, anon_sym_let, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [43116] = 3, + [42283] = 8, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2409), 8, + ACTIONS(2517), 2, + sym_number, + sym_private_property_identifier, + STATE(1550), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, - anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2411), 8, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [43141] = 8, - ACTIONS(854), 1, + [42318] = 8, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2223), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2413), 2, + ACTIONS(2519), 2, sym_number, sym_private_property_identifier, - STATE(1502), 3, + STATE(1551), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72823,49 +74472,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43176] = 7, - ACTIONS(854), 1, + [42353] = 11, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_STAR, + ACTIONS(2523), 1, + anon_sym_async, + ACTIONS(2527), 1, + anon_sym_get, + ACTIONS(2529), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2525), 2, sym_number, sym_private_property_identifier, - STATE(1610), 3, + STATE(1625), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 4, 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, + [42394] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2415), 2, + ACTIONS(2531), 2, sym_number, sym_private_property_identifier, - STATE(1515), 3, + STATE(1761), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72873,24 +74527,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43240] = 7, - ACTIONS(854), 1, + [42426] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2417), 2, + ACTIONS(2533), 2, sym_number, sym_private_property_identifier, - STATE(1485), 3, + STATE(1553), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72898,24 +74552,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43272] = 7, - ACTIONS(854), 1, + [42458] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2535), 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, + [42480] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2419), 2, + ACTIONS(2352), 2, sym_number, sym_private_property_identifier, - STATE(1463), 3, + STATE(1646), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72923,24 +74597,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43304] = 7, - ACTIONS(854), 1, + [42512] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2421), 2, + ACTIONS(2487), 2, sym_number, sym_private_property_identifier, - STATE(1518), 3, + STATE(1546), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72948,24 +74622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43336] = 7, - ACTIONS(854), 1, + [42544] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2423), 2, + ACTIONS(2287), 2, sym_number, sym_private_property_identifier, - STATE(1530), 3, + STATE(1726), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72973,24 +74647,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43368] = 7, - ACTIONS(854), 1, + [42576] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 2, + ACTIONS(916), 2, sym_number, sym_private_property_identifier, - STATE(1499), 3, + STATE(1833), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -72998,11 +74672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43400] = 2, + [42608] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2425), 15, + ACTIONS(2537), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73018,49 +74692,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [43422] = 7, - ACTIONS(854), 1, + [42630] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, 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, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2429), 2, + ACTIONS(2281), 2, sym_number, sym_private_property_identifier, - STATE(1500), 3, + STATE(1693), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73068,11 +74717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43486] = 2, + [42662] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2431), 15, + ACTIONS(2539), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73088,44 +74737,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [43508] = 2, + [42684] = 7, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2433), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43530] = 7, - ACTIONS(854), 1, + ACTIONS(2541), 2, + sym_number, + sym_private_property_identifier, + STATE(1727), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42716] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2499), 2, sym_number, sym_private_property_identifier, - STATE(1458), 3, + STATE(1743), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73133,24 +74787,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43562] = 7, - ACTIONS(854), 1, + [42748] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2435), 2, + ACTIONS(2543), 2, sym_number, sym_private_property_identifier, - STATE(1503), 3, + STATE(1561), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73158,24 +74812,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43594] = 7, - ACTIONS(854), 1, + [42780] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2437), 2, + ACTIONS(2545), 2, sym_number, sym_private_property_identifier, - STATE(1507), 3, + STATE(1744), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73183,44 +74837,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43626] = 2, + [42812] = 7, + ACTIONS(910), 1, + anon_sym_DQUOTE, + ACTIONS(912), 1, + anon_sym_SQUOTE, + ACTIONS(2093), 1, + anon_sym_LBRACK, 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, + ACTIONS(2547), 2, + sym_number, + sym_private_property_identifier, + STATE(1715), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(922), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42844] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2441), 2, + ACTIONS(2549), 2, sym_number, sym_private_property_identifier, - STATE(1416), 3, + STATE(1560), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73228,24 +74887,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43680] = 7, - ACTIONS(854), 1, + [42876] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2443), 2, + ACTIONS(2551), 2, sym_number, sym_private_property_identifier, - STATE(1380), 3, + STATE(1747), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73253,24 +74912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43712] = 7, - ACTIONS(854), 1, + [42908] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2553), 2, sym_number, sym_private_property_identifier, - STATE(1412), 3, + STATE(1751), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73278,24 +74937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43744] = 7, - ACTIONS(854), 1, + [42940] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2555), 2, sym_number, sym_private_property_identifier, - STATE(1484), 3, + STATE(1723), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73303,24 +74962,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43776] = 7, - ACTIONS(854), 1, + [42972] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2445), 2, + ACTIONS(2557), 2, sym_number, sym_private_property_identifier, - STATE(1583), 3, + STATE(1758), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73328,11 +74987,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [43808] = 2, + [43004] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2559), 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, + [43026] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2447), 15, + ACTIONS(2561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73348,24 +75027,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [43830] = 7, - ACTIONS(854), 1, + [43048] = 7, + ACTIONS(910), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(912), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2093), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2563), 2, sym_number, sym_private_property_identifier, - STATE(1571), 3, + STATE(1549), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(922), 7, anon_sym_export, anon_sym_let, anon_sym_async, @@ -73373,8380 +75052,10518 @@ static const uint16_t ts_small_parse_table[] = { 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, + [43080] = 11, + ACTIONS(2565), 1, sym_identifier, - ACTIONS(2451), 1, + ACTIONS(2567), 1, anon_sym_STAR, - ACTIONS(2453), 1, + ACTIONS(2569), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(2573), 1, anon_sym_DOT, - STATE(1223), 1, + ACTIONS(2575), 1, + anon_sym_DQUOTE, + ACTIONS(2577), 1, + anon_sym_SQUOTE, + STATE(1288), 1, sym_string, - STATE(1446), 1, + STATE(1663), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, - anon_sym_LPAREN, - sym_optional_chain, - STATE(1713), 2, + STATE(1958), 2, sym_namespace_import, sym_named_imports, - [43899] = 8, - ACTIONS(2459), 1, + ACTIONS(2571), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [43118] = 11, + ACTIONS(2565), 1, + sym_identifier, + ACTIONS(2567), 1, + anon_sym_STAR, + ACTIONS(2569), 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, + ACTIONS(2573), 1, + anon_sym_DOT, + ACTIONS(2575), 1, + anon_sym_DQUOTE, + ACTIONS(2577), 1, + anon_sym_SQUOTE, + STATE(1287), 1, + sym_string, + STATE(1656), 1, + sym_import_clause, 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, + STATE(1958), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(2571), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [43156] = 8, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2583), 1, anon_sym_LT, - ACTIONS(2469), 1, + ACTIONS(2585), 1, anon_sym_LT_SLASH, - STATE(1033), 1, + STATE(1056), 1, sym_jsx_opening_element, - STATE(1172), 1, + STATE(1205), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, + ACTIONS(2581), 2, sym_jsx_text, sym_html_character_reference, - STATE(1035), 4, + STATE(1066), 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, - 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(5), 2, - sym_html_comment, - sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [43995] = 8, - ACTIONS(2459), 1, + [43186] = 8, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2583), 1, anon_sym_LT, - ACTIONS(2469), 1, + ACTIONS(2589), 1, anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, - STATE(1134), 1, + STATE(589), 1, sym_jsx_closing_element, + STATE(1056), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2587), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1069), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44025] = 11, - ACTIONS(2471), 1, + [43216] = 11, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(2601), 1, anon_sym_DOT, - ACTIONS(2485), 1, + ACTIONS(2603), 1, anon_sym_SLASH_GT, - STATE(1066), 1, + STATE(1080), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44061] = 8, - ACTIONS(2459), 1, + [43252] = 8, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2583), 1, anon_sym_LT, - ACTIONS(2465), 1, + ACTIONS(2605), 1, anon_sym_LT_SLASH, - STATE(531), 1, + STATE(685), 1, sym_jsx_closing_element, - STATE(1033), 1, + STATE(1056), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2587), 2, sym_jsx_text, sym_html_character_reference, - STATE(1032), 4, + STATE(1069), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44091] = 8, - ACTIONS(2459), 1, + [43282] = 8, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2583), 1, anon_sym_LT, - ACTIONS(2489), 1, + ACTIONS(2607), 1, anon_sym_LT_SLASH, - STATE(726), 1, - sym_jsx_closing_element, - STATE(1033), 1, + STATE(1056), 1, sym_jsx_opening_element, + STATE(1229), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2587), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1069), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44121] = 8, - ACTIONS(2459), 1, + [43312] = 8, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2583), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(2607), 1, anon_sym_LT_SLASH, - STATE(1033), 1, + STATE(1056), 1, sym_jsx_opening_element, - STATE(1162), 1, + STATE(1195), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2491), 2, + ACTIONS(2609), 2, sym_jsx_text, sym_html_character_reference, - STATE(1041), 4, + STATE(1060), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44151] = 11, - 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(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(5), 2, - sym_html_comment, - sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44187] = 8, - ACTIONS(2459), 1, + [43342] = 8, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2583), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(2605), 1, anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, - STATE(1178), 1, + STATE(691), 1, sym_jsx_closing_element, + STATE(1056), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2611), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1059), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44217] = 11, - ACTIONS(2471), 1, + [43372] = 11, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(2601), 1, anon_sym_DOT, - ACTIONS(2497), 1, + ACTIONS(2613), 1, anon_sym_SLASH_GT, - STATE(1055), 1, + STATE(1084), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44253] = 8, - ACTIONS(2459), 1, + [43408] = 8, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2583), 1, anon_sym_LT, - ACTIONS(2489), 1, + ACTIONS(2589), 1, anon_sym_LT_SLASH, - STATE(678), 1, + STATE(578), 1, sym_jsx_closing_element, - STATE(1033), 1, + STATE(1056), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2499), 2, + ACTIONS(2615), 2, sym_jsx_text, sym_html_character_reference, - STATE(1038), 4, + STATE(1057), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44283] = 10, - ACTIONS(2471), 1, + [43438] = 11, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(2601), 1, anon_sym_DOT, - ACTIONS(2497), 1, + ACTIONS(2617), 1, anon_sym_SLASH_GT, - STATE(1061), 1, + STATE(1086), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44316] = 7, - ACTIONS(2501), 1, + [43474] = 8, + ACTIONS(2579), 1, anon_sym_LBRACE, - ACTIONS(2507), 1, + ACTIONS(2583), 1, anon_sym_LT, - ACTIONS(2510), 1, + ACTIONS(2585), 1, anon_sym_LT_SLASH, - STATE(1033), 1, + STATE(1056), 1, sym_jsx_opening_element, + STATE(1221), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2504), 2, + ACTIONS(2587), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1069), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44343] = 10, - ACTIONS(2471), 1, + [43504] = 11, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(2601), 1, anon_sym_DOT, - ACTIONS(2483), 1, + ACTIONS(2619), 1, anon_sym_SLASH_GT, - STATE(1064), 1, + STATE(1093), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44376] = 10, - ACTIONS(2471), 1, + [43540] = 10, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2497), 1, + ACTIONS(2603), 1, anon_sym_SLASH_GT, - STATE(1058), 1, + STATE(1079), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44409] = 10, - ACTIONS(2471), 1, + [43573] = 7, + ACTIONS(2621), 1, + anon_sym_LBRACE, + ACTIONS(2627), 1, + anon_sym_LT, + ACTIONS(2630), 1, + anon_sym_LT_SLASH, + STATE(1056), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2624), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1069), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [43600] = 10, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2483), 1, + ACTIONS(2601), 1, + anon_sym_DOT, + ACTIONS(2619), 1, anon_sym_SLASH_GT, - STATE(1059), 1, + STATE(1094), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44442] = 10, - ACTIONS(2471), 1, + [43633] = 10, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(2601), 1, anon_sym_DOT, - ACTIONS(2485), 1, + ACTIONS(2603), 1, anon_sym_SLASH_GT, - STATE(1067), 1, + STATE(1081), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44475] = 10, - ACTIONS(2471), 1, + [43666] = 10, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2495), 1, + ACTIONS(2601), 1, + anon_sym_DOT, + ACTIONS(2613), 1, anon_sym_SLASH_GT, - STATE(1071), 1, + STATE(1078), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44508] = 10, - ACTIONS(2471), 1, + [43699] = 10, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2495), 1, + ACTIONS(2613), 1, anon_sym_SLASH_GT, - STATE(1068), 1, + STATE(1085), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44541] = 10, - ACTIONS(2471), 1, + [43732] = 10, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2595), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2485), 1, + ACTIONS(2619), 1, anon_sym_SLASH_GT, - STATE(1069), 1, + STATE(1089), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44574] = 7, - ACTIONS(2473), 1, + [43765] = 10, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2593), 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(2597), 1, + anon_sym_GT, + ACTIONS(2599), 1, + sym_jsx_identifier, + ACTIONS(2601), 1, + anon_sym_DOT, + ACTIONS(2617), 1, + anon_sym_SLASH_GT, + STATE(1087), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1140), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1192), 4, - sym_jsx_element, + STATE(1186), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44600] = 9, - ACTIONS(2471), 1, + sym_jsx_attribute, + [43798] = 10, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2520), 1, + ACTIONS(2599), 1, + sym_jsx_identifier, + ACTIONS(2617), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1077), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44630] = 9, - ACTIONS(2471), 1, + [43831] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2632), 1, anon_sym_GT, - ACTIONS(2522), 1, + ACTIONS(2634), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44660] = 7, - ACTIONS(2473), 1, + [43861] = 9, + ACTIONS(2591), 1, + sym_identifier, + ACTIONS(2593), 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(2599), 1, + sym_jsx_identifier, + ACTIONS(2636), 1, + anon_sym_GT, + ACTIONS(2638), 1, + anon_sym_SLASH_GT, + STATE(1098), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1140), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1193), 4, - sym_jsx_element, + STATE(1186), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44686] = 9, - ACTIONS(2471), 1, + sym_jsx_attribute, + [43891] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2483), 1, + ACTIONS(2632), 1, + anon_sym_GT, + ACTIONS(2640), 1, anon_sym_SLASH_GT, - STATE(1063), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44716] = 9, - ACTIONS(2471), 1, + [43921] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2642), 1, anon_sym_GT, - ACTIONS(2526), 1, + ACTIONS(2644), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44746] = 9, - ACTIONS(2471), 1, + [43951] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2636), 1, anon_sym_GT, - ACTIONS(2528), 1, + ACTIONS(2646), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44776] = 9, - ACTIONS(2471), 1, + [43981] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2485), 1, + ACTIONS(2648), 1, + anon_sym_GT, + ACTIONS(2650), 1, anon_sym_SLASH_GT, - STATE(1074), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44806] = 9, - ACTIONS(2471), 1, + [44011] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2532), 1, + ACTIONS(2599), 1, + sym_jsx_identifier, + ACTIONS(2617), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44836] = 9, - ACTIONS(2471), 1, + [44041] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2534), 1, + ACTIONS(2642), 1, anon_sym_GT, - ACTIONS(2536), 1, + ACTIONS(2652), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44866] = 9, - ACTIONS(2471), 1, + [44071] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2534), 1, + ACTIONS(2632), 1, anon_sym_GT, - ACTIONS(2538), 1, + ACTIONS(2654), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44896] = 9, - ACTIONS(2471), 1, + [44101] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(2642), 1, anon_sym_GT, - ACTIONS(2540), 1, + ACTIONS(2656), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44926] = 9, - ACTIONS(2471), 1, + [44131] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2495), 1, + ACTIONS(2636), 1, + anon_sym_GT, + ACTIONS(2658), 1, anon_sym_SLASH_GT, - STATE(1073), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44956] = 9, - ACTIONS(2471), 1, + [44161] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2648), 1, anon_sym_GT, - ACTIONS(2542), 1, + ACTIONS(2660), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [44986] = 9, - ACTIONS(2471), 1, + [44191] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(2632), 1, anon_sym_GT, - ACTIONS(2544), 1, + ACTIONS(2662), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [45016] = 9, - ACTIONS(2471), 1, + [44221] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2546), 1, + ACTIONS(2599), 1, + sym_jsx_identifier, + ACTIONS(2619), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1095), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [45046] = 9, - ACTIONS(2471), 1, + [44251] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2548), 1, + ACTIONS(2599), 1, + sym_jsx_identifier, + ACTIONS(2613), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1096), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [45076] = 8, - ACTIONS(2550), 1, + [44281] = 7, + ACTIONS(2593), 1, + anon_sym_LBRACE, + ACTIONS(2664), 1, + anon_sym_LT, + ACTIONS(2666), 1, + anon_sym_DQUOTE, + ACTIONS(2668), 1, + anon_sym_SQUOTE, + STATE(1061), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1169), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [44307] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2553), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2558), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - STATE(1070), 1, + ACTIONS(2642), 1, + anon_sym_GT, + ACTIONS(2670), 1, + anon_sym_SLASH_GT, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2556), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [45104] = 9, - ACTIONS(2471), 1, + [44337] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2636), 1, anon_sym_GT, - ACTIONS(2561), 1, + ACTIONS(2672), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [45134] = 9, - ACTIONS(2471), 1, + [44367] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2648), 1, anon_sym_GT, - ACTIONS(2563), 1, + ACTIONS(2674), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [45164] = 9, - ACTIONS(2471), 1, + [44397] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2534), 1, + ACTIONS(2648), 1, anon_sym_GT, - ACTIONS(2565), 1, + ACTIONS(2676), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [45194] = 9, - ACTIONS(2471), 1, + [44427] = 7, + ACTIONS(2593), 1, + anon_sym_LBRACE, + ACTIONS(2664), 1, + anon_sym_LT, + ACTIONS(2666), 1, + anon_sym_DQUOTE, + ACTIONS(2668), 1, + anon_sym_SQUOTE, + STATE(1061), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1170), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [44453] = 8, + ACTIONS(2678), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2681), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2686), 1, sym_jsx_identifier, - ACTIONS(2534), 1, - anon_sym_GT, - ACTIONS(2567), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1098), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + ACTIONS(2684), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [45224] = 9, - ACTIONS(2471), 1, + [44481] = 9, + ACTIONS(2591), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2593), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2597), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2599), 1, sym_jsx_identifier, - ACTIONS(2497), 1, + ACTIONS(2603), 1, anon_sym_SLASH_GT, - STATE(1062), 1, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1140), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1186), 2, sym_jsx_expression, sym_jsx_attribute, - [45254] = 8, - ACTIONS(854), 1, + [44511] = 8, + ACTIONS(2135), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2137), 1, anon_sym_SQUOTE, - ACTIONS(2569), 1, + ACTIONS(2689), 1, sym_identifier, - ACTIONS(2571), 1, + ACTIONS(2691), 1, anon_sym_COMMA, - ACTIONS(2573), 1, + ACTIONS(2693), 1, anon_sym_RBRACE, - STATE(1295), 1, + STATE(1405), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, + STATE(1411), 2, sym__module_export_name, sym_string, - [45281] = 8, - ACTIONS(854), 1, + [44538] = 8, + ACTIONS(2135), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2137), 1, anon_sym_SQUOTE, - ACTIONS(2575), 1, + ACTIONS(2695), 1, sym_identifier, - ACTIONS(2577), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(2579), 1, + ACTIONS(2699), 1, + anon_sym_RBRACE, + STATE(1413), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1941), 2, + sym__module_export_name, + sym_string, + [44565] = 5, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(2701), 1, + sym_identifier, + ACTIONS(2705), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2703), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [44585] = 3, + ACTIONS(2707), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(551), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [44601] = 7, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + ACTIONS(2689), 1, + sym_identifier, + ACTIONS(2709), 1, + anon_sym_RBRACE, + STATE(1533), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1411), 2, + sym__module_export_name, + sym_string, + [44625] = 7, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + ACTIONS(2695), 1, + sym_identifier, + ACTIONS(2711), 1, anon_sym_RBRACE, - STATE(1299), 1, + STATE(1578), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, + STATE(1941), 2, sym__module_export_name, sym_string, - [45308] = 4, - ACTIONS(2581), 1, + [44649] = 7, + ACTIONS(101), 1, anon_sym_COMMA, - STATE(1078), 1, + ACTIONS(2221), 1, + anon_sym_RBRACE, + ACTIONS(2225), 1, + anon_sym_EQ, + STATE(1346), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [44673] = 4, + ACTIONS(2713), 1, + anon_sym_COMMA, + STATE(1107), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1602), 5, + ACTIONS(1705), 5, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [45326] = 6, - ACTIONS(897), 1, + [44691] = 5, + ACTIONS(2720), 1, + anon_sym_EQ, + STATE(1224), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2718), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(2716), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [44711] = 6, + ACTIONS(2722), 1, + anon_sym_EQ, + ACTIONS(2724), 1, + sym__automatic_semicolon, + STATE(1424), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2716), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2718), 2, + anon_sym_in, + anon_sym_of, + [44733] = 7, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2227), 1, + anon_sym_RBRACE, + STATE(1346), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [44757] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2727), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [44771] = 7, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2229), 1, + anon_sym_RBRACE, + STATE(1346), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [44795] = 7, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(828), 1, + anon_sym_RBRACE, + ACTIONS(2225), 1, + anon_sym_EQ, + STATE(1440), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [44819] = 6, + ACTIONS(963), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(965), 1, anon_sym_LBRACK, - ACTIONS(2584), 1, + ACTIONS(2729), 1, sym_identifier, - STATE(1308), 1, + STATE(1294), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, + STATE(1210), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45348] = 6, - ACTIONS(897), 1, + [44841] = 6, + ACTIONS(963), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(965), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2729), 1, sym_identifier, - STATE(1255), 1, + STATE(1295), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1092), 3, + STATE(1210), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45370] = 6, - ACTIONS(897), 1, + [44863] = 6, + ACTIONS(963), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(965), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2729), 1, sym_identifier, - STATE(1260), 1, + STATE(1421), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1099), 3, + STATE(1210), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45392] = 7, - ACTIONS(101), 1, + [44885] = 6, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(965), 1, + anon_sym_LBRACK, + ACTIONS(2731), 1, + sym_identifier, + STATE(1282), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1108), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [44907] = 6, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(965), 1, + anon_sym_LBRACK, + ACTIONS(2733), 1, + sym_identifier, + STATE(1318), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1109), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [44929] = 6, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(965), 1, + anon_sym_LBRACK, + ACTIONS(2729), 1, + sym_identifier, + STATE(1318), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1210), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [44951] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2735), 7, anon_sym_COMMA, - ACTIONS(2111), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - ACTIONS(2115), 1, + anon_sym_RBRACK, + [44965] = 7, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + ACTIONS(2695), 1, + sym_identifier, + ACTIONS(2737), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1578), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1941), 2, + sym__module_export_name, + sym_string, + [44989] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2739), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [45003] = 7, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + ACTIONS(2689), 1, + sym_identifier, + ACTIONS(2741), 1, + anon_sym_RBRACE, + STATE(1533), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1411), 2, + sym__module_export_name, + sym_string, + [45027] = 3, + ACTIONS(1610), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(545), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [45043] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2743), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [45057] = 7, + ACTIONS(101), 1, + anon_sym_COMMA, + ACTIONS(832), 1, + anon_sym_RBRACE, + ACTIONS(2225), 1, + anon_sym_EQ, + STATE(1346), 1, aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, + ACTIONS(2223), 2, anon_sym_LPAREN, anon_sym_COLON, - [45416] = 7, + [45081] = 4, + ACTIONS(1887), 1, + anon_sym_COMMA, + STATE(1107), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2745), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [45099] = 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(784), 1, + anon_sym_RBRACE, + ACTIONS(2225), 1, + anon_sym_EQ, + STATE(1346), 1, + aux_sym_object_repeat1, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [45123] = 6, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(965), 1, + anon_sym_LBRACK, + ACTIONS(2729), 1, + sym_identifier, + STATE(1282), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1210), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [45145] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2747), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [45159] = 5, + ACTIONS(2752), 1, + anon_sym_BQUOTE, + ACTIONS(2754), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2749), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1131), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [45178] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2747), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [45191] = 5, + ACTIONS(2757), 1, + anon_sym_default, + ACTIONS(2759), 1, + anon_sym_RBRACE, + ACTIONS(2761), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1139), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [45210] = 5, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(2763), 1, + sym_identifier, + ACTIONS(2765), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1331), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [45229] = 5, + ACTIONS(963), 1, + anon_sym_LBRACE, + ACTIONS(965), 1, + anon_sym_LBRACK, + ACTIONS(2767), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1416), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [45248] = 6, + ACTIONS(2722), 1, + anon_sym_EQ, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1682), 1, + sym__initializer, + STATE(1829), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2771), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [45269] = 6, + ACTIONS(2773), 1, + anon_sym_catch, + ACTIONS(2775), 1, + anon_sym_finally, + STATE(1266), 1, + sym_catch_clause, + STATE(1615), 1, + sym_finally_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(994), 2, + anon_sym_else, + anon_sym_while, + [45290] = 5, + ACTIONS(2779), 1, + anon_sym_BQUOTE, + ACTIONS(2781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2777), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1157), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [45309] = 5, + ACTIONS(2783), 1, + anon_sym_default, + ACTIONS(2786), 1, + anon_sym_RBRACE, + ACTIONS(2788), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1139), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [45328] = 4, + ACTIONS(2791), 1, + sym_identifier, + ACTIONS(2795), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2793), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [45345] = 6, + ACTIONS(433), 1, + anon_sym_BQUOTE, + ACTIONS(1389), 1, + anon_sym_LPAREN, + ACTIONS(1393), 1, + anon_sym_DOT, + ACTIONS(2797), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(534), 2, + sym_template_string, + sym_arguments, + [45366] = 6, + ACTIONS(2722), 1, + anon_sym_EQ, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1480), 1, + sym_formal_parameters, + STATE(1818), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2799), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [45387] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1636), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [45400] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1632), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [45413] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2735), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [45426] = 6, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + ACTIONS(2689), 1, + sym_identifier, + STATE(1533), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1411), 2, + sym__module_export_name, + sym_string, + [45447] = 5, + ACTIONS(2757), 1, + anon_sym_default, + ACTIONS(2761), 1, + anon_sym_case, + ACTIONS(2801), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1139), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [45466] = 6, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + ACTIONS(2695), 1, + sym_identifier, + STATE(1578), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1941), 2, + sym__module_export_name, + sym_string, + [45487] = 5, + ACTIONS(2781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2805), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2803), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1161), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [45506] = 5, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(2765), 1, + anon_sym_LBRACK, + ACTIONS(2807), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1899), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [45525] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1634), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [45538] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(555), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [45551] = 3, + ACTIONS(2809), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2811), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [45566] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2727), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [45579] = 3, + ACTIONS(2813), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2815), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [45594] = 5, + ACTIONS(1719), 1, + anon_sym_LBRACE, + ACTIONS(2765), 1, + anon_sym_LBRACK, + ACTIONS(2817), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1922), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [45613] = 5, + ACTIONS(2781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2821), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2819), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1131), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [45632] = 6, + ACTIONS(2722), 1, + anon_sym_EQ, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1637), 1, + sym_formal_parameters, + STATE(1792), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2823), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [45653] = 6, + ACTIONS(2722), 1, + anon_sym_EQ, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1683), 1, + sym__initializer, + STATE(1834), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2825), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [45674] = 6, + ACTIONS(81), 1, + anon_sym_BQUOTE, + ACTIONS(1534), 1, + anon_sym_LPAREN, + ACTIONS(1538), 1, + anon_sym_DOT, + ACTIONS(2827), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(643), 2, + sym_template_string, + sym_arguments, + [45695] = 5, + ACTIONS(2781), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2829), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2819), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1131), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [45714] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(551), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [45727] = 5, + ACTIONS(2831), 1, + anon_sym_LPAREN, + ACTIONS(2833), 1, + anon_sym_DOT, + STATE(1364), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2323), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [45746] = 5, + ACTIONS(2757), 1, + anon_sym_default, + ACTIONS(2761), 1, + anon_sym_case, + ACTIONS(2835), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1133), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [45765] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2743), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [45778] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2739), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [45791] = 5, + ACTIONS(2757), 1, + anon_sym_default, + ACTIONS(2761), 1, + anon_sym_case, + ACTIONS(2837), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1147), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [45810] = 3, + ACTIONS(2841), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2839), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [45824] = 3, + ACTIONS(2843), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2845), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [45838] = 3, + ACTIONS(2847), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2849), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [45852] = 6, + ACTIONS(2851), 1, + sym_identifier, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(2855), 1, + anon_sym_extends, + STATE(602), 1, + sym_class_body, + STATE(1776), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45872] = 6, + ACTIONS(2129), 1, + anon_sym_COMMA, + ACTIONS(2223), 1, + anon_sym_COLON, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2857), 1, + anon_sym_RBRACE, + STATE(1347), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45892] = 6, + ACTIONS(2859), 1, + sym_identifier, + ACTIONS(2861), 1, + anon_sym_GT, + ACTIONS(2863), 1, + sym_jsx_identifier, + STATE(1636), 1, + sym_nested_identifier, + STATE(1893), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45912] = 6, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(2855), 1, + anon_sym_extends, + ACTIONS(2865), 1, + sym_identifier, + STATE(602), 1, + sym_class_body, + STATE(1776), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45932] = 6, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(2855), 1, + anon_sym_extends, + ACTIONS(2867), 1, + sym_identifier, + STATE(605), 1, + sym_class_body, + STATE(1657), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [45952] = 3, + ACTIONS(2869), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1340), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [45966] = 3, + ACTIONS(1586), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1588), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [45980] = 5, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + ACTIONS(2871), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1919), 2, + sym__module_export_name, + sym_string, + [45998] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1409), 5, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_COLON, + [46010] = 3, + ACTIONS(2873), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2875), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46024] = 6, + ACTIONS(2877), 1, + sym_identifier, + ACTIONS(2879), 1, + anon_sym_GT, + ACTIONS(2881), 1, + sym_jsx_identifier, + STATE(1075), 1, + sym_nested_identifier, + STATE(1083), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46044] = 3, + ACTIONS(1544), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46058] = 6, + ACTIONS(2879), 1, + anon_sym_GT, + ACTIONS(2883), 1, + sym_identifier, + ACTIONS(2885), 1, + sym_jsx_identifier, + STATE(1070), 1, + sym_nested_identifier, + STATE(1090), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46078] = 3, + ACTIONS(1544), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46092] = 3, + ACTIONS(1544), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46106] = 3, + ACTIONS(2887), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2889), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46120] = 3, + ACTIONS(1544), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46134] = 3, + ACTIONS(1544), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46148] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2348), 5, + anon_sym_export, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_class, + anon_sym_AT, + [46160] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1346), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [46172] = 3, + ACTIONS(2873), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2875), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46186] = 6, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(2855), 1, + anon_sym_extends, + ACTIONS(2891), 1, + sym_identifier, + STATE(602), 1, + sym_class_body, + STATE(1776), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46206] = 5, + ACTIONS(2893), 1, + anon_sym_AT, + STATE(1193), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2339), 2, + anon_sym_export, + anon_sym_class, + [46224] = 6, + ACTIONS(2896), 1, + sym_identifier, + ACTIONS(2898), 1, + anon_sym_GT, + ACTIONS(2900), 1, + sym_jsx_identifier, + STATE(1607), 1, + sym_nested_identifier, + STATE(1884), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46244] = 3, + ACTIONS(1578), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1580), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46258] = 3, + ACTIONS(2902), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2904), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46272] = 6, + ACTIONS(2879), 1, + anon_sym_GT, + ACTIONS(2906), 1, + sym_identifier, + ACTIONS(2908), 1, + sym_jsx_identifier, + STATE(1072), 1, + sym_nested_identifier, + STATE(1091), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46292] = 6, + ACTIONS(1534), 1, + anon_sym_LPAREN, + ACTIONS(2910), 1, + sym_identifier, + ACTIONS(2912), 1, + anon_sym_LBRACK, + ACTIONS(2914), 1, + sym_private_property_identifier, + STATE(640), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46312] = 3, + ACTIONS(1544), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46326] = 6, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(2855), 1, + anon_sym_extends, + ACTIONS(2916), 1, + sym_identifier, + STATE(605), 1, + sym_class_body, + STATE(1657), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46346] = 3, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2918), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46360] = 6, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2922), 1, + anon_sym_export, + ACTIONS(2924), 1, + anon_sym_class, + STATE(1193), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46380] = 5, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(2247), 1, + anon_sym_RBRACE, + STATE(1389), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [46398] = 3, + ACTIONS(2926), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2928), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46412] = 3, + ACTIONS(1578), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1580), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46426] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1501), 5, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_COLON, + [46438] = 5, + ACTIONS(2135), 1, + anon_sym_DQUOTE, + ACTIONS(2137), 1, + anon_sym_SQUOTE, + ACTIONS(2930), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1535), 2, + sym__module_export_name, + sym_string, + [46456] = 3, + ACTIONS(1586), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1588), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46470] = 6, + ACTIONS(2855), 1, + anon_sym_extends, + ACTIONS(2932), 1, + sym_identifier, + ACTIONS(2934), 1, + anon_sym_LBRACE, + STATE(554), 1, + sym_class_body, + STATE(1811), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46490] = 4, + ACTIONS(2722), 1, + anon_sym_EQ, + STATE(1424), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2716), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [46506] = 3, + ACTIONS(2936), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1346), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [46520] = 3, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2918), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46534] = 3, + ACTIONS(1570), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1572), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46548] = 3, + ACTIONS(2939), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2941), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46562] = 4, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2244), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [46578] = 6, + ACTIONS(1389), 1, + anon_sym_LPAREN, + ACTIONS(2943), 1, + sym_identifier, + ACTIONS(2945), 1, + anon_sym_LBRACK, + ACTIONS(2947), 1, + sym_private_property_identifier, + STATE(553), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46598] = 6, + ACTIONS(2855), 1, + anon_sym_extends, + ACTIONS(2934), 1, + anon_sym_LBRACE, + ACTIONS(2949), 1, + sym_identifier, + STATE(529), 1, + sym_class_body, + STATE(1525), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46618] = 6, + ACTIONS(2951), 1, + sym_identifier, + ACTIONS(2953), 1, + anon_sym_GT, + ACTIONS(2955), 1, + sym_jsx_identifier, + STATE(1799), 1, + sym_nested_identifier, + STATE(1892), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46638] = 3, + ACTIONS(1594), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1596), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46652] = 6, + ACTIONS(2957), 1, + sym_identifier, + ACTIONS(2959), 1, + anon_sym_GT, + ACTIONS(2961), 1, + sym_jsx_identifier, + STATE(1697), 1, + sym_nested_identifier, + STATE(1931), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46672] = 3, + ACTIONS(1598), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1600), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46686] = 3, + ACTIONS(1544), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46700] = 3, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2918), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46714] = 4, + ACTIONS(2965), 1, + anon_sym_in, + ACTIONS(2967), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2963), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [46730] = 6, + ACTIONS(2129), 1, + anon_sym_COMMA, + ACTIONS(2223), 1, + anon_sym_COLON, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(2969), 1, + anon_sym_RBRACE, + STATE(1445), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46750] = 3, + ACTIONS(2926), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2928), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46764] = 3, + ACTIONS(1594), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1596), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46778] = 3, + ACTIONS(1570), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1572), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46792] = 3, + ACTIONS(1598), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1600), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46806] = 3, + ACTIONS(1544), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46820] = 6, + ACTIONS(2879), 1, + anon_sym_GT, + ACTIONS(2971), 1, + sym_identifier, + ACTIONS(2973), 1, + sym_jsx_identifier, + STATE(1071), 1, + sym_nested_identifier, + STATE(1099), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46840] = 3, + ACTIONS(2977), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2975), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46854] = 6, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(2855), 1, + anon_sym_extends, + ACTIONS(2979), 1, + sym_identifier, + STATE(605), 1, + sym_class_body, + STATE(1657), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46874] = 6, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2981), 1, + anon_sym_export, + ACTIONS(2983), 1, + anon_sym_class, + STATE(1193), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46894] = 3, + ACTIONS(2985), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1346), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [46908] = 3, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2918), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [46922] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2988), 1, + anon_sym_DQUOTE, + STATE(1297), 1, + aux_sym_string_repeat1, + ACTIONS(2990), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [46939] = 4, + ACTIONS(2992), 1, + anon_sym_COMMA, + STATE(1238), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2995), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [46954] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2997), 1, + anon_sym_class, + STATE(1193), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46971] = 5, + ACTIONS(2999), 1, + anon_sym_with, + ACTIONS(3001), 1, + anon_sym_SEMI, + ACTIONS(3003), 1, + sym__automatic_semicolon, + STATE(1643), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [46988] = 5, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(3005), 1, + anon_sym_EQ, + ACTIONS(3007), 1, + anon_sym_RBRACK, + STATE(1356), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3009), 1, + sym_html_character_reference, + ACTIONS(3011), 1, + anon_sym_DQUOTE, + ACTIONS(3013), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1302), 1, + aux_sym__jsx_string_repeat1, + [47024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3011), 1, + anon_sym_SQUOTE, + ACTIONS(3015), 1, + sym_html_character_reference, + ACTIONS(3017), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1303), 1, + aux_sym__jsx_string_repeat2, + [47043] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3019), 1, + anon_sym_DQUOTE, + STATE(1297), 1, + aux_sym_string_repeat1, + ACTIONS(2990), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3019), 1, + anon_sym_SQUOTE, + STATE(1252), 1, + aux_sym_string_repeat2, + ACTIONS(3021), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47077] = 4, + ACTIONS(2223), 1, + anon_sym_COLON, + ACTIONS(2225), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3023), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [47092] = 5, + ACTIONS(2934), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, + anon_sym_extends, + STATE(519), 1, + sym_class_body, + STATE(1674), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47109] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3027), 1, + anon_sym_DQUOTE, + STATE(1237), 1, + aux_sym_string_repeat1, + ACTIONS(3029), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47126] = 5, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, + anon_sym_extends, + STATE(79), 1, + sym_class_body, + STATE(1529), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47143] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3027), 1, + anon_sym_SQUOTE, + STATE(1312), 1, + aux_sym_string_repeat2, + ACTIONS(3031), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47160] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2983), 1, + anon_sym_class, + STATE(1193), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3033), 1, + anon_sym_SQUOTE, + STATE(1252), 1, + aux_sym_string_repeat2, + ACTIONS(3035), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47194] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1501), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [47205] = 5, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, + anon_sym_extends, + STATE(603), 1, + sym_class_body, + STATE(1473), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47222] = 4, + ACTIONS(3038), 1, + anon_sym_COMMA, + STATE(1238), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3040), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47237] = 4, + ACTIONS(3042), 1, + anon_sym_from, + STATE(1775), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3044), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47252] = 5, + ACTIONS(3025), 1, + anon_sym_extends, + ACTIONS(3046), 1, + anon_sym_LBRACE, + STATE(1359), 1, + sym_class_body, + STATE(1476), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47269] = 5, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3048), 1, + sym_identifier, + ACTIONS(3050), 1, + anon_sym_STAR, + STATE(1848), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47286] = 4, + ACTIONS(3038), 1, + anon_sym_COMMA, + STATE(1238), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3052), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47301] = 4, + ACTIONS(3042), 1, + anon_sym_from, + STATE(1630), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3054), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3056), 1, + anon_sym_DQUOTE, + STATE(1297), 1, + aux_sym_string_repeat1, + ACTIONS(2990), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47333] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3056), 1, + anon_sym_SQUOTE, + STATE(1252), 1, + aux_sym_string_repeat2, + ACTIONS(3021), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47350] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3058), 1, + anon_sym_class, + STATE(1193), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47367] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1634), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [47378] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1030), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(3060), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47391] = 4, + ACTIONS(2775), 1, + anon_sym_finally, + STATE(1514), 1, + sym_finally_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1004), 2, + anon_sym_else, + anon_sym_while, + [47406] = 5, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, + anon_sym_extends, + STATE(623), 1, + sym_class_body, + STATE(1489), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47423] = 5, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3062), 1, + sym_identifier, + ACTIONS(3064), 1, + anon_sym_STAR, + STATE(1779), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47440] = 5, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, + anon_sym_extends, + STATE(606), 1, + sym_class_body, + STATE(1700), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47457] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1044), 4, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_SEMI, + anon_sym_while, + [47468] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3066), 1, + anon_sym_DQUOTE, + STATE(1283), 1, + aux_sym_string_repeat1, + ACTIONS(3068), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47485] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3070), 1, + anon_sym_class, + STATE(1193), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47502] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3066), 1, + anon_sym_SQUOTE, + STATE(1284), 1, + aux_sym_string_repeat2, + ACTIONS(3072), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47519] = 5, + ACTIONS(3005), 1, + anon_sym_EQ, + ACTIONS(3074), 1, + anon_sym_COMMA, + ACTIONS(3076), 1, + anon_sym_RPAREN, + STATE(1363), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47536] = 5, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3078), 1, + sym_identifier, + ACTIONS(3080), 1, + anon_sym_STAR, + STATE(1848), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47553] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1632), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [47564] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(3082), 1, + anon_sym_class, + STATE(1193), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47581] = 5, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3084), 1, + sym_identifier, + ACTIONS(3086), 1, + anon_sym_STAR, + STATE(1779), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47598] = 3, + ACTIONS(3088), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1340), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [47611] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1409), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [47622] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3090), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [47633] = 4, + ACTIONS(3038), 1, + anon_sym_COMMA, + STATE(1255), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3092), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3094), 1, + anon_sym_DQUOTE, + STATE(1297), 1, + aux_sym_string_repeat1, + ACTIONS(2990), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3094), 1, + anon_sym_SQUOTE, + STATE(1252), 1, + aux_sym_string_repeat2, + ACTIONS(3021), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [47682] = 5, + ACTIONS(3025), 1, + anon_sym_extends, + ACTIONS(3096), 1, + anon_sym_LBRACE, + STATE(375), 1, + sym_class_body, + STATE(1540), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47699] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1703), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [47710] = 4, + ACTIONS(2999), 1, + anon_sym_with, + STATE(1676), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3098), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47725] = 4, + ACTIONS(2999), 1, + anon_sym_with, + STATE(1641), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3100), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47740] = 5, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3102), 1, + sym_identifier, + ACTIONS(3104), 1, + anon_sym_STAR, + STATE(1779), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47757] = 4, + ACTIONS(3106), 1, + anon_sym_COMMA, + STATE(1290), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1705), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47772] = 5, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3109), 1, + sym_identifier, + ACTIONS(3111), 1, + anon_sym_STAR, + STATE(1848), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47789] = 5, + ACTIONS(3025), 1, + anon_sym_extends, + ACTIONS(3046), 1, + anon_sym_LBRACE, + STATE(1456), 1, + sym_class_body, + STATE(1812), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47806] = 5, + ACTIONS(2999), 1, + anon_sym_with, + ACTIONS(3113), 1, + anon_sym_SEMI, + ACTIONS(3115), 1, + sym__automatic_semicolon, + STATE(1835), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47823] = 4, + ACTIONS(3038), 1, + anon_sym_COMMA, + STATE(1296), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3117), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47838] = 4, + ACTIONS(3038), 1, + anon_sym_COMMA, + STATE(1298), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3119), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47853] = 4, + ACTIONS(3038), 1, + anon_sym_COMMA, + STATE(1238), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3121), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47868] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3123), 1, + anon_sym_DQUOTE, + STATE(1297), 1, + aux_sym_string_repeat1, + ACTIONS(3125), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47885] = 4, + ACTIONS(3038), 1, + anon_sym_COMMA, + STATE(1238), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3128), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47900] = 5, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(3005), 1, + anon_sym_EQ, + ACTIONS(3130), 1, + anon_sym_RBRACK, + STATE(1345), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [47917] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1636), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [47928] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3132), 1, + anon_sym_DQUOTE, + STATE(1310), 1, + aux_sym_string_repeat1, + ACTIONS(3134), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [47945] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3136), 1, + sym_html_character_reference, + ACTIONS(3138), 1, + anon_sym_DQUOTE, + ACTIONS(3140), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1334), 1, + aux_sym__jsx_string_repeat1, + [47964] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3138), 1, + anon_sym_SQUOTE, + ACTIONS(3142), 1, + sym_html_character_reference, + ACTIONS(3144), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1306), 1, + aux_sym__jsx_string_repeat2, + [47983] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2223), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2317), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [47996] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3132), 1, + anon_sym_SQUOTE, + STATE(1313), 1, + aux_sym_string_repeat2, + ACTIONS(3146), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48013] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3148), 1, + sym_html_character_reference, + ACTIONS(3151), 1, + anon_sym_SQUOTE, + ACTIONS(3153), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1306), 1, + aux_sym__jsx_string_repeat2, + [48032] = 5, + ACTIONS(2934), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, + anon_sym_extends, + STATE(546), 1, + sym_class_body, + STATE(1800), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48049] = 5, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3156), 1, + sym_identifier, + ACTIONS(3158), 1, + anon_sym_STAR, + STATE(1705), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48066] = 3, + ACTIONS(2573), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2571), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [48079] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3160), 1, + anon_sym_DQUOTE, + STATE(1297), 1, + aux_sym_string_repeat1, + ACTIONS(2990), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [48096] = 5, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2924), 1, + anon_sym_class, + STATE(1193), 1, + aux_sym_export_statement_repeat1, + STATE(1420), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2988), 1, + anon_sym_SQUOTE, + STATE(1252), 1, + aux_sym_string_repeat2, + ACTIONS(3021), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48130] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3160), 1, + anon_sym_SQUOTE, + STATE(1252), 1, + aux_sym_string_repeat2, + ACTIONS(3021), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48147] = 4, + ACTIONS(1767), 1, + anon_sym_COMMA, + STATE(1290), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45440] = 7, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(766), 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(2745), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [48162] = 5, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, + anon_sym_extends, + STATE(77), 1, + sym_class_body, + STATE(1768), 1, + sym_class_heritage, 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, + [48179] = 3, + ACTIONS(3162), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, + ACTIONS(2571), 3, anon_sym_LPAREN, - anon_sym_COLON, - [45488] = 4, - ACTIONS(1735), 1, + sym_optional_chain, + anon_sym_BQUOTE, + [48192] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3164), 1, + anon_sym_DQUOTE, + STATE(1261), 1, + aux_sym_string_repeat1, + ACTIONS(3166), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [48209] = 4, + ACTIONS(3038), 1, anon_sym_COMMA, - STATE(1078), 1, - aux_sym_sequence_expression_repeat1, + STATE(1259), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2590), 5, - anon_sym_RBRACE, + ACTIONS(3168), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [45506] = 7, - ACTIONS(854), 1, + [48224] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3170), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2575), 1, - sym_identifier, - ACTIONS(2592), 1, - anon_sym_RBRACE, - STATE(1491), 1, - sym_import_specifier, - ACTIONS(5), 2, + STATE(1322), 1, + aux_sym_string_repeat1, + ACTIONS(3172), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [48241] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3170), 1, + anon_sym_SQUOTE, + STATE(1323), 1, + aux_sym_string_repeat2, + ACTIONS(3174), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48258] = 5, + ACTIONS(3), 1, sym_comment, - STATE(1628), 2, - sym__module_export_name, - sym_string, - [45530] = 2, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3176), 1, + anon_sym_DQUOTE, + STATE(1244), 1, + aux_sym_string_repeat1, + ACTIONS(3178), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [48275] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2594), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - anon_sym_RBRACK, - [45544] = 2, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3180), 1, + anon_sym_DQUOTE, + STATE(1297), 1, + aux_sym_string_repeat1, + ACTIONS(2990), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [48292] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2596), 7, - 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, - 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(5), 2, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3180), 1, + anon_sym_SQUOTE, + STATE(1252), 1, + aux_sym_string_repeat2, + ACTIONS(3021), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48309] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45582] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3176), 1, anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_RBRACE, - STATE(1468), 1, - sym_export_specifier, + STATE(1245), 1, + aux_sym_string_repeat2, + ACTIONS(3182), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48326] = 5, + ACTIONS(2853), 1, + anon_sym_LBRACE, + ACTIONS(3025), 1, + anon_sym_extends, + STATE(599), 1, + sym_class_body, + STATE(1860), 1, + sym_class_heritage, 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, + [48343] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2600), 3, + ACTIONS(2223), 4, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [45626] = 2, + anon_sym_EQ, + [48354] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3164), 1, + anon_sym_SQUOTE, + STATE(1262), 1, + aux_sym_string_repeat2, + ACTIONS(3184), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48371] = 5, + ACTIONS(3005), 1, + anon_sym_EQ, + ACTIONS(3186), 1, + anon_sym_COMMA, + ACTIONS(3188), 1, + anon_sym_RPAREN, + STATE(1353), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2606), 7, + [48388] = 4, + ACTIONS(3190), 1, anon_sym_COMMA, - anon_sym_RBRACE, + STATE(1329), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1941), 2, 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, + [48403] = 5, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3193), 1, sym_identifier, - ACTIONS(2612), 1, + ACTIONS(3195), 1, + anon_sym_STAR, + STATE(1531), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48420] = 4, + ACTIONS(3197), 1, anon_sym_EQ, + STATE(1809), 1, + sym__initializer, 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, + ACTIONS(2718), 2, + anon_sym_in, + anon_sym_of, + [48435] = 5, + ACTIONS(3025), 1, + anon_sym_extends, + ACTIONS(3096), 1, anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2584), 1, - sym_identifier, - STATE(1255), 1, - sym_variable_declarator, + STATE(363), 1, + sym_class_body, + STATE(1592), 1, + sym_class_heritage, 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, + [48452] = 4, + ACTIONS(2567), 1, + anon_sym_STAR, ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2614), 1, - anon_sym_RBRACE, - STATE(1468), 1, - sym_export_specifier, + anon_sym_LBRACE, 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, - anon_sym_RBRACE, - STATE(1491), 1, - sym_import_specifier, - ACTIONS(5), 2, - sym_html_comment, + STATE(1879), 2, + sym_namespace_import, + sym_named_imports, + [48467] = 6, + ACTIONS(3), 1, 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, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3199), 1, + sym_html_character_reference, + ACTIONS(3202), 1, + anon_sym_DQUOTE, + ACTIONS(3204), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1334), 1, + aux_sym__jsx_string_repeat1, + [48486] = 2, 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, - anon_sym_EQ, - ACTIONS(2620), 1, + ACTIONS(3207), 3, sym__automatic_semicolon, - STATE(1318), 1, - sym__initializer, + anon_sym_from, + anon_sym_SEMI, + [48496] = 4, + ACTIONS(2129), 1, + anon_sym_COMMA, + ACTIONS(3209), 1, + anon_sym_RBRACE, + STATE(1465), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2600), 2, + [48510] = 4, + ACTIONS(3186), 1, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - [45774] = 2, + ACTIONS(3188), 1, + anon_sym_RPAREN, + STATE(1353), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 7, + [48524] = 4, + ACTIONS(709), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, + ACTIONS(3007), 1, anon_sym_RBRACK, - [45788] = 7, - ACTIONS(101), 1, - anon_sym_COMMA, - 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, + STATE(1356), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45812] = 2, + [48538] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1909), 1, + anon_sym_RBRACK, + STATE(1355), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2625), 7, + [48552] = 4, + ACTIONS(744), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, + ACTIONS(1909), 1, anon_sym_RBRACK, - [45826] = 5, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2627), 1, - sym_identifier, + STATE(1329), 1, + aux_sym_array_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, - anon_sym_RBRACE, - ACTIONS(2633), 1, - anon_sym_case, + [48566] = 4, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(3007), 1, + anon_sym_RBRACK, + STATE(1351), 1, + aux_sym_array_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, + [48580] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2637), 5, - 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(1040), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [48590] = 3, + ACTIONS(1757), 1, + anon_sym_in, 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, + ACTIONS(1687), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [48602] = 4, + ACTIONS(2943), 1, sym_identifier, - STATE(1491), 1, - sym_import_specifier, - 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, + ACTIONS(2945), 1, + anon_sym_LBRACK, + ACTIONS(2947), 1, + sym_private_property_identifier, 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, + [48616] = 4, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(3211), 1, + anon_sym_RBRACK, + STATE(1351), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2649), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [45959] = 2, + [48630] = 4, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(3213), 1, + anon_sym_RBRACE, + STATE(1406), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1648), 6, - sym__automatic_semicolon, + [48644] = 4, + ACTIONS(2129), 1, 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, + ACTIONS(3215), 1, + anon_sym_RBRACE, + STATE(1465), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2651), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [45993] = 2, + [48658] = 4, + ACTIONS(2129), 1, + anon_sym_COMMA, + ACTIONS(3217), 1, + anon_sym_RBRACE, + STATE(1465), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1534), 6, - anon_sym_as, + [48672] = 4, + ACTIONS(2089), 1, anon_sym_COMMA, + ACTIONS(3219), 1, anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [46006] = 5, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(2653), 1, - sym_identifier, - ACTIONS(2655), 1, - anon_sym_LBRACK, + STATE(1406), 1, + aux_sym_object_repeat1, 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, + [48686] = 4, + ACTIONS(2575), 1, + anon_sym_DQUOTE, + ACTIONS(2577), 1, + anon_sym_SQUOTE, + STATE(1441), 1, + sym_string, 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, + [48700] = 4, + ACTIONS(3221), 1, + anon_sym_COMMA, + ACTIONS(3224), 1, + anon_sym_RBRACK, + STATE(1351), 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, + [48714] = 4, + ACTIONS(2129), 1, + anon_sym_COMMA, + ACTIONS(3226), 1, + anon_sym_RBRACE, + STATE(1376), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 6, - sym__automatic_semicolon, + [48728] = 4, + ACTIONS(764), 1, + anon_sym_RPAREN, + ACTIONS(3228), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46078] = 5, - ACTIONS(1885), 1, + STATE(1459), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48742] = 4, + ACTIONS(3230), 1, anon_sym_LBRACE, - ACTIONS(2655), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - sym_identifier, + ACTIONS(3232), 1, + anon_sym_LPAREN, + STATE(1342), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1634), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46097] = 2, + [48756] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(3234), 1, + anon_sym_RBRACK, + STATE(1329), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1646), 6, - sym__automatic_semicolon, + [48770] = 4, + ACTIONS(709), 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(3236), 1, + anon_sym_RBRACK, + STATE(1351), 1, + aux_sym_array_pattern_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, + [48784] = 3, + ACTIONS(1638), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1538), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [46140] = 2, + ACTIONS(643), 2, + anon_sym_else, + anon_sym_while, + [48796] = 3, + ACTIONS(1618), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2594), 6, + ACTIONS(583), 2, + anon_sym_else, + anon_sym_while, + [48808] = 3, + ACTIONS(1620), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - 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(593), 2, + anon_sym_else, + anon_sym_while, + [48820] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_RPAREN, + STATE(1366), 1, + aux_sym_array_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, - sym_identifier, + [48834] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1899), 1, + anon_sym_RPAREN, + STATE(1329), 1, + aux_sym_array_repeat1, 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, + [48848] = 4, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(2601), 1, + anon_sym_DOT, + ACTIONS(3238), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, - sym__module_export_name, - sym_string, - [46227] = 2, + [48862] = 4, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(1459), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1644), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46240] = 2, + [48876] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2625), 6, - sym__automatic_semicolon, + ACTIONS(2465), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [48886] = 4, + ACTIONS(2089), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46253] = 2, + ACTIONS(3242), 1, + anon_sym_RBRACE, + STATE(1378), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 6, - sym__automatic_semicolon, + [48900] = 4, + ACTIONS(744), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46266] = 2, + ACTIONS(3244), 1, + anon_sym_RPAREN, + STATE(1329), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2606), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46279] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2647), 1, + [48914] = 4, + ACTIONS(2223), 1, anon_sym_LPAREN, - STATE(1455), 1, - sym__initializer, - STATE(1551), 1, - sym_formal_parameters, + ACTIONS(2350), 1, + anon_sym_EQ_GT, + ACTIONS(2354), 1, + sym__shorthand_arrow, 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, - anon_sym_RBRACE, - ACTIONS(2692), 1, - anon_sym_case, + [48928] = 4, + ACTIONS(2223), 1, + anon_sym_LPAREN, + ACTIONS(3246), 1, + anon_sym_EQ_GT, + ACTIONS(3248), 1, + sym__shorthand_arrow, 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, + [48942] = 4, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3250), 1, + anon_sym_COLON, + STATE(1539), 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, - sym_identifier, + [48956] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1963), 1, + anon_sym_RPAREN, + STATE(1373), 1, + aux_sym_array_repeat1, 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, + [48970] = 4, + ACTIONS(3042), 1, + anon_sym_from, + ACTIONS(3252), 1, + anon_sym_as, + STATE(1642), 1, + sym__from_clause, 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, + [48984] = 3, + ACTIONS(3005), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, + ACTIONS(3254), 2, anon_sym_COMMA, anon_sym_RBRACE, + [48996] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(3256), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [46384] = 3, - ACTIONS(2706), 1, - anon_sym_LT, + STATE(1329), 1, + aux_sym_array_repeat1, 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, + [49010] = 3, + ACTIONS(1622), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46418] = 2, + ACTIONS(613), 2, + anon_sym_else, + anon_sym_while, + [49022] = 3, + ACTIONS(1626), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 5, + ACTIONS(623), 2, + anon_sym_else, + anon_sym_while, + [49034] = 4, + ACTIONS(2129), 1, anon_sym_COMMA, + ACTIONS(3258), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - 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, + STATE(1465), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46450] = 3, - ACTIONS(2718), 1, - sym_identifier, + [49048] = 3, + ACTIONS(1616), 1, + sym__automatic_semicolon, 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, + ACTIONS(633), 2, + anon_sym_else, + anon_sym_while, + [49060] = 4, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(3260), 1, + anon_sym_RBRACE, + STATE(1406), 1, + aux_sym_object_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, + [49074] = 3, + ACTIONS(3262), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46504] = 3, - ACTIONS(2732), 1, - sym_identifier, + ACTIONS(551), 2, + anon_sym_else, + anon_sym_while, + [49086] = 4, + ACTIONS(3264), 1, + anon_sym_COMMA, + ACTIONS(3267), 1, + anon_sym_RBRACE, + STATE(1380), 1, + aux_sym_export_clause_repeat1, 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, - 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, + [49100] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1963), 1, + anon_sym_RPAREN, + STATE(1329), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46538] = 6, - ACTIONS(2742), 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, + [49114] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46558] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + ACTIONS(2323), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [49124] = 4, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(3269), 1, + anon_sym_RBRACE, + STATE(1390), 1, + aux_sym_object_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, - [46572] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + [49138] = 4, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(3269), 1, + anon_sym_RBRACE, + STATE(1406), 1, + aux_sym_object_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, + [49152] = 3, + ACTIONS(1630), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46606] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + ACTIONS(603), 2, + anon_sym_else, + anon_sym_while, + [49164] = 4, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3271), 1, + anon_sym_COLON, + STATE(1539), 1, + sym_formal_parameters, 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, + [49178] = 4, + ACTIONS(3273), 1, + anon_sym_COMMA, + ACTIONS(3276), 1, + anon_sym_RBRACE, + STATE(1387), 1, + aux_sym_named_imports_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, - 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, + [49192] = 4, + ACTIONS(1018), 1, + anon_sym_while, + ACTIONS(3278), 1, + anon_sym_else, + STATE(1651), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46654] = 3, - ACTIONS(2756), 1, - anon_sym_LT, + [49206] = 4, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(3280), 1, + anon_sym_RBRACE, + STATE(1406), 1, + aux_sym_object_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, - [46668] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2758), 1, - sym_identifier, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(731), 1, - sym_class_body, - STATE(1566), 1, - sym_class_heritage, + [49220] = 4, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(3282), 1, + anon_sym_RBRACE, + STATE(1406), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46688] = 3, - ACTIONS(2756), 1, - anon_sym_LT, + [49234] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1957), 1, + anon_sym_RPAREN, + STATE(1394), 1, + aux_sym_array_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, - [46702] = 3, - ACTIONS(1516), 1, - anon_sym_LT, + [49248] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1957), 1, + anon_sym_RPAREN, + STATE(1329), 1, + aux_sym_array_repeat1, 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, - sym_identifier, - STATE(637), 1, - sym_class_body, - STATE(1560), 1, - sym_class_heritage, + [49262] = 4, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(2601), 1, + anon_sym_DOT, + ACTIONS(3284), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46736] = 3, - ACTIONS(2756), 1, - anon_sym_LT, + [49276] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(3286), 1, + anon_sym_RPAREN, + STATE(1329), 1, + aux_sym_array_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, + [49290] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46770] = 3, - ACTIONS(2766), 1, - anon_sym_EQ, + ACTIONS(1036), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [49300] = 3, + ACTIONS(3288), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 4, + ACTIONS(3290), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49312] = 4, + ACTIONS(2089), 1, anon_sym_COMMA, + ACTIONS(3242), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46784] = 4, - ACTIONS(2111), 1, - anon_sym_EQ, + STATE(1406), 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, + [49326] = 4, + ACTIONS(3292), 1, anon_sym_LBRACE, - ACTIONS(2768), 1, - sym_identifier, - STATE(731), 1, - sym_class_body, - STATE(1566), 1, - sym_class_heritage, + ACTIONS(3294), 1, + anon_sym_LPAREN, + STATE(369), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46820] = 3, - ACTIONS(1396), 1, - sym_identifier, + [49340] = 4, + ACTIONS(2737), 1, + anon_sym_RBRACE, + ACTIONS(3296), 1, + anon_sym_COMMA, + STATE(1387), 1, + aux_sym_named_imports_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, + [49354] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1959), 1, + anon_sym_RPAREN, + STATE(1403), 1, + aux_sym_array_repeat1, 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, - 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, + [49368] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1959), 1, + anon_sym_RPAREN, + STATE(1329), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46868] = 3, - ACTIONS(2776), 1, - anon_sym_LT, + [49382] = 4, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(2601), 1, + anon_sym_DOT, + ACTIONS(3298), 1, + anon_sym_GT, 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, - anon_sym_export, - ACTIONS(2780), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + [49396] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(3300), 1, + anon_sym_RPAREN, + STATE(1329), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46902] = 2, + [49410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1534), 5, + ACTIONS(3302), 3, sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, + anon_sym_from, anon_sym_SEMI, - anon_sym_EQ, - [46914] = 3, - ACTIONS(2782), 1, - sym_identifier, + [49420] = 4, + ACTIONS(3304), 1, + anon_sym_COMMA, + ACTIONS(3306), 1, + anon_sym_RBRACE, + STATE(1460), 1, + aux_sym_export_clause_repeat1, 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, + [49434] = 4, + ACTIONS(3308), 1, + anon_sym_COMMA, + ACTIONS(3311), 1, + anon_sym_RBRACE, + STATE(1406), 1, + aux_sym_object_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, + [49448] = 4, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(3313), 1, + anon_sym_RBRACE, + STATE(1406), 1, + aux_sym_object_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, + [49462] = 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(1409), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [49472] = 4, + ACTIONS(2129), 1, + anon_sym_COMMA, + ACTIONS(3226), 1, + anon_sym_RBRACE, + STATE(1465), 1, + aux_sym_object_pattern_repeat1, 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, + [49486] = 2, 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, + ACTIONS(1505), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [49496] = 3, + ACTIONS(3315), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47034] = 3, - ACTIONS(2798), 1, - anon_sym_EQ, + ACTIONS(3317), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49508] = 3, + ACTIONS(3319), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, + ACTIONS(3321), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47048] = 5, - ACTIONS(1987), 1, + [49520] = 4, + ACTIONS(3323), 1, anon_sym_COMMA, - ACTIONS(2133), 1, + ACTIONS(3325), 1, anon_sym_RBRACE, - STATE(1296), 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, + STATE(1399), 1, + aux_sym_named_imports_repeat1, 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, + [49534] = 4, + ACTIONS(2910), 1, sym_identifier, + ACTIONS(2912), 1, + anon_sym_LBRACK, + ACTIONS(2914), 1, + sym_private_property_identifier, 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(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, + [49548] = 2, 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(1413), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [49558] = 3, + ACTIONS(3327), 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, - [47136] = 3, - ACTIONS(1484), 1, - sym_identifier, + ACTIONS(2718), 2, + anon_sym_in, + anon_sym_of, + [49570] = 4, + ACTIONS(3042), 1, + anon_sym_from, + ACTIONS(3252), 1, + anon_sym_as, + STATE(1606), 1, + sym__from_clause, 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, - sym_identifier, + [49584] = 4, + ACTIONS(3329), 1, + anon_sym_LPAREN, + ACTIONS(3331), 1, + anon_sym_await, + STATE(58), 1, + sym__for_header, 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, - sym_identifier, + [49598] = 2, 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, + ACTIONS(1438), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [49608] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47198] = 3, - ACTIONS(2805), 1, - anon_sym_LT, + ACTIONS(2479), 3, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + [49618] = 2, 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, + ACTIONS(2995), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [49628] = 4, + ACTIONS(3333), 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, + STATE(1163), 1, + sym_decorator_member_expression, + STATE(1382), 1, + sym_decorator_call_expression, 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, + [49642] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47252] = 3, - ACTIONS(2756), 1, - anon_sym_LT, + ACTIONS(541), 3, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [49652] = 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(2963), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2109), 1, + anon_sym_SEMI, + [49662] = 4, + ACTIONS(2595), 1, anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2819), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2601), 1, + anon_sym_DOT, + ACTIONS(3335), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47286] = 4, - ACTIONS(2618), 1, - anon_sym_EQ, - STATE(1318), 1, - sym__initializer, + [49676] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2600), 3, + ACTIONS(3337), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [47302] = 3, - ACTIONS(2821), 1, - sym_identifier, + [49686] = 2, 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, + ACTIONS(1941), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [49696] = 3, + ACTIONS(2869), 1, + anon_sym_EQ, 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(1379), 2, anon_sym_in, - ACTIONS(2833), 1, anon_sym_of, + [49708] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2829), 3, + ACTIONS(1501), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - [47346] = 3, - ACTIONS(1456), 1, - anon_sym_LT, + [49718] = 4, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3339), 1, + sym_identifier, + STATE(1471), 1, + sym_formal_parameters, 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, + [49732] = 3, + ACTIONS(3005), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1538), 5, + ACTIONS(3224), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [49744] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(561), 3, sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [47372] = 6, - ACTIONS(1586), 1, + anon_sym_else, + anon_sym_while, + [49754] = 4, + ACTIONS(2769), 1, anon_sym_LPAREN, - ACTIONS(2835), 1, + ACTIONS(3341), 1, sym_identifier, - ACTIONS(2837), 1, - anon_sym_LBRACK, - ACTIONS(2839), 1, - sym_private_property_identifier, - STATE(723), 1, - sym_arguments, + STATE(1504), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47392] = 3, - ACTIONS(2805), 1, + [49768] = 4, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3343), 1, sym_identifier, + STATE(1471), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2803), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47406] = 3, - ACTIONS(2843), 1, - anon_sym_LT, + [49782] = 3, + ACTIONS(3345), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2841), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [47420] = 5, - ACTIONS(3), 1, + ACTIONS(3347), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49794] = 4, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(3130), 1, + anon_sym_RBRACK, + STATE(1345), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [49808] = 3, + ACTIONS(3088), 1, + anon_sym_EQ, + ACTIONS(5), 2, 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, + sym_comment, + ACTIONS(1379), 2, + anon_sym_in, + anon_sym_of, + [49820] = 4, + ACTIONS(2769), 1, anon_sym_LPAREN, - ACTIONS(2849), 1, + ACTIONS(3349), 1, sym_identifier, - ACTIONS(2851), 1, - anon_sym_STAR, - STATE(1550), 1, + STATE(1471), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47454] = 4, - ACTIONS(2109), 1, - anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, + [49834] = 4, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3351), 1, + sym_identifier, + STATE(1504), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2853), 2, + [49848] = 4, + ACTIONS(2089), 1, anon_sym_COMMA, + ACTIONS(3353), 1, anon_sym_RBRACE, - [47469] = 5, - ACTIONS(665), 1, + STATE(1406), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49862] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3355), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [49872] = 4, + ACTIONS(744), 1, anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2857), 1, + ACTIONS(1915), 1, anon_sym_RBRACK, - STATE(1356), 1, - aux_sym_array_pattern_repeat1, + STATE(1446), 1, + aux_sym_array_repeat1, 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, + [49886] = 4, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + sym_identifier, + STATE(1504), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47503] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [49900] = 2, + 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, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(341), 1, - sym_class_body, - STATE(1572), 1, - sym_class_heritage, + sym_comment, + ACTIONS(3359), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [49910] = 4, + ACTIONS(2129), 1, + anon_sym_COMMA, + ACTIONS(3361), 1, + anon_sym_RBRACE, + STATE(1465), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47539] = 5, - ACTIONS(665), 1, + [49924] = 4, + ACTIONS(744), 1, anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2871), 1, + ACTIONS(3363), 1, anon_sym_RBRACK, - STATE(1284), 1, - aux_sym_array_pattern_repeat1, + STATE(1329), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47556] = 5, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(69), 1, - sym_class_body, - STATE(1427), 1, - sym_class_heritage, + [49938] = 3, + ACTIONS(3365), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47573] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - 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, + ACTIONS(545), 2, + anon_sym_else, + anon_sym_while, + [49950] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47609] = 4, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(1242), 1, - aux_sym_sequence_expression_repeat1, + ACTIONS(551), 3, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + [49960] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2590), 2, + ACTIONS(555), 3, sym__automatic_semicolon, - anon_sym_SEMI, - [47624] = 5, - ACTIONS(2647), 1, + anon_sym_else, + anon_sym_while, + [49970] = 4, + ACTIONS(2769), 1, anon_sym_LPAREN, - ACTIONS(2877), 1, + ACTIONS(3367), 1, sym_identifier, - ACTIONS(2879), 1, - anon_sym_STAR, - STATE(1537), 1, + STATE(1467), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47641] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [49984] = 4, + ACTIONS(3369), 1, + anon_sym_LPAREN, + ACTIONS(3371), 1, + anon_sym_await, + STATE(47), 1, + sym__for_header, + 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, - 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, + [49998] = 4, + ACTIONS(744), 1, + anon_sym_COMMA, + ACTIONS(1915), 1, + anon_sym_RBRACK, + STATE(1329), 1, + aux_sym_array_repeat1, 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, + [50012] = 3, + ACTIONS(3373), 1, + sym_identifier, 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, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(649), 1, - sym_class_body, - STATE(1611), 1, - sym_class_heritage, + ACTIONS(3375), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50024] = 4, + ACTIONS(709), 1, + anon_sym_COMMA, + ACTIONS(3130), 1, + anon_sym_RBRACK, + STATE(1351), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47716] = 6, - ACTIONS(3), 1, + [50038] = 3, + ACTIONS(3377), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(3379), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50050] = 3, + ACTIONS(1624), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, 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, + sym_comment, + ACTIONS(573), 2, + anon_sym_else, + anon_sym_while, + [50062] = 3, + ACTIONS(3005), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 3, + ACTIONS(3381), 2, 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, + anon_sym_RPAREN, + [50074] = 4, + ACTIONS(3383), 1, + sym_identifier, + STATE(942), 1, + sym_decorator_member_expression, + STATE(1026), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47765] = 4, - ACTIONS(2899), 1, + [50088] = 4, + ACTIONS(3381), 1, + anon_sym_RPAREN, + ACTIONS(3385), 1, anon_sym_COMMA, - STATE(1221), 1, - aux_sym_array_repeat1, + STATE(1459), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47780] = 5, - ACTIONS(3), 1, + [50102] = 4, + ACTIONS(2741), 1, + anon_sym_RBRACE, + ACTIONS(3388), 1, + anon_sym_COMMA, + STATE(1380), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [50116] = 4, + ACTIONS(3074), 1, + anon_sym_COMMA, + ACTIONS(3076), 1, + anon_sym_RPAREN, + STATE(1363), 1, + aux_sym_formal_parameters_repeat1, + 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, + [50130] = 4, + ACTIONS(2129), 1, + anon_sym_COMMA, + ACTIONS(3209), 1, + anon_sym_RBRACE, + STATE(1348), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2906), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47812] = 5, - ACTIONS(3), 1, + [50144] = 4, + ACTIONS(2089), 1, + anon_sym_COMMA, + ACTIONS(3313), 1, + anon_sym_RBRACE, + STATE(1349), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [50158] = 4, + ACTIONS(2769), 1, + anon_sym_LPAREN, + ACTIONS(3390), 1, + sym_identifier, + STATE(1778), 1, + sym_formal_parameters, + 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, + [50172] = 4, + ACTIONS(3392), 1, + anon_sym_COMMA, + ACTIONS(3395), 1, + anon_sym_RBRACE, + STATE(1465), 1, + aux_sym_object_pattern_repeat1, + 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, + [50186] = 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(3397), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50195] = 3, + ACTIONS(3399), 1, + anon_sym_LBRACE, + STATE(527), 1, + sym_statement_block, + 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, + sym_comment, + [50206] = 3, + ACTIONS(3401), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(71), 1, - sym_class_body, - STATE(1456), 1, - sym_class_heritage, + STATE(604), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47897] = 5, - ACTIONS(2724), 1, + [50217] = 3, + ACTIONS(3401), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(515), 1, - sym_class_body, - STATE(1450), 1, - sym_class_heritage, + STATE(609), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47914] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2920), 1, - sym_identifier, - ACTIONS(2922), 1, - anon_sym_STAR, - STATE(1565), 1, - sym_formal_parameters, + [50228] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(78), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47931] = 4, - ACTIONS(2924), 1, - anon_sym_COMMA, - STATE(1231), 1, - aux_sym_variable_declaration_repeat1, + [50239] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(612), 1, + sym_statement_block, 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, + [50250] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47963] = 5, - ACTIONS(2724), 1, + ACTIONS(1074), 2, + anon_sym_else, + anon_sym_while, + [50259] = 3, + ACTIONS(2853), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(518), 1, + STATE(600), 1, sym_class_body, - STATE(1425), 1, - sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47980] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_STAR, - STATE(1434), 1, - sym_formal_parameters, + [50270] = 3, + ACTIONS(3403), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47997] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [50281] = 3, + ACTIONS(3403), 1, + anon_sym_LBRACE, + STATE(1375), 1, + sym_statement_block, + 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, + [50292] = 3, + ACTIONS(3046), 1, + anon_sym_LBRACE, + STATE(1377), 1, + sym_class_body, + ACTIONS(5), 2, 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, + sym_comment, + [50303] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(991), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48048] = 3, + [50314] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(992), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48061] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [50325] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(993), 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, + [50336] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(972), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [48089] = 5, - ACTIONS(2760), 1, + [50347] = 3, + ACTIONS(2233), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(634), 1, - sym_class_body, - STATE(1589), 1, - sym_class_heritage, + STATE(979), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48106] = 4, - ACTIONS(2941), 1, - anon_sym_COMMA, - STATE(1242), 1, - aux_sym_sequence_expression_repeat1, + [50358] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(981), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1602), 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, + [50369] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(982), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48138] = 5, - ACTIONS(3), 1, + [50380] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(1246), 2, + anon_sym_else, + anon_sym_while, + [50389] = 2, + 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, + ACTIONS(1078), 2, + anon_sym_else, + anon_sym_while, + [50398] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1685), 1, + sym_formal_parameters, + 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, + [50409] = 3, + ACTIONS(3401), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(661), 1, - sym_class_body, - STATE(1564), 1, - sym_class_heritage, + STATE(607), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48189] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - 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, + [50420] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(610), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2959), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48221] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [50431] = 3, + ACTIONS(2853), 1, + anon_sym_LBRACE, + STATE(621), 1, + sym_class_body, + 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, + [50442] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(628), 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, + [50453] = 3, + ACTIONS(3403), 1, + anon_sym_LBRACE, + STATE(1385), 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, + [50464] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(990), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [50475] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(953), 1, + sym_statement_block, + 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, + [50486] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(954), 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, + [50497] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(955), 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, + [50508] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2976), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48336] = 2, + [50519] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(957), 1, + sym_statement_block, 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, + [50530] = 3, + ACTIONS(2233), 1, anon_sym_LBRACE, + STATE(959), 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, + [50541] = 3, + ACTIONS(2233), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(354), 1, - sym_class_body, - STATE(1546), 1, - sym_class_heritage, + STATE(960), 1, + sym_statement_block, 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, + [50552] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(961), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48396] = 4, - ACTIONS(2957), 1, - anon_sym_COMMA, - STATE(1248), 1, - aux_sym_variable_declaration_repeat1, + [50563] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(962), 1, + sym_statement_block, 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, + [50574] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(966), 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, + [50585] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(968), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48445] = 6, - ACTIONS(3), 1, + [50596] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(629), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [50607] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(81), 1, + sym_statement_block, + 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, + [50618] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(632), 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, + [50629] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1395), 1, + sym_statement_block, 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, + [50640] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(969), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [50651] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(970), 1, + sym_statement_block, + 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, + [50662] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(971), 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, + [50673] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(973), 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, + [50684] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [50695] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(976), 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, + [50706] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 4, - sym__automatic_semicolon, + ACTIONS(1098), 2, + anon_sym_else, + anon_sym_while, + [50715] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [48571] = 4, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1402), 1, - sym__from_clause, + STATE(1537), 1, + sym_formal_parameters, 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, + [50726] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(82), 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, + [50737] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48620] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3024), 1, - sym_identifier, - STATE(1437), 1, - sym_formal_parameters, + ACTIONS(1086), 2, + anon_sym_else, + anon_sym_while, + [50746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48634] = 4, - ACTIONS(2647), 1, + ACTIONS(3254), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [50755] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - ACTIONS(3026), 1, - sym_identifier, - STATE(1567), 1, + STATE(1538), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48648] = 4, - ACTIONS(704), 1, - anon_sym_RPAREN, - ACTIONS(3028), 1, - anon_sym_COMMA, - STATE(1307), 1, - aux_sym_formal_parameters_repeat1, + [50766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48662] = 4, - ACTIONS(2944), 1, + ACTIONS(2412), 2, anon_sym_COMMA, - ACTIONS(2946), 1, - anon_sym_RPAREN, - STATE(1276), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACE, + [50775] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1090), 2, + anon_sym_else, + anon_sym_while, + [50784] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48676] = 4, - ACTIONS(3030), 1, + ACTIONS(1090), 2, + anon_sym_else, + anon_sym_while, + [50793] = 3, + ACTIONS(3405), 1, anon_sym_LBRACE, - ACTIONS(3032), 1, - anon_sym_LPAREN, - STATE(342), 1, + STATE(370), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48690] = 2, + [50804] = 2, 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, + ACTIONS(1094), 2, + anon_sym_else, + anon_sym_while, + [50813] = 3, + ACTIONS(2934), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3034), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [48712] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3036), 1, - anon_sym_RBRACE, - STATE(1324), 1, - aux_sym_object_pattern_repeat1, + [50824] = 3, + ACTIONS(3407), 1, + anon_sym_EQ_GT, + ACTIONS(3409), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48726] = 3, - ACTIONS(2855), 1, - anon_sym_EQ, + [50835] = 3, + ACTIONS(3411), 1, + anon_sym_EQ_GT, + ACTIONS(3413), 1, + sym__shorthand_arrow, 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, + [50846] = 3, + ACTIONS(3415), 1, + anon_sym_EQ_GT, + ACTIONS(3417), 1, + sym__shorthand_arrow, 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, + [50857] = 3, + ACTIONS(2853), 1, + anon_sym_LBRACE, + STATE(83), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48766] = 4, - ACTIONS(2647), 1, + [50868] = 3, + ACTIONS(3419), 1, anon_sym_LPAREN, - ACTIONS(3044), 1, - sym_identifier, - STATE(1592), 1, - sym_formal_parameters, + STATE(60), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48780] = 4, - ACTIONS(3046), 1, - anon_sym_COMMA, - ACTIONS(3049), 1, - anon_sym_RBRACE, - STATE(1286), 1, - aux_sym_named_imports_repeat1, + [50879] = 3, + ACTIONS(3399), 1, + anon_sym_LBRACE, + STATE(547), 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, + [50890] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1819), 1, + sym_formal_parameters, 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, + [50901] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48822] = 4, - ACTIONS(1987), 1, + ACTIONS(3267), 2, anon_sym_COMMA, - ACTIONS(3054), 1, anon_sym_RBRACE, - STATE(1336), 1, - aux_sym_object_repeat1, + [50910] = 2, 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, + ACTIONS(3421), 2, + sym__shorthand_arrow, + anon_sym_EQ_GT, + [50919] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48850] = 4, - ACTIONS(1987), 1, + ACTIONS(3423), 2, anon_sym_COMMA, - ACTIONS(3058), 1, anon_sym_RBRACE, - STATE(1297), 1, - aux_sym_object_repeat1, + [50928] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1702), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48864] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3058), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [50939] = 3, + ACTIONS(3405), 1, + anon_sym_LBRACE, + STATE(371), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48878] = 2, + [50950] = 3, + ACTIONS(3405), 1, + anon_sym_LBRACE, + STATE(373), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3060), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [48888] = 3, - ACTIONS(3062), 1, - anon_sym_as, + [50961] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1520), 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, + [50972] = 3, + ACTIONS(3096), 1, + anon_sym_LBRACE, + STATE(357), 1, + sym_class_body, 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, + [50983] = 2, 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, + ACTIONS(1703), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [50992] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48942] = 3, - ACTIONS(2855), 1, - anon_sym_EQ, + ACTIONS(2437), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51001] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3074), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48954] = 4, - ACTIONS(3076), 1, - anon_sym_COMMA, - ACTIONS(3078), 1, - anon_sym_RBRACE, - STATE(1321), 1, - aux_sym_named_imports_repeat1, + ACTIONS(1254), 2, + anon_sym_else, + anon_sym_while, + [51010] = 3, + ACTIONS(3425), 1, + anon_sym_LBRACE, + STATE(1590), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48968] = 3, - ACTIONS(3080), 1, - anon_sym_as, + [51021] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1707), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3082), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48980] = 4, - ACTIONS(2647), 1, + [51032] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - ACTIONS(3084), 1, - anon_sym_COLON, - STATE(1521), 1, + STATE(1708), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48994] = 3, - ACTIONS(3086), 1, - sym_identifier, + [51043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3088), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49006] = 4, - ACTIONS(698), 1, + ACTIONS(2390), 2, anon_sym_COMMA, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(1306), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [51052] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1709), 1, + sym_statement_block, 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, + [51063] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1710), 1, + sym_formal_parameters, 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, + [51074] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1711), 1, + sym_formal_parameters, 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, + [51085] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1712), 1, + sym_formal_parameters, 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, + [51096] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1713), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49076] = 2, + [51107] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1714), 1, + sym_formal_parameters, 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, - anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [51118] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49100] = 4, - ACTIONS(1987), 1, + ACTIONS(2390), 2, anon_sym_COMMA, - ACTIONS(3097), 1, anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [51127] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49114] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3099), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1106), 2, + anon_sym_else, + anon_sym_while, + [51136] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1718), 1, + sym_formal_parameters, 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, + [51147] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1719), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49142] = 3, - ACTIONS(3101), 1, - sym__automatic_semicolon, + [51158] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1720), 1, + sym_formal_parameters, 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, + [51169] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1721), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49168] = 4, - ACTIONS(3105), 1, + [51180] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - ACTIONS(3107), 1, - anon_sym_await, - STATE(33), 1, - sym__for_header, + STATE(1722), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49182] = 4, - ACTIONS(2647), 1, + [51191] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - ACTIONS(3109), 1, - sym_identifier, - STATE(1375), 1, + STATE(1548), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49196] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + [51202] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49210] = 2, + ACTIONS(2390), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51211] = 3, + ACTIONS(3427), 1, + anon_sym_LBRACE, + STATE(585), 1, + sym_statement_block, 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, + [51222] = 2, 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, + ACTIONS(1118), 2, + anon_sym_else, + anon_sym_while, + [51231] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1552), 1, + sym_formal_parameters, 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, + [51242] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1737), 1, + sym_formal_parameters, 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, + [51253] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49276] = 4, - ACTIONS(968), 1, - anon_sym_while, - ACTIONS(3115), 1, + ACTIONS(1126), 2, anon_sym_else, - STATE(404), 1, - sym_else_clause, + anon_sym_while, + [51262] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49290] = 4, - ACTIONS(2087), 1, + ACTIONS(2390), 2, anon_sym_COMMA, - ACTIONS(3117), 1, anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49304] = 3, - ACTIONS(2766), 1, - anon_sym_EQ, + [51271] = 3, + ACTIONS(3429), 1, + anon_sym_EQ_GT, + ACTIONS(3431), 1, + sym__shorthand_arrow, 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, + [51282] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1739), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49330] = 2, + [51293] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1740), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3119), 3, - 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, + [51304] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1741), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49354] = 3, - ACTIONS(3121), 1, - sym_identifier, + [51315] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1755), 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, + [51326] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1757), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49380] = 2, + [51337] = 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, + ACTIONS(2441), 2, anon_sym_COMMA, - ACTIONS(3132), 1, anon_sym_RBRACE, - STATE(1353), 1, - aux_sym_object_pattern_repeat1, + [51346] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49404] = 4, - ACTIONS(1987), 1, + ACTIONS(3433), 2, anon_sym_COMMA, - ACTIONS(3134), 1, anon_sym_RBRACE, - STATE(1354), 1, - aux_sym_object_repeat1, + [51355] = 3, + ACTIONS(3435), 1, + sym_identifier, + ACTIONS(3437), 1, + sym_private_property_identifier, 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, + [51366] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49432] = 4, - ACTIONS(2087), 1, + ACTIONS(3276), 2, anon_sym_COMMA, - ACTIONS(3132), 1, anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [51375] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49446] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3136), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + ACTIONS(1110), 2, + anon_sym_else, + anon_sym_while, + [51384] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49460] = 3, - ACTIONS(3138), 1, - anon_sym_DOT, + ACTIONS(1122), 2, + anon_sym_else, + anon_sym_while, + [51393] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, - anon_sym_LPAREN, - sym_optional_chain, - [49472] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3140), 1, + ACTIONS(1130), 2, + anon_sym_else, + anon_sym_while, + [51402] = 3, + ACTIONS(2943), 1, sym_identifier, - STATE(1375), 1, - sym_formal_parameters, + ACTIONS(2947), 1, + sym_private_property_identifier, 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, + [51413] = 3, + ACTIONS(3439), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49500] = 3, - ACTIONS(2457), 1, - anon_sym_DOT, + [51424] = 2, 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, + ACTIONS(1134), 2, + anon_sym_else, + anon_sym_while, + [51433] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49526] = 3, - ACTIONS(2895), 1, - anon_sym_EQ, + ACTIONS(1138), 2, + anon_sym_else, + anon_sym_while, + [51442] = 3, + ACTIONS(3407), 1, + anon_sym_EQ_GT, + ACTIONS(3441), 1, + sym__shorthand_arrow, 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, + [51453] = 3, + ACTIONS(3411), 1, + anon_sym_EQ_GT, + ACTIONS(3443), 1, + sym__shorthand_arrow, 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, + [51464] = 3, + ACTIONS(3415), 1, + anon_sym_EQ_GT, + ACTIONS(3445), 1, + sym__shorthand_arrow, 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, + [51475] = 3, + ACTIONS(3419), 1, + anon_sym_LPAREN, + STATE(39), 1, + sym_parenthesized_expression, 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, + [51486] = 2, 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, + ACTIONS(1146), 2, + anon_sym_else, + anon_sym_while, + [51495] = 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(1114), 2, + anon_sym_else, + anon_sym_while, + [51504] = 3, + ACTIONS(3096), 1, + anon_sym_LBRACE, + STATE(362), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49622] = 4, - ACTIONS(2792), 1, + [51515] = 3, + ACTIONS(3447), 1, sym_identifier, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 1, + ACTIONS(3449), 1, sym_private_property_identifier, 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, + [51526] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49650] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - sym_identifier, - STATE(1375), 1, - sym_formal_parameters, + ACTIONS(1154), 2, + anon_sym_else, + anon_sym_while, + [51535] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49664] = 4, - ACTIONS(2087), 1, + ACTIONS(2390), 2, anon_sym_COMMA, - ACTIONS(3152), 1, anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [51544] = 3, + ACTIONS(2910), 1, + sym_identifier, + ACTIONS(2914), 1, + sym_private_property_identifier, 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, + [51555] = 3, + ACTIONS(3246), 1, + anon_sym_EQ_GT, + ACTIONS(3248), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49692] = 4, - ACTIONS(1987), 1, + [51566] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2390), 2, anon_sym_COMMA, - ACTIONS(3156), 1, anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [51575] = 2, 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, + ACTIONS(1166), 2, + anon_sym_else, + anon_sym_while, + [51584] = 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(1286), 2, + anon_sym_else, + anon_sym_while, + [51593] = 3, + ACTIONS(3451), 1, + anon_sym_LPAREN, + STATE(366), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49734] = 3, - ACTIONS(1632), 1, - anon_sym_in, + [51604] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1715), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [49746] = 4, - ACTIONS(3162), 1, - anon_sym_LPAREN, - ACTIONS(3164), 1, - anon_sym_await, - STATE(27), 1, - sym__for_header, + ACTIONS(1182), 2, + anon_sym_else, + anon_sym_while, + [51613] = 3, + ACTIONS(3427), 1, + anon_sym_LBRACE, + STATE(590), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49760] = 2, + [51624] = 3, + ACTIONS(3453), 1, + anon_sym_EQ_GT, + ACTIONS(3455), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3166), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [49770] = 2, + [51635] = 3, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(3284), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3168), 3, - sym__automatic_semicolon, - anon_sym_from, + [51646] = 3, + ACTIONS(3457), 1, 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, + ACTIONS(3459), 1, + sym__automatic_semicolon, 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, + [51657] = 3, + ACTIONS(2601), 1, + anon_sym_DOT, + ACTIONS(3284), 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, + [51668] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1559), 1, + sym_formal_parameters, 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, + [51679] = 3, + ACTIONS(3292), 1, + anon_sym_LBRACE, + STATE(433), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49836] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3174), 1, - anon_sym_GT, + [51690] = 2, 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, + ACTIONS(1230), 2, + anon_sym_else, + anon_sym_while, + [51699] = 2, 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, + ACTIONS(1190), 2, + anon_sym_else, + anon_sym_while, + [51708] = 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(1158), 2, + anon_sym_else, + anon_sym_while, + [51717] = 3, + ACTIONS(3461), 1, + anon_sym_LPAREN, + STATE(1791), 1, + sym_parenthesized_expression, 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, + [51728] = 2, 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, + ACTIONS(567), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51737] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49920] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(954), 1, - sym_statement_block, + ACTIONS(1170), 2, + anon_sym_else, + anon_sym_while, + [51746] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49931] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_statement_block, + ACTIONS(1174), 2, + anon_sym_else, + anon_sym_while, + [51755] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49942] = 3, - ACTIONS(3190), 1, - anon_sym_LBRACE, - STATE(517), 1, - sym_statement_block, + ACTIONS(1178), 2, + anon_sym_else, + anon_sym_while, + [51764] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49953] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1449), 1, - sym_formal_parameters, + ACTIONS(1198), 2, + anon_sym_else, + anon_sym_while, + [51773] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49964] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(663), 1, - sym_statement_block, + ACTIONS(1202), 2, + anon_sym_else, + anon_sym_while, + [51782] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49975] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_statement_block, + ACTIONS(1206), 2, + anon_sym_else, + anon_sym_while, + [51791] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49986] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1373), 1, - sym_formal_parameters, + ACTIONS(1186), 2, + anon_sym_else, + anon_sym_while, + [51800] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49997] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(73), 1, - sym_statement_block, + ACTIONS(1210), 2, + anon_sym_else, + anon_sym_while, + [51809] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50008] = 2, + ACTIONS(1194), 2, + anon_sym_else, + anon_sym_while, + [51818] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3194), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [50017] = 3, - ACTIONS(2647), 1, + ACTIONS(1234), 2, + anon_sym_else, + anon_sym_while, + [51827] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1580), 1, + STATE(1572), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50028] = 2, + [51838] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1573), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3074), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50037] = 2, + [51849] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1574), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3196), 2, + [51860] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [50046] = 2, + STATE(1575), 1, + sym_statement_block, 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, + [51871] = 3, + ACTIONS(3463), 1, + anon_sym_SEMI, + ACTIONS(3465), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50066] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(324), 1, - sym_statement_block, + [51882] = 3, + ACTIONS(3467), 1, + anon_sym_SEMI, + ACTIONS(3469), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50077] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(949), 1, - sym_statement_block, + [51893] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50088] = 3, - ACTIONS(3200), 1, - anon_sym_LPAREN, - STATE(358), 1, - sym_parenthesized_expression, + ACTIONS(1258), 2, + anon_sym_else, + anon_sym_while, + [51902] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50099] = 3, - ACTIONS(2831), 1, - anon_sym_in, - ACTIONS(2833), 1, - anon_sym_of, + ACTIONS(1467), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51911] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50110] = 3, - ACTIONS(3202), 1, - sym_identifier, - ACTIONS(3204), 1, - anon_sym_STAR, + ACTIONS(1262), 2, + anon_sym_else, + anon_sym_while, + [51920] = 3, + ACTIONS(3439), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50121] = 3, - ACTIONS(2475), 1, + [51931] = 3, + ACTIONS(2595), 1, anon_sym_COLON, - ACTIONS(3090), 1, + ACTIONS(3298), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50132] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(952), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50143] = 3, - ACTIONS(2481), 1, + [51942] = 3, + ACTIONS(2601), 1, anon_sym_DOT, - ACTIONS(3090), 1, + ACTIONS(3298), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50154] = 3, - ACTIONS(3030), 1, + [51953] = 3, + ACTIONS(2233), 1, anon_sym_LBRACE, - STATE(360), 1, + STATE(980), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50165] = 3, - ACTIONS(2647), 1, + [51964] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1576), 1, + STATE(1628), 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, + [51975] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(964), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50187] = 3, - ACTIONS(3190), 1, + [51986] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(522), 1, + STATE(1542), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50198] = 2, + [51997] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1415), 2, + ACTIONS(3471), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50207] = 3, - ACTIONS(3210), 1, + [52006] = 3, + ACTIONS(3473), 1, + anon_sym_SEMI, + ACTIONS(3475), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52017] = 3, + ACTIONS(3477), 1, anon_sym_SEMI, - ACTIONS(3212), 1, + ACTIONS(3479), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50218] = 2, + [52028] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 2, + ACTIONS(1845), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50227] = 3, - ACTIONS(3216), 1, + [52037] = 3, + ACTIONS(3481), 1, anon_sym_LBRACE, - STATE(1562), 1, - sym_object, + STATE(699), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52048] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1545), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50238] = 2, + [52059] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 2, + ACTIONS(3483), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50247] = 3, - ACTIONS(3220), 1, - anon_sym_SEMI, - ACTIONS(3222), 1, - sym__automatic_semicolon, + [52068] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50258] = 3, - ACTIONS(2835), 1, - sym_identifier, - ACTIONS(2839), 1, - sym_private_property_identifier, + ACTIONS(1517), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52077] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50269] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(74), 1, - sym_statement_block, + ACTIONS(3485), 2, + anon_sym_in, + anon_sym_of, + [52086] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50280] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1538), 1, - sym_formal_parameters, + ACTIONS(1521), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52095] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50291] = 2, + ACTIONS(1266), 2, + anon_sym_else, + anon_sym_while, + [52104] = 3, + ACTIONS(3487), 1, + sym_identifier, + ACTIONS(3489), 1, + sym_jsx_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1474), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50300] = 2, + [52115] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1478), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50309] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1539), 1, - sym_formal_parameters, + ACTIONS(1162), 2, + anon_sym_else, + anon_sym_while, + [52124] = 3, + ACTIONS(3491), 1, + anon_sym_COMMA, + ACTIONS(3493), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50320] = 3, - ACTIONS(2647), 1, + [52135] = 3, + ACTIONS(3461), 1, anon_sym_LPAREN, STATE(1544), 1, - sym_formal_parameters, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50331] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1471), 1, - sym_formal_parameters, + [52146] = 3, + ACTIONS(3042), 1, + anon_sym_from, + STATE(1240), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50342] = 3, - ACTIONS(3030), 1, + [52157] = 3, + ACTIONS(2853), 1, anon_sym_LBRACE, - STATE(346), 1, - sym_statement_block, + STATE(622), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52168] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1250), 2, + anon_sym_else, + anon_sym_while, + [52177] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50353] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1606), 1, - sym_formal_parameters, + ACTIONS(1142), 2, + anon_sym_else, + anon_sym_while, + [52186] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50364] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_statement_block, + ACTIONS(1270), 2, + anon_sym_else, + anon_sym_while, + [52195] = 3, + ACTIONS(3042), 1, + anon_sym_from, + STATE(1629), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50375] = 3, - ACTIONS(2647), 1, + [52206] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1472), 1, + STATE(1810), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50386] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3103), 1, - anon_sym_GT, + [52217] = 3, + ACTIONS(3042), 1, + anon_sym_from, + STATE(1293), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52228] = 3, + ACTIONS(3399), 1, + anon_sym_LBRACE, + STATE(531), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50397] = 3, - ACTIONS(2647), 1, + [52239] = 3, + ACTIONS(3419), 1, anon_sym_LPAREN, - STATE(1547), 1, - sym_formal_parameters, + STATE(61), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50408] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_GT, + [52250] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50419] = 3, - ACTIONS(2647), 1, + ACTIONS(1274), 2, + anon_sym_else, + anon_sym_while, + [52259] = 3, + ACTIONS(3495), 1, anon_sym_LPAREN, - STATE(1396), 1, - sym_formal_parameters, + STATE(1265), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50430] = 3, - ACTIONS(3190), 1, + [52270] = 3, + ACTIONS(3399), 1, anon_sym_LBRACE, - STATE(519), 1, + STATE(532), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50441] = 3, - ACTIONS(3190), 1, - anon_sym_LBRACE, - STATE(520), 1, - sym_statement_block, + [52281] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50452] = 2, + ACTIONS(1058), 2, + anon_sym_else, + anon_sym_while, + [52290] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3186), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50461] = 3, - ACTIONS(2647), 1, + ACTIONS(3497), 2, + sym__shorthand_arrow, + anon_sym_EQ_GT, + [52299] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1475), 1, + STATE(1784), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50472] = 2, + [52310] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3224), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [50481] = 3, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1398), 1, - sym__from_clause, + ACTIONS(1066), 2, + anon_sym_else, + anon_sym_while, + [52319] = 3, + ACTIONS(3499), 1, + sym_identifier, + ACTIONS(3501), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50492] = 3, - ACTIONS(2724), 1, + [52330] = 3, + ACTIONS(2934), 1, anon_sym_LBRACE, - STATE(521), 1, + STATE(537), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50503] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(25), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50514] = 3, - ACTIONS(2760), 1, + [52341] = 3, + ACTIONS(3503), 1, anon_sym_LBRACE, - STATE(72), 1, - sym_class_body, + STATE(1466), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50525] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, + [52352] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50536] = 2, + ACTIONS(3505), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52361] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3034), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [50545] = 2, + ACTIONS(1070), 2, + anon_sym_else, + anon_sym_while, + [52370] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3179), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50554] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, + ACTIONS(3507), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50565] = 3, - ACTIONS(2119), 1, + ACTIONS(1082), 2, + anon_sym_else, + anon_sym_while, + [52388] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(947), 1, + STATE(1484), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50576] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1378), 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, + [52399] = 3, + ACTIONS(3509), 1, + sym_identifier, + ACTIONS(3511), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50598] = 2, + [52410] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 2, + ACTIONS(3513), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50607] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1404), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50618] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(633), 1, - sym_statement_block, + [52419] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50629] = 3, - ACTIONS(3228), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym__for_header, + ACTIONS(3515), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52428] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50640] = 3, - ACTIONS(2119), 1, + ACTIONS(3517), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52437] = 3, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(80), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50651] = 3, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_EQ_GT, + [52448] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50662] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(924), 1, - sym_statement_block, + ACTIONS(3224), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [52457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50673] = 3, - ACTIONS(3192), 1, + ACTIONS(3519), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52466] = 3, + ACTIONS(3481), 1, anon_sym_LBRACE, - STATE(70), 1, + STATE(708), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50684] = 3, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(3230), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50695] = 3, - ACTIONS(2647), 1, + [52477] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1569), 1, + STATE(1523), 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, + [52488] = 3, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(3335), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50717] = 3, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1261), 1, - sym__from_clause, + [52499] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1813), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50728] = 2, + [52510] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3236), 2, + ACTIONS(3521), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50737] = 2, + [52519] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1829), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3238), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50746] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(68), 1, - sym_statement_block, + [52530] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50757] = 3, - ACTIONS(2724), 1, - anon_sym_LBRACE, - STATE(516), 1, - sym_class_body, + ACTIONS(1282), 2, + anon_sym_else, + anon_sym_while, + [52539] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50768] = 2, + ACTIONS(3523), 2, + sym__shorthand_arrow, + anon_sym_EQ_GT, + [52548] = 3, + ACTIONS(3042), 1, + anon_sym_from, + STATE(1769), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3240), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50777] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(930), 1, - sym_statement_block, + [52559] = 3, + ACTIONS(2601), 1, + anon_sym_DOT, + ACTIONS(3335), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50788] = 2, + [52570] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3242), 2, + ACTIONS(1805), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50797] = 2, + [52579] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3038), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50806] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3244), 2, + ACTIONS(1807), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50815] = 3, - ACTIONS(2760), 1, + [52588] = 3, + ACTIONS(2853), 1, anon_sym_LBRACE, - STATE(75), 1, + STATE(646), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50826] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(1464), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50837] = 3, - ACTIONS(2647), 1, + [52599] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1586), 1, + STATE(1864), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50848] = 3, - ACTIONS(2119), 1, + [52610] = 3, + ACTIONS(3405), 1, anon_sym_LBRACE, - STATE(931), 1, + STATE(361), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50859] = 3, - ACTIONS(3030), 1, + [52621] = 3, + ACTIONS(3427), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(598), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50870] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3246), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50879] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1555), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50890] = 3, - ACTIONS(2647), 1, + [52632] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1529), 1, + STATE(1468), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50901] = 3, - ACTIONS(3248), 1, + [52643] = 3, + ACTIONS(3399), 1, anon_sym_LBRACE, - STATE(400), 1, - sym_switch_body, + STATE(558), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50912] = 3, - ACTIONS(2647), 1, + [52654] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1556), 1, + STATE(1469), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50923] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1590), 1, - sym_formal_parameters, + [52665] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50934] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1557), 1, - sym_formal_parameters, + ACTIONS(2449), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52674] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1824), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50945] = 2, + [52685] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3128), 2, + ACTIONS(2394), 2, anon_sym_COMMA, anon_sym_RBRACE, - [50954] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1593), 1, - sym_formal_parameters, + [52694] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1825), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50965] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1594), 1, - sym_formal_parameters, + [52705] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1826), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50976] = 3, - ACTIONS(3030), 1, + [52716] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(926), 1, + STATE(1827), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50987] = 3, - ACTIONS(3030), 1, + [52727] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2394), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52736] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(928), 1, + STATE(1828), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50998] = 3, - ACTIONS(3228), 1, + [52747] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(52), 1, - sym__for_header, + STATE(1830), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51009] = 3, - ACTIONS(3226), 1, + [52758] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(28), 1, - sym_parenthesized_expression, + STATE(1831), 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, + [52769] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1832), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51031] = 2, + [52780] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1846), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3250), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51040] = 3, - ACTIONS(2119), 1, + [52791] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(969), 1, + STATE(1850), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51051] = 3, - ACTIONS(3030), 1, + [52802] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(937), 1, + STATE(1852), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51062] = 2, + [52813] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3252), 2, + ACTIONS(2394), 2, anon_sym_COMMA, anon_sym_RBRACE, - [51071] = 3, - ACTIONS(3030), 1, + [52822] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(938), 1, + STATE(1853), 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, + [52833] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1854), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51093] = 3, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(338), 1, - sym_statement_block, + [52844] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1474), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52855] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1475), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51104] = 2, + [52866] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1477), 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, + [52877] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1598), 1, + STATE(1478), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51124] = 3, - ACTIONS(2647), 1, + [52888] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1599), 1, + STATE(1479), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51135] = 3, - ACTIONS(2647), 1, + [52899] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1600), 1, + STATE(1481), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51146] = 3, - ACTIONS(2647), 1, + [52910] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1602), 1, + STATE(1482), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51157] = 3, - ACTIONS(2647), 1, + [52921] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1603), 1, + STATE(1483), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51168] = 3, - ACTIONS(2647), 1, + [52932] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1604), 1, + STATE(1855), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51179] = 2, + [52943] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1861), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3258), 2, + [52954] = 3, + ACTIONS(3427), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [51188] = 2, + STATE(593), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3049), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51197] = 3, - ACTIONS(2647), 1, + [52965] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1607), 1, + STATE(1487), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51208] = 3, - ACTIONS(2647), 1, + [52976] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1609), 1, + STATE(1488), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51219] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1442), 1, - sym_formal_parameters, + [52987] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1862), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51230] = 3, - ACTIONS(2647), 1, + [52998] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1612), 1, + STATE(1490), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51241] = 3, - ACTIONS(3030), 1, + [53009] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(940), 1, + STATE(1863), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51252] = 3, - ACTIONS(3030), 1, + [53020] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(941), 1, + STATE(1865), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51263] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1482), 1, - sym_formal_parameters, + [53031] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51274] = 3, - ACTIONS(2647), 1, + ACTIONS(2394), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53040] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1613), 1, + STATE(1491), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51285] = 3, - ACTIONS(2647), 1, + [53051] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1372), 1, + STATE(1492), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51296] = 3, - ACTIONS(2647), 1, + [53062] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1371), 1, + STATE(1493), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51307] = 3, - ACTIONS(2647), 1, + [53073] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1510), 1, + STATE(1494), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51318] = 3, - ACTIONS(2647), 1, + [53084] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1376), 1, + STATE(1495), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51329] = 3, - ACTIONS(2647), 1, + [53095] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1384), 1, + STATE(1496), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51340] = 3, - ACTIONS(2647), 1, + [53106] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1386), 1, + STATE(1497), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51351] = 3, - ACTIONS(2647), 1, + [53117] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1391), 1, + STATE(1498), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51362] = 3, - ACTIONS(2647), 1, + [53128] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1432), 1, + STATE(1499), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51373] = 3, - ACTIONS(2647), 1, + [53139] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1439), 1, + STATE(1500), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51384] = 3, - ACTIONS(2647), 1, + [53150] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1452), 1, + STATE(1501), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51395] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(935), 1, - sym_statement_block, + [53161] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1502), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51406] = 3, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(349), 1, - sym_statement_block, + [53172] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1503), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51417] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(934), 1, - sym_statement_block, + [53183] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51428] = 3, - ACTIONS(2647), 1, + ACTIONS(2394), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53192] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1522), 1, + STATE(1506), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51439] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_statement_block, + [53203] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51450] = 3, - ACTIONS(2647), 1, + ACTIONS(2394), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53212] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1524), 1, + STATE(1508), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51461] = 3, - ACTIONS(2647), 1, + [53223] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1535), 1, + STATE(1509), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51472] = 3, - ACTIONS(2647), 1, + [53234] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1573), 1, + STATE(1510), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51483] = 3, - ACTIONS(2647), 1, + [53245] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1577), 1, + STATE(1511), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51494] = 3, - ACTIONS(2647), 1, + [53256] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1591), 1, + STATE(1512), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51505] = 3, - ACTIONS(2647), 1, + [53267] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1596), 1, + STATE(1513), 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, + [53278] = 3, + ACTIONS(2350), 1, + anon_sym_EQ_GT, + ACTIONS(2354), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51527] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(657), 1, - sym_statement_block, + [53289] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51538] = 3, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(350), 1, - sym_statement_block, + ACTIONS(1458), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53298] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51549] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(937), 1, - sym_statement_block, + ACTIONS(1769), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53307] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51560] = 3, - ACTIONS(3030), 1, + ACTIONS(1026), 2, + anon_sym_else, + anon_sym_while, + [53316] = 3, + ACTIONS(2853), 1, anon_sym_LBRACE, - STATE(951), 1, - sym_statement_block, + STATE(84), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51571] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(954), 1, - sym_statement_block, + [53327] = 3, + ACTIONS(3525), 1, + anon_sym_SEMI, + ACTIONS(3527), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51582] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(935), 1, - sym_statement_block, + [53338] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51593] = 3, - ACTIONS(3260), 1, - anon_sym_SEMI, - ACTIONS(3262), 1, + ACTIONS(1501), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [53347] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1793), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [53356] = 3, + ACTIONS(3529), 1, + anon_sym_EQ_GT, + ACTIONS(3531), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51604] = 3, - ACTIONS(3030), 1, + [53367] = 3, + ACTIONS(3427), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(572), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51615] = 3, - ACTIONS(2647), 1, + [53378] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1478), 1, + STATE(1470), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51626] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1480), 1, - sym_formal_parameters, + [53389] = 3, + ACTIONS(3533), 1, + anon_sym_SEMI, + ACTIONS(3535), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51637] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1481), 1, - sym_formal_parameters, + [53400] = 3, + ACTIONS(2853), 1, + anon_sym_LBRACE, + STATE(637), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51648] = 3, - ACTIONS(2724), 1, + [53411] = 3, + ACTIONS(3292), 1, anon_sym_LBRACE, - STATE(539), 1, - sym_class_body, + STATE(342), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51659] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3144), 1, - anon_sym_GT, + [53422] = 3, + ACTIONS(3399), 1, + anon_sym_LBRACE, + STATE(539), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51670] = 3, - ACTIONS(2119), 1, + [53433] = 3, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(938), 1, + STATE(648), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51681] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3144), 1, - anon_sym_GT, + [53444] = 3, + ACTIONS(3529), 1, + anon_sym_EQ_GT, + ACTIONS(3537), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51692] = 3, - ACTIONS(3190), 1, - anon_sym_LBRACE, - STATE(540), 1, - sym_statement_block, + [53455] = 3, + ACTIONS(3539), 1, + sym_identifier, + ACTIONS(3541), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51703] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_statement_block, + [53466] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51714] = 3, - ACTIONS(3030), 1, + ACTIONS(1409), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [53475] = 3, + ACTIONS(3481), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(689), 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, + [53486] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(601), 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, + [53497] = 3, + ACTIONS(2350), 1, + anon_sym_EQ_GT, + ACTIONS(3543), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51747] = 3, - ACTIONS(2792), 1, - sym_identifier, - ACTIONS(2796), 1, - sym_private_property_identifier, + [53508] = 3, + ACTIONS(3246), 1, + anon_sym_EQ_GT, + ACTIONS(3545), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51758] = 3, - ACTIONS(3272), 1, - anon_sym_SEMI, - ACTIONS(3274), 1, - sym__automatic_semicolon, + [53519] = 3, + ACTIONS(3453), 1, + anon_sym_EQ_GT, + ACTIONS(3547), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51769] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(952), 1, - sym_statement_block, + [53530] = 3, + ACTIONS(3549), 1, + sym_identifier, + ACTIONS(3551), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51780] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_parenthesized_expression, + [53541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51791] = 3, - ACTIONS(2867), 1, - anon_sym_LBRACE, - STATE(351), 1, - sym_class_body, + ACTIONS(3311), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53550] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1516), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51802] = 3, - ACTIONS(3030), 1, + [53561] = 3, + ACTIONS(3553), 1, anon_sym_LBRACE, - STATE(947), 1, - sym_statement_block, + STATE(405), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51813] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1419), 1, - sym_formal_parameters, + [53572] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51824] = 2, + ACTIONS(3555), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53581] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(509), 2, + ACTIONS(3557), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51833] = 3, - ACTIONS(3192), 1, + [53590] = 3, + ACTIONS(3481), 1, anon_sym_LBRACE, - STATE(680), 1, + STATE(688), 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, + [53601] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51855] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1496), 1, - sym_formal_parameters, + ACTIONS(1054), 2, + anon_sym_else, + anon_sym_while, + [53610] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51866] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1497), 1, - sym_formal_parameters, + ACTIONS(1278), 2, + anon_sym_else, + anon_sym_while, + [53619] = 3, + ACTIONS(2595), 1, + anon_sym_COLON, + ACTIONS(3238), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51877] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1514), 1, - sym_formal_parameters, + [53630] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51888] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(927), 1, - sym_statement_block, + ACTIONS(1242), 2, + anon_sym_else, + anon_sym_while, + [53639] = 3, + ACTIONS(2601), 1, + anon_sym_DOT, + ACTIONS(3238), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51899] = 3, - ACTIONS(3030), 1, + [53650] = 3, + ACTIONS(2934), 1, anon_sym_LBRACE, - STATE(930), 1, - sym_statement_block, + STATE(535), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51910] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(931), 1, - sym_statement_block, + [53661] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51921] = 3, - ACTIONS(2647), 1, + ACTIONS(1050), 2, + anon_sym_else, + anon_sym_while, + [53670] = 3, + ACTIONS(3419), 1, anon_sym_LPAREN, - STATE(1413), 1, - sym_formal_parameters, + STATE(45), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51932] = 2, + [53681] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 2, + ACTIONS(1054), 2, + anon_sym_else, + anon_sym_while, + [53690] = 3, + ACTIONS(3419), 1, anon_sym_LPAREN, - anon_sym_COLON, - [51941] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(679), 1, - sym_class_body, + STATE(46), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51952] = 2, + [53701] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1406), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51961] = 2, + ACTIONS(1062), 2, + anon_sym_else, + anon_sym_while, + [53710] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1664), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3276), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51970] = 3, - ACTIONS(3030), 1, + [53721] = 3, + ACTIONS(3419), 1, + anon_sym_LPAREN, + STATE(64), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53732] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(955), 1, + STATE(1137), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51981] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_class_body, + [53743] = 3, + ACTIONS(2965), 1, + anon_sym_in, + ACTIONS(2967), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51992] = 3, - ACTIONS(3190), 1, + [53754] = 3, + ACTIONS(3399), 1, anon_sym_LBRACE, - STATE(559), 1, + STATE(524), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52003] = 3, - ACTIONS(2760), 1, + [53765] = 3, + ACTIONS(2934), 1, anon_sym_LBRACE, - STATE(640), 1, + STATE(526), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52014] = 3, - ACTIONS(3190), 1, + [53776] = 3, + ACTIONS(3046), 1, + anon_sym_LBRACE, + STATE(1357), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53787] = 3, + ACTIONS(3403), 1, + anon_sym_LBRACE, + STATE(1358), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53798] = 3, + ACTIONS(3292), 1, anon_sym_LBRACE, - STATE(562), 1, + STATE(367), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52025] = 2, + [53809] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1150), 2, + anon_sym_else, + anon_sym_while, + [53818] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3559), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53827] = 3, + ACTIONS(2769), 1, + anon_sym_LPAREN, + STATE(1668), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53838] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1721), 2, + ACTIONS(3561), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52034] = 3, - ACTIONS(3192), 1, + [53847] = 3, + ACTIONS(3399), 1, anon_sym_LBRACE, - STATE(642), 1, + STATE(536), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52045] = 2, + [53858] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1723), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52054] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1512), 1, - sym_formal_parameters, + ACTIONS(1050), 2, + anon_sym_else, + anon_sym_while, + [53867] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52065] = 3, - ACTIONS(2867), 1, - anon_sym_LBRACE, - STATE(347), 1, - sym_class_body, + ACTIONS(1102), 2, + anon_sym_else, + anon_sym_while, + [53876] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52076] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_statement_block, + ACTIONS(3563), 2, + sym__shorthand_arrow, + anon_sym_EQ_GT, + [53885] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52087] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1511), 1, - sym_formal_parameters, + ACTIONS(3381), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [53894] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52098] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1523), 1, - sym_formal_parameters, + ACTIONS(2445), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53903] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52109] = 3, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(353), 1, - sym_statement_block, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53912] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52120] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(940), 1, - sym_statement_block, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53921] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52131] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1460), 1, - sym_formal_parameters, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53930] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52142] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53939] = 3, + ACTIONS(2233), 1, + anon_sym_LBRACE, + STATE(986), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52153] = 3, - ACTIONS(3030), 1, + [53950] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(945), 1, + STATE(1547), 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, + [53961] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1554), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52175] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3174), 1, - anon_sym_GT, + [53972] = 3, + ACTIONS(3230), 1, + anon_sym_LBRACE, + STATE(1562), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52186] = 3, - ACTIONS(2647), 1, + [53983] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1525), 1, + STATE(1640), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52197] = 3, - ACTIONS(2724), 1, + [53994] = 3, + ACTIONS(2233), 1, anon_sym_LBRACE, - STATE(566), 1, - sym_class_body, + STATE(987), 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, + [54005] = 3, + ACTIONS(3565), 1, + anon_sym_SEMI, + ACTIONS(3567), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52219] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_statement_block, + [54016] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52230] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(924), 1, - sym_statement_block, + ACTIONS(1050), 2, + anon_sym_else, + anon_sym_while, + [54025] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52241] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1441), 1, - sym_formal_parameters, + ACTIONS(1050), 2, + anon_sym_else, + anon_sym_while, + [54034] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52252] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(647), 1, - sym_class_body, + ACTIONS(1050), 2, + anon_sym_else, + anon_sym_while, + [54043] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52263] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(648), 1, - sym_statement_block, + ACTIONS(1050), 2, + anon_sym_else, + anon_sym_while, + [54052] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52274] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(941), 1, - sym_statement_block, + ACTIONS(1242), 2, + anon_sym_else, + anon_sym_while, + [54061] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52285] = 3, - ACTIONS(3190), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_statement_block, + ACTIONS(1791), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54070] = 3, + ACTIONS(3429), 1, + anon_sym_EQ_GT, + ACTIONS(3569), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52296] = 3, - ACTIONS(3192), 1, + [54081] = 3, + ACTIONS(3481), 1, anon_sym_LBRACE, - STATE(650), 1, + STATE(707), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52307] = 3, - ACTIONS(3192), 1, + [54092] = 3, + ACTIONS(3427), 1, anon_sym_LBRACE, - STATE(618), 1, + STATE(579), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52318] = 3, - ACTIONS(2647), 1, + [54103] = 3, + ACTIONS(2769), 1, anon_sym_LPAREN, - STATE(1420), 1, + STATE(1505), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52329] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_statement_block, + [54114] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52340] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(652), 1, - sym_class_body, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54123] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52351] = 3, - ACTIONS(2119), 1, + ACTIONS(1238), 2, + anon_sym_else, + anon_sym_while, + [54132] = 3, + ACTIONS(3401), 1, anon_sym_LBRACE, - STATE(955), 1, + STATE(611), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52362] = 3, - ACTIONS(2119), 1, + [54143] = 3, + ACTIONS(3481), 1, anon_sym_LBRACE, - STATE(945), 1, + STATE(698), 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, + [54154] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52384] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_statement_block, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54163] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52395] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_statement_block, + ACTIONS(3395), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54172] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52406] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_statement_block, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54181] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52417] = 3, - ACTIONS(2119), 1, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54190] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(932), 1, + STATE(1568), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52428] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1527), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52439] = 3, - ACTIONS(3030), 1, + [54201] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(950), 1, + STATE(1595), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52450] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(653), 1, - sym_statement_block, + [54212] = 3, + ACTIONS(3429), 1, + anon_sym_EQ_GT, + ACTIONS(3571), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52461] = 3, - ACTIONS(3278), 1, - sym_identifier, - ACTIONS(3280), 1, - anon_sym_STAR, + [54223] = 3, + ACTIONS(3407), 1, + anon_sym_EQ_GT, + ACTIONS(3573), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52472] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(654), 1, - sym_statement_block, + [54234] = 3, + ACTIONS(3411), 1, + anon_sym_EQ_GT, + ACTIONS(3575), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52483] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1563), 1, - sym_formal_parameters, + [54245] = 3, + ACTIONS(3415), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + sym__shorthand_arrow, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52494] = 3, - ACTIONS(2760), 1, + [54256] = 3, + ACTIONS(2853), 1, anon_sym_LBRACE, - STATE(655), 1, + STATE(630), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52505] = 3, - ACTIONS(3192), 1, + [54267] = 3, + ACTIONS(3230), 1, anon_sym_LBRACE, - STATE(656), 1, + STATE(1598), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52516] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(934), 1, - sym_statement_block, + [54278] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52527] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1459), 1, - sym_formal_parameters, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54287] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52538] = 2, - ACTIONS(1805), 1, - anon_sym_RPAREN, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54296] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + STATE(634), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52546] = 2, - ACTIONS(3282), 1, - sym_identifier, + [54307] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52554] = 2, - ACTIONS(1809), 1, - anon_sym_RPAREN, + ACTIONS(2366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54316] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52562] = 2, - ACTIONS(3284), 1, - sym_identifier, + ACTIONS(1214), 2, + anon_sym_else, + anon_sym_while, + [54325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3579), 1, + anon_sym_SLASH2, + [54335] = 2, + ACTIONS(3581), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52570] = 2, - ACTIONS(3286), 1, - anon_sym_EQ_GT, + [54343] = 2, + ACTIONS(3583), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52578] = 2, - ACTIONS(3288), 1, - anon_sym_COLON, + [54351] = 2, + ACTIONS(3585), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52586] = 2, - ACTIONS(1819), 1, + [54359] = 2, + ACTIONS(1969), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3290), 1, - anon_sym_SLASH2, - [52604] = 2, - ACTIONS(3292), 1, - anon_sym_EQ_GT, + [54367] = 2, + ACTIONS(3587), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52612] = 2, - ACTIONS(3090), 1, - anon_sym_GT, + [54375] = 2, + ACTIONS(3589), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52620] = 2, - ACTIONS(3294), 1, - anon_sym_RPAREN, + [54383] = 2, + ACTIONS(3523), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52628] = 2, - ACTIONS(3296), 1, - ts_builtin_sym_end, + [54391] = 2, + ACTIONS(1967), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52636] = 2, - ACTIONS(3298), 1, - anon_sym_RPAREN, + [54399] = 2, + ACTIONS(1997), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52644] = 2, - ACTIONS(3300), 1, - anon_sym_as, + [54407] = 2, + ACTIONS(1757), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52652] = 2, - ACTIONS(3302), 1, - sym_identifier, + [54415] = 2, + ACTIONS(1951), 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, + [54423] = 2, + ACTIONS(3591), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52678] = 2, - ACTIONS(3230), 1, - anon_sym_EQ_GT, + [54431] = 2, + ACTIONS(1933), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52686] = 2, - ACTIONS(3306), 1, - anon_sym_EQ_GT, + [54439] = 2, + ACTIONS(1907), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52694] = 2, - ACTIONS(3308), 1, + [54447] = 2, + ACTIONS(3593), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [54455] = 2, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3310), 1, - sym_regex_pattern, - [52712] = 3, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3312), 1, - anon_sym_SLASH2, - [52722] = 2, - ACTIONS(1562), 1, - anon_sym_in, + [54463] = 2, + ACTIONS(3284), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52730] = 2, - ACTIONS(1831), 1, - anon_sym_SEMI, + [54471] = 2, + ACTIONS(3088), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52738] = 2, - ACTIONS(1813), 1, - anon_sym_SEMI, + [54479] = 2, + ACTIONS(1913), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52746] = 2, - ACTIONS(3314), 1, - anon_sym_from, + [54487] = 2, + ACTIONS(3597), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52754] = 2, - ACTIONS(1773), 1, - anon_sym_in, + [54495] = 2, + ACTIONS(3599), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52762] = 2, - ACTIONS(1817), 1, - anon_sym_RPAREN, + [54503] = 2, + ACTIONS(3601), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52770] = 2, - ACTIONS(3316), 1, - anon_sym_from, + [54511] = 2, + ACTIONS(2223), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52778] = 2, - ACTIONS(3318), 1, - anon_sym_EQ, + [54519] = 2, + ACTIONS(3421), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52786] = 2, - ACTIONS(1811), 1, - anon_sym_RPAREN, + [54527] = 2, + ACTIONS(3238), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52794] = 2, - ACTIONS(3078), 1, - anon_sym_RBRACE, + [54535] = 2, + ACTIONS(3298), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52802] = 2, - ACTIONS(1833), 1, - anon_sym_SEMI, + [54543] = 2, + ACTIONS(3603), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52810] = 2, - ACTIONS(1632), 1, - anon_sym_in, + [54551] = 2, + ACTIONS(1897), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52818] = 2, - ACTIONS(2895), 1, - anon_sym_EQ, + [54559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3605), 1, + anon_sym_SLASH2, + [54569] = 2, + ACTIONS(1961), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52826] = 2, - ACTIONS(1787), 1, - anon_sym_RPAREN, + [54577] = 2, + ACTIONS(3607), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52834] = 2, - ACTIONS(1821), 1, + [54585] = 2, + ACTIONS(3609), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52842] = 2, - ACTIONS(1839), 1, - anon_sym_RPAREN, + [54593] = 2, + ACTIONS(1935), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52850] = 2, - ACTIONS(3320), 1, - anon_sym_while, + [54601] = 2, + ACTIONS(1919), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52858] = 2, - ACTIONS(3322), 1, - anon_sym_from, + [54609] = 2, + ACTIONS(1927), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52866] = 2, - ACTIONS(3324), 1, - anon_sym_EQ_GT, + [54617] = 2, + ACTIONS(1044), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52874] = 2, - ACTIONS(1843), 1, + [54625] = 2, + ACTIONS(1895), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52882] = 2, - ACTIONS(1737), 1, + [54633] = 2, + ACTIONS(1965), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52890] = 2, - ACTIONS(1835), 1, + [54641] = 2, + ACTIONS(1917), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52898] = 2, - ACTIONS(3326), 1, - anon_sym_from, + [54649] = 2, + ACTIONS(3611), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52906] = 2, - ACTIONS(1783), 1, + [54657] = 2, + ACTIONS(1901), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52914] = 2, - ACTIONS(3328), 1, - anon_sym_EQ, + [54665] = 2, + ACTIONS(1931), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52922] = 2, - ACTIONS(3330), 1, - sym_identifier, + [54673] = 2, + ACTIONS(3613), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52930] = 2, - ACTIONS(2766), 1, - anon_sym_EQ, + [54681] = 2, + ACTIONS(1953), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52938] = 2, - ACTIONS(1785), 1, + [54689] = 2, + ACTIONS(1955), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52946] = 2, - ACTIONS(3332), 1, - sym_identifier, + [54697] = 2, + ACTIONS(3615), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52954] = 2, - ACTIONS(3334), 1, - anon_sym_EQ_GT, + [54705] = 2, + ACTIONS(3306), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54713] = 2, + ACTIONS(1939), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52962] = 2, - ACTIONS(3336), 1, + [54721] = 2, + ACTIONS(3617), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52970] = 2, - ACTIONS(1807), 1, - anon_sym_COLON, + [54729] = 2, + ACTIONS(3619), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52978] = 2, - ACTIONS(1823), 1, - anon_sym_RPAREN, + [54737] = 2, + ACTIONS(3621), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52986] = 2, - ACTIONS(1741), 1, - anon_sym_RPAREN, + [54745] = 2, + ACTIONS(3623), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52994] = 2, - ACTIONS(3338), 1, - anon_sym_EQ_GT, + [54753] = 2, + ACTIONS(1905), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53002] = 2, - ACTIONS(1797), 1, - anon_sym_RBRACK, + [54761] = 2, + ACTIONS(3601), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53010] = 2, - ACTIONS(1825), 1, + [54769] = 2, + ACTIONS(3625), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53018] = 2, - ACTIONS(3340), 1, - sym_identifier, + [54777] = 2, + ACTIONS(3563), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53026] = 2, - ACTIONS(1799), 1, - anon_sym_RBRACE, + [54785] = 2, + ACTIONS(1945), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53034] = 2, - ACTIONS(3342), 1, - anon_sym_as, + [54793] = 2, + ACTIONS(1664), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53042] = 2, - ACTIONS(3344), 1, - anon_sym_target, + [54801] = 2, + ACTIONS(3325), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53050] = 2, - ACTIONS(1827), 1, + [54809] = 2, + ACTIONS(1893), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53058] = 2, - ACTIONS(3174), 1, - anon_sym_GT, + [54817] = 2, + ACTIONS(1971), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53066] = 2, - ACTIONS(3346), 1, - anon_sym_function, + [54825] = 2, + ACTIONS(3627), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53074] = 2, - ACTIONS(1747), 1, - anon_sym_RPAREN, + [54833] = 2, + ACTIONS(3629), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53082] = 2, - ACTIONS(2275), 1, - anon_sym_EQ_GT, + [54841] = 2, + ACTIONS(3335), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53090] = 2, - ACTIONS(3348), 1, + [54849] = 2, + ACTIONS(3631), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53098] = 2, - ACTIONS(3350), 1, + [54857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3633), 1, + anon_sym_SLASH2, + [54867] = 2, + ACTIONS(3635), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53106] = 2, - ACTIONS(3352), 1, - anon_sym_COLON, + [54875] = 2, + ACTIONS(3637), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53114] = 2, - ACTIONS(3344), 1, - anon_sym_meta, + [54883] = 2, + ACTIONS(1703), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53122] = 2, - ACTIONS(1837), 1, - anon_sym_RBRACE, + [54891] = 2, + ACTIONS(2869), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53130] = 3, + [54899] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3354), 1, + ACTIONS(3639), 1, sym_regex_pattern, - [53140] = 2, - ACTIONS(3356), 1, - anon_sym_EQ_GT, + [54909] = 2, + ACTIONS(1947), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53148] = 2, - ACTIONS(1829), 1, - anon_sym_RBRACE, + [54917] = 2, + ACTIONS(1929), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53156] = 2, - ACTIONS(3358), 1, - anon_sym_meta, + [54925] = 2, + ACTIONS(3641), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53164] = 3, + [54933] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3360), 1, + ACTIONS(3643), 1, sym_regex_pattern, - [53174] = 2, - ACTIONS(3362), 1, + [54943] = 2, + ACTIONS(3645), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53182] = 2, - ACTIONS(1803), 1, - anon_sym_RBRACK, + [54951] = 2, + ACTIONS(1911), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53190] = 2, - ACTIONS(1793), 1, - anon_sym_RBRACK, - ACTIONS(5), 2, - sym_html_comment, + [54959] = 3, + ACTIONS(3), 1, sym_comment, - [53198] = 2, - ACTIONS(3364), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, + ACTIONS(5), 1, sym_html_comment, - sym_comment, - [53206] = 2, - ACTIONS(3366), 1, - anon_sym_from, + ACTIONS(3647), 1, + anon_sym_SLASH2, + [54969] = 2, + ACTIONS(3649), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53214] = 3, + [54977] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3368), 1, + ACTIONS(3651), 1, sym_regex_pattern, - [53224] = 2, - ACTIONS(1871), 1, - anon_sym_in, + [54987] = 2, + ACTIONS(3649), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53232] = 2, - ACTIONS(1674), 1, - anon_sym_in, + [54995] = 2, + ACTIONS(1943), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53240] = 2, - ACTIONS(3370), 1, - anon_sym_EQ_GT, + [55003] = 2, + ACTIONS(3653), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53248] = 2, - ACTIONS(3372), 1, - anon_sym_EQ_GT, + [55011] = 2, + ACTIONS(1833), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53256] = 2, - ACTIONS(3374), 1, - anon_sym_EQ_GT, + [55019] = 2, + ACTIONS(3655), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53264] = 2, - ACTIONS(3376), 1, - anon_sym_EQ_GT, + [55027] = 2, + ACTIONS(1937), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53272] = 2, - ACTIONS(3378), 1, - anon_sym_EQ_GT, + [55035] = 2, + ACTIONS(2056), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53280] = 2, - ACTIONS(3144), 1, - anon_sym_GT, + [55043] = 2, + ACTIONS(1903), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53288] = 2, - ACTIONS(3380), 1, - anon_sym_EQ_GT, + [55051] = 2, + ACTIONS(1889), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53296] = 2, - ACTIONS(3382), 1, + [55059] = 2, + ACTIONS(3657), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53304] = 2, - ACTIONS(3384), 1, - anon_sym_EQ_GT, + [55067] = 2, + ACTIONS(3493), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53312] = 2, - ACTIONS(3386), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, + [55075] = 3, + ACTIONS(3), 1, sym_comment, - [53320] = 2, - ACTIONS(3068), 1, - anon_sym_RBRACE, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3659), 1, + sym_regex_pattern, + [55085] = 2, + ACTIONS(1949), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53328] = 2, - ACTIONS(3358), 1, - anon_sym_target, + [55093] = 2, + ACTIONS(3661), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53336] = 2, - ACTIONS(3234), 1, - anon_sym_from, + [55101] = 2, + ACTIONS(3663), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3388), 1, - anon_sym_SLASH2, - [53354] = 2, - ACTIONS(3390), 1, - anon_sym_from, + [55109] = 2, + ACTIONS(3665), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53362] = 2, - ACTIONS(3392), 1, - anon_sym_EQ_GT, + [55117] = 2, + ACTIONS(3667), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53370] = 2, - ACTIONS(1789), 1, - anon_sym_SEMI, + [55125] = 2, + ACTIONS(1891), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53378] = 2, - ACTIONS(3394), 1, - anon_sym_EQ_GT, + [55133] = 2, + ACTIONS(3669), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53386] = 2, - ACTIONS(1845), 1, - anon_sym_SEMI, + [55141] = 2, + ACTIONS(3497), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53394] = 2, - ACTIONS(3396), 1, + [55149] = 2, + ACTIONS(3671), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53402] = 2, - ACTIONS(3103), 1, - anon_sym_GT, + [55157] = 2, + ACTIONS(3673), 1, + sym_identifier, 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(343)] = 0, + [SMALL_STATE(344)] = 89, + [SMALL_STATE(345)] = 162, + [SMALL_STATE(346)] = 235, + [SMALL_STATE(347)] = 324, + [SMALL_STATE(348)] = 417, + [SMALL_STATE(349)] = 487, + [SMALL_STATE(350)] = 577, + [SMALL_STATE(351)] = 651, + [SMALL_STATE(352)] = 741, + [SMALL_STATE(353)] = 833, + [SMALL_STATE(354)] = 903, + [SMALL_STATE(355)] = 991, + [SMALL_STATE(356)] = 1060, + [SMALL_STATE(357)] = 1131, + [SMALL_STATE(358)] = 1202, + [SMALL_STATE(359)] = 1275, + [SMALL_STATE(360)] = 1366, + [SMALL_STATE(361)] = 1435, + [SMALL_STATE(362)] = 1506, + [SMALL_STATE(363)] = 1577, + [SMALL_STATE(364)] = 1648, + [SMALL_STATE(365)] = 1717, + [SMALL_STATE(366)] = 1786, + [SMALL_STATE(367)] = 1857, + [SMALL_STATE(368)] = 1926, + [SMALL_STATE(369)] = 1995, + [SMALL_STATE(370)] = 2064, + [SMALL_STATE(371)] = 2135, + [SMALL_STATE(372)] = 2206, + [SMALL_STATE(373)] = 2275, + [SMALL_STATE(374)] = 2346, + [SMALL_STATE(375)] = 2417, + [SMALL_STATE(376)] = 2488, + [SMALL_STATE(377)] = 2556, + [SMALL_STATE(378)] = 2624, + [SMALL_STATE(379)] = 2710, + [SMALL_STATE(380)] = 2778, + [SMALL_STATE(381)] = 2846, + [SMALL_STATE(382)] = 2914, + [SMALL_STATE(383)] = 2982, + [SMALL_STATE(384)] = 3050, + [SMALL_STATE(385)] = 3118, + [SMALL_STATE(386)] = 3186, + [SMALL_STATE(387)] = 3254, + [SMALL_STATE(388)] = 3322, + [SMALL_STATE(389)] = 3390, + [SMALL_STATE(390)] = 3458, + [SMALL_STATE(391)] = 3526, + [SMALL_STATE(392)] = 3594, + [SMALL_STATE(393)] = 3662, + [SMALL_STATE(394)] = 3730, + [SMALL_STATE(395)] = 3798, + [SMALL_STATE(396)] = 3866, + [SMALL_STATE(397)] = 3942, + [SMALL_STATE(398)] = 4010, + [SMALL_STATE(399)] = 4078, + [SMALL_STATE(400)] = 4146, + [SMALL_STATE(401)] = 4214, + [SMALL_STATE(402)] = 4282, + [SMALL_STATE(403)] = 4350, + [SMALL_STATE(404)] = 4418, + [SMALL_STATE(405)] = 4486, + [SMALL_STATE(406)] = 4554, + [SMALL_STATE(407)] = 4640, + [SMALL_STATE(408)] = 4708, + [SMALL_STATE(409)] = 4776, + [SMALL_STATE(410)] = 4844, + [SMALL_STATE(411)] = 4912, + [SMALL_STATE(412)] = 4980, + [SMALL_STATE(413)] = 5048, + [SMALL_STATE(414)] = 5116, + [SMALL_STATE(415)] = 5184, + [SMALL_STATE(416)] = 5252, + [SMALL_STATE(417)] = 5320, + [SMALL_STATE(418)] = 5388, + [SMALL_STATE(419)] = 5456, + [SMALL_STATE(420)] = 5524, + [SMALL_STATE(421)] = 5592, + [SMALL_STATE(422)] = 5660, + [SMALL_STATE(423)] = 5728, + [SMALL_STATE(424)] = 5796, + [SMALL_STATE(425)] = 5864, + [SMALL_STATE(426)] = 5932, + [SMALL_STATE(427)] = 6000, + [SMALL_STATE(428)] = 6068, + [SMALL_STATE(429)] = 6144, + [SMALL_STATE(430)] = 6212, + [SMALL_STATE(431)] = 6280, + [SMALL_STATE(432)] = 6348, + [SMALL_STATE(433)] = 6416, + [SMALL_STATE(434)] = 6484, + [SMALL_STATE(435)] = 6552, + [SMALL_STATE(436)] = 6620, + [SMALL_STATE(437)] = 6688, + [SMALL_STATE(438)] = 6756, + [SMALL_STATE(439)] = 6824, + [SMALL_STATE(440)] = 6892, + [SMALL_STATE(441)] = 6960, + [SMALL_STATE(442)] = 7028, + [SMALL_STATE(443)] = 7096, + [SMALL_STATE(444)] = 7164, + [SMALL_STATE(445)] = 7232, + [SMALL_STATE(446)] = 7317, + [SMALL_STATE(447)] = 7402, + [SMALL_STATE(448)] = 7487, + [SMALL_STATE(449)] = 7561, + [SMALL_STATE(450)] = 7627, + [SMALL_STATE(451)] = 7693, + [SMALL_STATE(452)] = 7763, + [SMALL_STATE(453)] = 7829, + [SMALL_STATE(454)] = 7895, + [SMALL_STATE(455)] = 7961, + [SMALL_STATE(456)] = 8027, + [SMALL_STATE(457)] = 8101, + [SMALL_STATE(458)] = 8187, + [SMALL_STATE(459)] = 8253, + [SMALL_STATE(460)] = 8326, + [SMALL_STATE(461)] = 8399, + [SMALL_STATE(462)] = 8473, + [SMALL_STATE(463)] = 8545, + [SMALL_STATE(464)] = 8619, + [SMALL_STATE(465)] = 8693, + [SMALL_STATE(466)] = 8761, + [SMALL_STATE(467)] = 8835, + [SMALL_STATE(468)] = 8907, + [SMALL_STATE(469)] = 8979, + [SMALL_STATE(470)] = 9051, + [SMALL_STATE(471)] = 9125, + [SMALL_STATE(472)] = 9199, + [SMALL_STATE(473)] = 9273, + [SMALL_STATE(474)] = 9347, + [SMALL_STATE(475)] = 9421, + [SMALL_STATE(476)] = 9495, + [SMALL_STATE(477)] = 9558, + [SMALL_STATE(478)] = 9621, + [SMALL_STATE(479)] = 9684, + [SMALL_STATE(480)] = 9747, + [SMALL_STATE(481)] = 9810, + [SMALL_STATE(482)] = 9873, + [SMALL_STATE(483)] = 9936, + [SMALL_STATE(484)] = 10009, + [SMALL_STATE(485)] = 10072, + [SMALL_STATE(486)] = 10147, + [SMALL_STATE(487)] = 10214, + [SMALL_STATE(488)] = 10287, + [SMALL_STATE(489)] = 10350, + [SMALL_STATE(490)] = 10413, + [SMALL_STATE(491)] = 10476, + [SMALL_STATE(492)] = 10539, + [SMALL_STATE(493)] = 10602, + [SMALL_STATE(494)] = 10665, + [SMALL_STATE(495)] = 10728, + [SMALL_STATE(496)] = 10803, + [SMALL_STATE(497)] = 10866, + [SMALL_STATE(498)] = 10940, + [SMALL_STATE(499)] = 11008, + [SMALL_STATE(500)] = 11076, + [SMALL_STATE(501)] = 11142, + [SMALL_STATE(502)] = 11208, + [SMALL_STATE(503)] = 11282, + [SMALL_STATE(504)] = 11350, + [SMALL_STATE(505)] = 11419, + [SMALL_STATE(506)] = 11486, + [SMALL_STATE(507)] = 11559, + [SMALL_STATE(508)] = 11628, + [SMALL_STATE(509)] = 11697, + [SMALL_STATE(510)] = 11770, + [SMALL_STATE(511)] = 11838, + [SMALL_STATE(512)] = 11905, + [SMALL_STATE(513)] = 11968, + [SMALL_STATE(514)] = 12032, + [SMALL_STATE(515)] = 12098, + [SMALL_STATE(516)] = 12156, + [SMALL_STATE(517)] = 12209, + [SMALL_STATE(518)] = 12262, + [SMALL_STATE(519)] = 12315, + [SMALL_STATE(520)] = 12365, + [SMALL_STATE(521)] = 12415, + [SMALL_STATE(522)] = 12465, + [SMALL_STATE(523)] = 12515, + [SMALL_STATE(524)] = 12565, + [SMALL_STATE(525)] = 12615, + [SMALL_STATE(526)] = 12665, + [SMALL_STATE(527)] = 12715, + [SMALL_STATE(528)] = 12765, + [SMALL_STATE(529)] = 12819, + [SMALL_STATE(530)] = 12869, + [SMALL_STATE(531)] = 12919, + [SMALL_STATE(532)] = 12969, + [SMALL_STATE(533)] = 13019, + [SMALL_STATE(534)] = 13069, + [SMALL_STATE(535)] = 13119, + [SMALL_STATE(536)] = 13169, + [SMALL_STATE(537)] = 13219, + [SMALL_STATE(538)] = 13269, + [SMALL_STATE(539)] = 13319, + [SMALL_STATE(540)] = 13369, + [SMALL_STATE(541)] = 13423, + [SMALL_STATE(542)] = 13473, + [SMALL_STATE(543)] = 13523, + [SMALL_STATE(544)] = 13573, + [SMALL_STATE(545)] = 13623, + [SMALL_STATE(546)] = 13673, + [SMALL_STATE(547)] = 13723, + [SMALL_STATE(548)] = 13773, + [SMALL_STATE(549)] = 13823, + [SMALL_STATE(550)] = 13875, + [SMALL_STATE(551)] = 13925, + [SMALL_STATE(552)] = 13975, + [SMALL_STATE(553)] = 14025, + [SMALL_STATE(554)] = 14075, + [SMALL_STATE(555)] = 14125, + [SMALL_STATE(556)] = 14175, + [SMALL_STATE(557)] = 14225, + [SMALL_STATE(558)] = 14275, + [SMALL_STATE(559)] = 14325, + [SMALL_STATE(560)] = 14375, + [SMALL_STATE(561)] = 14429, + [SMALL_STATE(562)] = 14480, + [SMALL_STATE(563)] = 14541, + [SMALL_STATE(564)] = 14604, + [SMALL_STATE(565)] = 14655, + [SMALL_STATE(566)] = 14706, + [SMALL_STATE(567)] = 14757, + [SMALL_STATE(568)] = 14808, + [SMALL_STATE(569)] = 14859, + [SMALL_STATE(570)] = 14907, + [SMALL_STATE(571)] = 14963, + [SMALL_STATE(572)] = 15017, + [SMALL_STATE(573)] = 15065, + [SMALL_STATE(574)] = 15121, + [SMALL_STATE(575)] = 15175, + [SMALL_STATE(576)] = 15223, + [SMALL_STATE(577)] = 15271, + [SMALL_STATE(578)] = 15319, + [SMALL_STATE(579)] = 15367, + [SMALL_STATE(580)] = 15415, + [SMALL_STATE(581)] = 15463, + [SMALL_STATE(582)] = 15513, + [SMALL_STATE(583)] = 15561, + [SMALL_STATE(584)] = 15609, + [SMALL_STATE(585)] = 15659, + [SMALL_STATE(586)] = 15707, + [SMALL_STATE(587)] = 15757, + [SMALL_STATE(588)] = 15805, + [SMALL_STATE(589)] = 15853, + [SMALL_STATE(590)] = 15901, + [SMALL_STATE(591)] = 15949, + [SMALL_STATE(592)] = 15997, + [SMALL_STATE(593)] = 16047, + [SMALL_STATE(594)] = 16095, + [SMALL_STATE(595)] = 16149, + [SMALL_STATE(596)] = 16197, + [SMALL_STATE(597)] = 16245, + [SMALL_STATE(598)] = 16293, + [SMALL_STATE(599)] = 16341, + [SMALL_STATE(600)] = 16388, + [SMALL_STATE(601)] = 16439, + [SMALL_STATE(602)] = 16490, + [SMALL_STATE(603)] = 16537, + [SMALL_STATE(604)] = 16588, + [SMALL_STATE(605)] = 16639, + [SMALL_STATE(606)] = 16686, + [SMALL_STATE(607)] = 16737, + [SMALL_STATE(608)] = 16784, + [SMALL_STATE(609)] = 16831, + [SMALL_STATE(610)] = 16882, + [SMALL_STATE(611)] = 16929, + [SMALL_STATE(612)] = 16976, + [SMALL_STATE(613)] = 17023, + [SMALL_STATE(614)] = 17070, + [SMALL_STATE(615)] = 17117, + [SMALL_STATE(616)] = 17164, + [SMALL_STATE(617)] = 17211, + [SMALL_STATE(618)] = 17258, + [SMALL_STATE(619)] = 17307, + [SMALL_STATE(620)] = 17356, + [SMALL_STATE(621)] = 17403, + [SMALL_STATE(622)] = 17450, + [SMALL_STATE(623)] = 17497, + [SMALL_STATE(624)] = 17544, + [SMALL_STATE(625)] = 17593, + [SMALL_STATE(626)] = 17640, + [SMALL_STATE(627)] = 17689, + [SMALL_STATE(628)] = 17736, + [SMALL_STATE(629)] = 17787, + [SMALL_STATE(630)] = 17834, + [SMALL_STATE(631)] = 17881, + [SMALL_STATE(632)] = 17932, + [SMALL_STATE(633)] = 17979, + [SMALL_STATE(634)] = 18026, + [SMALL_STATE(635)] = 18073, + [SMALL_STATE(636)] = 18124, + [SMALL_STATE(637)] = 18171, + [SMALL_STATE(638)] = 18218, + [SMALL_STATE(639)] = 18265, + [SMALL_STATE(640)] = 18312, + [SMALL_STATE(641)] = 18359, + [SMALL_STATE(642)] = 18410, + [SMALL_STATE(643)] = 18461, + [SMALL_STATE(644)] = 18508, + [SMALL_STATE(645)] = 18555, + [SMALL_STATE(646)] = 18606, + [SMALL_STATE(647)] = 18657, + [SMALL_STATE(648)] = 18708, + [SMALL_STATE(649)] = 18755, + [SMALL_STATE(650)] = 18841, + [SMALL_STATE(651)] = 18927, + [SMALL_STATE(652)] = 18979, + [SMALL_STATE(653)] = 19065, + [SMALL_STATE(654)] = 19151, + [SMALL_STATE(655)] = 19203, + [SMALL_STATE(656)] = 19289, + [SMALL_STATE(657)] = 19341, + [SMALL_STATE(658)] = 19391, + [SMALL_STATE(659)] = 19477, + [SMALL_STATE(660)] = 19563, + [SMALL_STATE(661)] = 19615, + [SMALL_STATE(662)] = 19701, + [SMALL_STATE(663)] = 19787, + [SMALL_STATE(664)] = 19853, + [SMALL_STATE(665)] = 19903, + [SMALL_STATE(666)] = 19959, + [SMALL_STATE(667)] = 20045, + [SMALL_STATE(668)] = 20123, + [SMALL_STATE(669)] = 20203, + [SMALL_STATE(670)] = 20265, + [SMALL_STATE(671)] = 20339, + [SMALL_STATE(672)] = 20415, + [SMALL_STATE(673)] = 20493, + [SMALL_STATE(674)] = 20553, + [SMALL_STATE(675)] = 20609, + [SMALL_STATE(676)] = 20679, + [SMALL_STATE(677)] = 20761, + [SMALL_STATE(678)] = 20811, + [SMALL_STATE(679)] = 20897, + [SMALL_STATE(680)] = 20983, + [SMALL_STATE(681)] = 21069, + [SMALL_STATE(682)] = 21114, + [SMALL_STATE(683)] = 21165, + [SMALL_STATE(684)] = 21210, + [SMALL_STATE(685)] = 21255, + [SMALL_STATE(686)] = 21300, + [SMALL_STATE(687)] = 21351, + [SMALL_STATE(688)] = 21396, + [SMALL_STATE(689)] = 21441, + [SMALL_STATE(690)] = 21486, + [SMALL_STATE(691)] = 21539, + [SMALL_STATE(692)] = 21584, + [SMALL_STATE(693)] = 21629, + [SMALL_STATE(694)] = 21674, + [SMALL_STATE(695)] = 21727, + [SMALL_STATE(696)] = 21774, + [SMALL_STATE(697)] = 21825, + [SMALL_STATE(698)] = 21876, + [SMALL_STATE(699)] = 21921, + [SMALL_STATE(700)] = 21966, + [SMALL_STATE(701)] = 22013, + [SMALL_STATE(702)] = 22058, + [SMALL_STATE(703)] = 22103, + [SMALL_STATE(704)] = 22148, + [SMALL_STATE(705)] = 22193, + [SMALL_STATE(706)] = 22244, + [SMALL_STATE(707)] = 22289, + [SMALL_STATE(708)] = 22334, + [SMALL_STATE(709)] = 22379, + [SMALL_STATE(710)] = 22425, + [SMALL_STATE(711)] = 22511, + [SMALL_STATE(712)] = 22595, + [SMALL_STATE(713)] = 22683, + [SMALL_STATE(714)] = 22763, + [SMALL_STATE(715)] = 22849, + [SMALL_STATE(716)] = 22935, + [SMALL_STATE(717)] = 23023, + [SMALL_STATE(718)] = 23107, + [SMALL_STATE(719)] = 23161, + [SMALL_STATE(720)] = 23245, + [SMALL_STATE(721)] = 23329, + [SMALL_STATE(722)] = 23417, + [SMALL_STATE(723)] = 23501, + [SMALL_STATE(724)] = 23561, + [SMALL_STATE(725)] = 23647, + [SMALL_STATE(726)] = 23723, + [SMALL_STATE(727)] = 23811, + [SMALL_STATE(728)] = 23899, + [SMALL_STATE(729)] = 23957, + [SMALL_STATE(730)] = 24041, + [SMALL_STATE(731)] = 24125, + [SMALL_STATE(732)] = 24209, + [SMALL_STATE(733)] = 24259, + [SMALL_STATE(734)] = 24343, + [SMALL_STATE(735)] = 24427, + [SMALL_STATE(736)] = 24511, + [SMALL_STATE(737)] = 24575, + [SMALL_STATE(738)] = 24629, + [SMALL_STATE(739)] = 24707, + [SMALL_STATE(740)] = 24783, + [SMALL_STATE(741)] = 24861, + [SMALL_STATE(742)] = 24921, + [SMALL_STATE(743)] = 24993, + [SMALL_STATE(744)] = 25067, + [SMALL_STATE(745)] = 25143, + [SMALL_STATE(746)] = 25201, + [SMALL_STATE(747)] = 25255, + [SMALL_STATE(748)] = 25323, + [SMALL_STATE(749)] = 25403, + [SMALL_STATE(750)] = 25487, + [SMALL_STATE(751)] = 25571, + [SMALL_STATE(752)] = 25655, + [SMALL_STATE(753)] = 25739, + [SMALL_STATE(754)] = 25823, + [SMALL_STATE(755)] = 25907, + [SMALL_STATE(756)] = 25991, + [SMALL_STATE(757)] = 26075, + [SMALL_STATE(758)] = 26163, + [SMALL_STATE(759)] = 26235, + [SMALL_STATE(760)] = 26311, + [SMALL_STATE(761)] = 26395, + [SMALL_STATE(762)] = 26469, + [SMALL_STATE(763)] = 26557, + [SMALL_STATE(764)] = 26643, + [SMALL_STATE(765)] = 26727, + [SMALL_STATE(766)] = 26813, + [SMALL_STATE(767)] = 26899, + [SMALL_STATE(768)] = 26987, + [SMALL_STATE(769)] = 27071, + [SMALL_STATE(770)] = 27155, + [SMALL_STATE(771)] = 27239, + [SMALL_STATE(772)] = 27303, + [SMALL_STATE(773)] = 27391, + [SMALL_STATE(774)] = 27459, + [SMALL_STATE(775)] = 27543, + [SMALL_STATE(776)] = 27589, + [SMALL_STATE(777)] = 27643, + [SMALL_STATE(778)] = 27727, + [SMALL_STATE(779)] = 27814, + [SMALL_STATE(780)] = 27901, + [SMALL_STATE(781)] = 27988, + [SMALL_STATE(782)] = 28075, + [SMALL_STATE(783)] = 28158, + [SMALL_STATE(784)] = 28245, + [SMALL_STATE(785)] = 28332, + [SMALL_STATE(786)] = 28419, + [SMALL_STATE(787)] = 28506, + [SMALL_STATE(788)] = 28593, + [SMALL_STATE(789)] = 28680, + [SMALL_STATE(790)] = 28767, + [SMALL_STATE(791)] = 28854, + [SMALL_STATE(792)] = 28941, + [SMALL_STATE(793)] = 29028, + [SMALL_STATE(794)] = 29115, + [SMALL_STATE(795)] = 29202, + [SMALL_STATE(796)] = 29289, + [SMALL_STATE(797)] = 29376, + [SMALL_STATE(798)] = 29463, + [SMALL_STATE(799)] = 29550, + [SMALL_STATE(800)] = 29633, + [SMALL_STATE(801)] = 29720, + [SMALL_STATE(802)] = 29807, + [SMALL_STATE(803)] = 29894, + [SMALL_STATE(804)] = 29981, + [SMALL_STATE(805)] = 30068, + [SMALL_STATE(806)] = 30155, + [SMALL_STATE(807)] = 30238, + [SMALL_STATE(808)] = 30325, + [SMALL_STATE(809)] = 30412, + [SMALL_STATE(810)] = 30499, + [SMALL_STATE(811)] = 30586, + [SMALL_STATE(812)] = 30673, + [SMALL_STATE(813)] = 30760, + [SMALL_STATE(814)] = 30847, + [SMALL_STATE(815)] = 30934, + [SMALL_STATE(816)] = 31021, + [SMALL_STATE(817)] = 31108, + [SMALL_STATE(818)] = 31195, + [SMALL_STATE(819)] = 31282, + [SMALL_STATE(820)] = 31369, + [SMALL_STATE(821)] = 31456, + [SMALL_STATE(822)] = 31543, + [SMALL_STATE(823)] = 31625, + [SMALL_STATE(824)] = 31707, + [SMALL_STATE(825)] = 31791, + [SMALL_STATE(826)] = 31863, + [SMALL_STATE(827)] = 31941, + [SMALL_STATE(828)] = 32007, + [SMALL_STATE(829)] = 32077, + [SMALL_STATE(830)] = 32155, + [SMALL_STATE(831)] = 32229, + [SMALL_STATE(832)] = 32311, + [SMALL_STATE(833)] = 32393, + [SMALL_STATE(834)] = 32475, + [SMALL_STATE(835)] = 32557, + [SMALL_STATE(836)] = 32631, + [SMALL_STATE(837)] = 32713, + [SMALL_STATE(838)] = 32795, + [SMALL_STATE(839)] = 32877, + [SMALL_STATE(840)] = 32959, + [SMALL_STATE(841)] = 33041, + [SMALL_STATE(842)] = 33093, + [SMALL_STATE(843)] = 33175, + [SMALL_STATE(844)] = 33259, + [SMALL_STATE(845)] = 33341, + [SMALL_STATE(846)] = 33417, + [SMALL_STATE(847)] = 33473, + [SMALL_STATE(848)] = 33555, + [SMALL_STATE(849)] = 33637, + [SMALL_STATE(850)] = 33689, + [SMALL_STATE(851)] = 33771, + [SMALL_STATE(852)] = 33853, + [SMALL_STATE(853)] = 33911, + [SMALL_STATE(854)] = 33973, + [SMALL_STATE(855)] = 34054, + [SMALL_STATE(856)] = 34135, + [SMALL_STATE(857)] = 34216, + [SMALL_STATE(858)] = 34297, + [SMALL_STATE(859)] = 34378, + [SMALL_STATE(860)] = 34461, + [SMALL_STATE(861)] = 34542, + [SMALL_STATE(862)] = 34623, + [SMALL_STATE(863)] = 34704, + [SMALL_STATE(864)] = 34785, + [SMALL_STATE(865)] = 34866, + [SMALL_STATE(866)] = 34947, + [SMALL_STATE(867)] = 35028, + [SMALL_STATE(868)] = 35109, + [SMALL_STATE(869)] = 35190, + [SMALL_STATE(870)] = 35271, + [SMALL_STATE(871)] = 35332, + [SMALL_STATE(872)] = 35383, + [SMALL_STATE(873)] = 35456, + [SMALL_STATE(874)] = 35531, + [SMALL_STATE(875)] = 35588, + [SMALL_STATE(876)] = 35657, + [SMALL_STATE(877)] = 35728, + [SMALL_STATE(878)] = 35801, + [SMALL_STATE(879)] = 35856, + [SMALL_STATE(880)] = 35907, + [SMALL_STATE(881)] = 35972, + [SMALL_STATE(882)] = 36049, + [SMALL_STATE(883)] = 36130, + [SMALL_STATE(884)] = 36211, + [SMALL_STATE(885)] = 36292, + [SMALL_STATE(886)] = 36373, + [SMALL_STATE(887)] = 36454, + [SMALL_STATE(888)] = 36535, + [SMALL_STATE(889)] = 36613, + [SMALL_STATE(890)] = 36691, + [SMALL_STATE(891)] = 36761, + [SMALL_STATE(892)] = 36832, + [SMALL_STATE(893)] = 36889, + [SMALL_STATE(894)] = 36946, + [SMALL_STATE(895)] = 37017, + [SMALL_STATE(896)] = 37088, + [SMALL_STATE(897)] = 37159, + [SMALL_STATE(898)] = 37224, + [SMALL_STATE(899)] = 37295, + [SMALL_STATE(900)] = 37366, + [SMALL_STATE(901)] = 37437, + [SMALL_STATE(902)] = 37508, + [SMALL_STATE(903)] = 37579, + [SMALL_STATE(904)] = 37631, + [SMALL_STATE(905)] = 37689, + [SMALL_STATE(906)] = 37747, + [SMALL_STATE(907)] = 37803, + [SMALL_STATE(908)] = 37861, + [SMALL_STATE(909)] = 37917, + [SMALL_STATE(910)] = 37973, + [SMALL_STATE(911)] = 38031, + [SMALL_STATE(912)] = 38087, + [SMALL_STATE(913)] = 38145, + [SMALL_STATE(914)] = 38201, + [SMALL_STATE(915)] = 38259, + [SMALL_STATE(916)] = 38315, + [SMALL_STATE(917)] = 38366, + [SMALL_STATE(918)] = 38419, + [SMALL_STATE(919)] = 38470, + [SMALL_STATE(920)] = 38521, + [SMALL_STATE(921)] = 38572, + [SMALL_STATE(922)] = 38623, + [SMALL_STATE(923)] = 38674, + [SMALL_STATE(924)] = 38724, + [SMALL_STATE(925)] = 38772, + [SMALL_STATE(926)] = 38822, + [SMALL_STATE(927)] = 38874, + [SMALL_STATE(928)] = 38934, + [SMALL_STATE(929)] = 38989, + [SMALL_STATE(930)] = 39044, + [SMALL_STATE(931)] = 39087, + [SMALL_STATE(932)] = 39130, + [SMALL_STATE(933)] = 39173, + [SMALL_STATE(934)] = 39218, + [SMALL_STATE(935)] = 39263, + [SMALL_STATE(936)] = 39310, + [SMALL_STATE(937)] = 39355, + [SMALL_STATE(938)] = 39400, + [SMALL_STATE(939)] = 39447, + [SMALL_STATE(940)] = 39485, + [SMALL_STATE(941)] = 39523, + [SMALL_STATE(942)] = 39563, + [SMALL_STATE(943)] = 39597, + [SMALL_STATE(944)] = 39635, + [SMALL_STATE(945)] = 39673, + [SMALL_STATE(946)] = 39711, + [SMALL_STATE(947)] = 39749, + [SMALL_STATE(948)] = 39778, + [SMALL_STATE(949)] = 39811, + [SMALL_STATE(950)] = 39840, + [SMALL_STATE(951)] = 39867, + [SMALL_STATE(952)] = 39908, + [SMALL_STATE(953)] = 39950, + [SMALL_STATE(954)] = 39976, + [SMALL_STATE(955)] = 40002, + [SMALL_STATE(956)] = 40028, + [SMALL_STATE(957)] = 40054, + [SMALL_STATE(958)] = 40080, + [SMALL_STATE(959)] = 40106, + [SMALL_STATE(960)] = 40132, + [SMALL_STATE(961)] = 40158, + [SMALL_STATE(962)] = 40184, + [SMALL_STATE(963)] = 40210, + [SMALL_STATE(964)] = 40236, + [SMALL_STATE(965)] = 40262, + [SMALL_STATE(966)] = 40302, + [SMALL_STATE(967)] = 40328, + [SMALL_STATE(968)] = 40370, + [SMALL_STATE(969)] = 40396, + [SMALL_STATE(970)] = 40422, + [SMALL_STATE(971)] = 40448, + [SMALL_STATE(972)] = 40474, + [SMALL_STATE(973)] = 40500, + [SMALL_STATE(974)] = 40526, + [SMALL_STATE(975)] = 40552, + [SMALL_STATE(976)] = 40598, + [SMALL_STATE(977)] = 40624, + [SMALL_STATE(978)] = 40650, + [SMALL_STATE(979)] = 40692, + [SMALL_STATE(980)] = 40718, + [SMALL_STATE(981)] = 40744, + [SMALL_STATE(982)] = 40770, + [SMALL_STATE(983)] = 40796, + [SMALL_STATE(984)] = 40838, + [SMALL_STATE(985)] = 40866, + [SMALL_STATE(986)] = 40910, + [SMALL_STATE(987)] = 40936, + [SMALL_STATE(988)] = 40962, + [SMALL_STATE(989)] = 40988, + [SMALL_STATE(990)] = 41014, + [SMALL_STATE(991)] = 41040, + [SMALL_STATE(992)] = 41066, + [SMALL_STATE(993)] = 41092, + [SMALL_STATE(994)] = 41118, + [SMALL_STATE(995)] = 41158, + [SMALL_STATE(996)] = 41197, + [SMALL_STATE(997)] = 41232, + [SMALL_STATE(998)] = 41267, + [SMALL_STATE(999)] = 41302, + [SMALL_STATE(1000)] = 41327, + [SMALL_STATE(1001)] = 41352, + [SMALL_STATE(1002)] = 41377, + [SMALL_STATE(1003)] = 41402, + [SMALL_STATE(1004)] = 41445, + [SMALL_STATE(1005)] = 41480, + [SMALL_STATE(1006)] = 41515, + [SMALL_STATE(1007)] = 41550, + [SMALL_STATE(1008)] = 41585, + [SMALL_STATE(1009)] = 41620, + [SMALL_STATE(1010)] = 41645, + [SMALL_STATE(1011)] = 41688, + [SMALL_STATE(1012)] = 41723, + [SMALL_STATE(1013)] = 41758, + [SMALL_STATE(1014)] = 41793, + [SMALL_STATE(1015)] = 41828, + [SMALL_STATE(1016)] = 41863, + [SMALL_STATE(1017)] = 41904, + [SMALL_STATE(1018)] = 41939, + [SMALL_STATE(1019)] = 41974, + [SMALL_STATE(1020)] = 42009, + [SMALL_STATE(1021)] = 42044, + [SMALL_STATE(1022)] = 42079, + [SMALL_STATE(1023)] = 42114, + [SMALL_STATE(1024)] = 42149, + [SMALL_STATE(1025)] = 42184, + [SMALL_STATE(1026)] = 42219, + [SMALL_STATE(1027)] = 42244, + [SMALL_STATE(1028)] = 42283, + [SMALL_STATE(1029)] = 42318, + [SMALL_STATE(1030)] = 42353, + [SMALL_STATE(1031)] = 42394, + [SMALL_STATE(1032)] = 42426, + [SMALL_STATE(1033)] = 42458, + [SMALL_STATE(1034)] = 42480, + [SMALL_STATE(1035)] = 42512, + [SMALL_STATE(1036)] = 42544, + [SMALL_STATE(1037)] = 42576, + [SMALL_STATE(1038)] = 42608, + [SMALL_STATE(1039)] = 42630, + [SMALL_STATE(1040)] = 42662, + [SMALL_STATE(1041)] = 42684, + [SMALL_STATE(1042)] = 42716, + [SMALL_STATE(1043)] = 42748, + [SMALL_STATE(1044)] = 42780, + [SMALL_STATE(1045)] = 42812, + [SMALL_STATE(1046)] = 42844, + [SMALL_STATE(1047)] = 42876, + [SMALL_STATE(1048)] = 42908, + [SMALL_STATE(1049)] = 42940, + [SMALL_STATE(1050)] = 42972, + [SMALL_STATE(1051)] = 43004, + [SMALL_STATE(1052)] = 43026, + [SMALL_STATE(1053)] = 43048, + [SMALL_STATE(1054)] = 43080, + [SMALL_STATE(1055)] = 43118, + [SMALL_STATE(1056)] = 43156, + [SMALL_STATE(1057)] = 43186, + [SMALL_STATE(1058)] = 43216, + [SMALL_STATE(1059)] = 43252, + [SMALL_STATE(1060)] = 43282, + [SMALL_STATE(1061)] = 43312, + [SMALL_STATE(1062)] = 43342, + [SMALL_STATE(1063)] = 43372, + [SMALL_STATE(1064)] = 43408, + [SMALL_STATE(1065)] = 43438, + [SMALL_STATE(1066)] = 43474, + [SMALL_STATE(1067)] = 43504, + [SMALL_STATE(1068)] = 43540, + [SMALL_STATE(1069)] = 43573, + [SMALL_STATE(1070)] = 43600, + [SMALL_STATE(1071)] = 43633, + [SMALL_STATE(1072)] = 43666, + [SMALL_STATE(1073)] = 43699, + [SMALL_STATE(1074)] = 43732, + [SMALL_STATE(1075)] = 43765, + [SMALL_STATE(1076)] = 43798, + [SMALL_STATE(1077)] = 43831, + [SMALL_STATE(1078)] = 43861, + [SMALL_STATE(1079)] = 43891, + [SMALL_STATE(1080)] = 43921, + [SMALL_STATE(1081)] = 43951, + [SMALL_STATE(1082)] = 43981, + [SMALL_STATE(1083)] = 44011, + [SMALL_STATE(1084)] = 44041, + [SMALL_STATE(1085)] = 44071, + [SMALL_STATE(1086)] = 44101, + [SMALL_STATE(1087)] = 44131, + [SMALL_STATE(1088)] = 44161, + [SMALL_STATE(1089)] = 44191, + [SMALL_STATE(1090)] = 44221, + [SMALL_STATE(1091)] = 44251, + [SMALL_STATE(1092)] = 44281, + [SMALL_STATE(1093)] = 44307, + [SMALL_STATE(1094)] = 44337, + [SMALL_STATE(1095)] = 44367, + [SMALL_STATE(1096)] = 44397, + [SMALL_STATE(1097)] = 44427, + [SMALL_STATE(1098)] = 44453, + [SMALL_STATE(1099)] = 44481, + [SMALL_STATE(1100)] = 44511, + [SMALL_STATE(1101)] = 44538, + [SMALL_STATE(1102)] = 44565, + [SMALL_STATE(1103)] = 44585, + [SMALL_STATE(1104)] = 44601, + [SMALL_STATE(1105)] = 44625, + [SMALL_STATE(1106)] = 44649, + [SMALL_STATE(1107)] = 44673, + [SMALL_STATE(1108)] = 44691, + [SMALL_STATE(1109)] = 44711, + [SMALL_STATE(1110)] = 44733, + [SMALL_STATE(1111)] = 44757, + [SMALL_STATE(1112)] = 44771, + [SMALL_STATE(1113)] = 44795, + [SMALL_STATE(1114)] = 44819, + [SMALL_STATE(1115)] = 44841, + [SMALL_STATE(1116)] = 44863, + [SMALL_STATE(1117)] = 44885, + [SMALL_STATE(1118)] = 44907, + [SMALL_STATE(1119)] = 44929, + [SMALL_STATE(1120)] = 44951, + [SMALL_STATE(1121)] = 44965, + [SMALL_STATE(1122)] = 44989, + [SMALL_STATE(1123)] = 45003, + [SMALL_STATE(1124)] = 45027, + [SMALL_STATE(1125)] = 45043, + [SMALL_STATE(1126)] = 45057, + [SMALL_STATE(1127)] = 45081, + [SMALL_STATE(1128)] = 45099, + [SMALL_STATE(1129)] = 45123, + [SMALL_STATE(1130)] = 45145, + [SMALL_STATE(1131)] = 45159, + [SMALL_STATE(1132)] = 45178, + [SMALL_STATE(1133)] = 45191, + [SMALL_STATE(1134)] = 45210, + [SMALL_STATE(1135)] = 45229, + [SMALL_STATE(1136)] = 45248, + [SMALL_STATE(1137)] = 45269, + [SMALL_STATE(1138)] = 45290, + [SMALL_STATE(1139)] = 45309, + [SMALL_STATE(1140)] = 45328, + [SMALL_STATE(1141)] = 45345, + [SMALL_STATE(1142)] = 45366, + [SMALL_STATE(1143)] = 45387, + [SMALL_STATE(1144)] = 45400, + [SMALL_STATE(1145)] = 45413, + [SMALL_STATE(1146)] = 45426, + [SMALL_STATE(1147)] = 45447, + [SMALL_STATE(1148)] = 45466, + [SMALL_STATE(1149)] = 45487, + [SMALL_STATE(1150)] = 45506, + [SMALL_STATE(1151)] = 45525, + [SMALL_STATE(1152)] = 45538, + [SMALL_STATE(1153)] = 45551, + [SMALL_STATE(1154)] = 45566, + [SMALL_STATE(1155)] = 45579, + [SMALL_STATE(1156)] = 45594, + [SMALL_STATE(1157)] = 45613, + [SMALL_STATE(1158)] = 45632, + [SMALL_STATE(1159)] = 45653, + [SMALL_STATE(1160)] = 45674, + [SMALL_STATE(1161)] = 45695, + [SMALL_STATE(1162)] = 45714, + [SMALL_STATE(1163)] = 45727, + [SMALL_STATE(1164)] = 45746, + [SMALL_STATE(1165)] = 45765, + [SMALL_STATE(1166)] = 45778, + [SMALL_STATE(1167)] = 45791, + [SMALL_STATE(1168)] = 45810, + [SMALL_STATE(1169)] = 45824, + [SMALL_STATE(1170)] = 45838, + [SMALL_STATE(1171)] = 45852, + [SMALL_STATE(1172)] = 45872, + [SMALL_STATE(1173)] = 45892, + [SMALL_STATE(1174)] = 45912, + [SMALL_STATE(1175)] = 45932, + [SMALL_STATE(1176)] = 45952, + [SMALL_STATE(1177)] = 45966, + [SMALL_STATE(1178)] = 45980, + [SMALL_STATE(1179)] = 45998, + [SMALL_STATE(1180)] = 46010, + [SMALL_STATE(1181)] = 46024, + [SMALL_STATE(1182)] = 46044, + [SMALL_STATE(1183)] = 46058, + [SMALL_STATE(1184)] = 46078, + [SMALL_STATE(1185)] = 46092, + [SMALL_STATE(1186)] = 46106, + [SMALL_STATE(1187)] = 46120, + [SMALL_STATE(1188)] = 46134, + [SMALL_STATE(1189)] = 46148, + [SMALL_STATE(1190)] = 46160, + [SMALL_STATE(1191)] = 46172, + [SMALL_STATE(1192)] = 46186, + [SMALL_STATE(1193)] = 46206, + [SMALL_STATE(1194)] = 46224, + [SMALL_STATE(1195)] = 46244, + [SMALL_STATE(1196)] = 46258, + [SMALL_STATE(1197)] = 46272, + [SMALL_STATE(1198)] = 46292, + [SMALL_STATE(1199)] = 46312, + [SMALL_STATE(1200)] = 46326, + [SMALL_STATE(1201)] = 46346, + [SMALL_STATE(1202)] = 46360, + [SMALL_STATE(1203)] = 46380, + [SMALL_STATE(1204)] = 46398, + [SMALL_STATE(1205)] = 46412, + [SMALL_STATE(1206)] = 46426, + [SMALL_STATE(1207)] = 46438, + [SMALL_STATE(1208)] = 46456, + [SMALL_STATE(1209)] = 46470, + [SMALL_STATE(1210)] = 46490, + [SMALL_STATE(1211)] = 46506, + [SMALL_STATE(1212)] = 46520, + [SMALL_STATE(1213)] = 46534, + [SMALL_STATE(1214)] = 46548, + [SMALL_STATE(1215)] = 46562, + [SMALL_STATE(1216)] = 46578, + [SMALL_STATE(1217)] = 46598, + [SMALL_STATE(1218)] = 46618, + [SMALL_STATE(1219)] = 46638, + [SMALL_STATE(1220)] = 46652, + [SMALL_STATE(1221)] = 46672, + [SMALL_STATE(1222)] = 46686, + [SMALL_STATE(1223)] = 46700, + [SMALL_STATE(1224)] = 46714, + [SMALL_STATE(1225)] = 46730, + [SMALL_STATE(1226)] = 46750, + [SMALL_STATE(1227)] = 46764, + [SMALL_STATE(1228)] = 46778, + [SMALL_STATE(1229)] = 46792, + [SMALL_STATE(1230)] = 46806, + [SMALL_STATE(1231)] = 46820, + [SMALL_STATE(1232)] = 46840, + [SMALL_STATE(1233)] = 46854, + [SMALL_STATE(1234)] = 46874, + [SMALL_STATE(1235)] = 46894, + [SMALL_STATE(1236)] = 46908, + [SMALL_STATE(1237)] = 46922, + [SMALL_STATE(1238)] = 46939, + [SMALL_STATE(1239)] = 46954, + [SMALL_STATE(1240)] = 46971, + [SMALL_STATE(1241)] = 46988, + [SMALL_STATE(1242)] = 47005, + [SMALL_STATE(1243)] = 47024, + [SMALL_STATE(1244)] = 47043, + [SMALL_STATE(1245)] = 47060, + [SMALL_STATE(1246)] = 47077, + [SMALL_STATE(1247)] = 47092, + [SMALL_STATE(1248)] = 47109, + [SMALL_STATE(1249)] = 47126, + [SMALL_STATE(1250)] = 47143, + [SMALL_STATE(1251)] = 47160, + [SMALL_STATE(1252)] = 47177, + [SMALL_STATE(1253)] = 47194, + [SMALL_STATE(1254)] = 47205, + [SMALL_STATE(1255)] = 47222, + [SMALL_STATE(1256)] = 47237, + [SMALL_STATE(1257)] = 47252, + [SMALL_STATE(1258)] = 47269, + [SMALL_STATE(1259)] = 47286, + [SMALL_STATE(1260)] = 47301, + [SMALL_STATE(1261)] = 47316, + [SMALL_STATE(1262)] = 47333, + [SMALL_STATE(1263)] = 47350, + [SMALL_STATE(1264)] = 47367, + [SMALL_STATE(1265)] = 47378, + [SMALL_STATE(1266)] = 47391, + [SMALL_STATE(1267)] = 47406, + [SMALL_STATE(1268)] = 47423, + [SMALL_STATE(1269)] = 47440, + [SMALL_STATE(1270)] = 47457, + [SMALL_STATE(1271)] = 47468, + [SMALL_STATE(1272)] = 47485, + [SMALL_STATE(1273)] = 47502, + [SMALL_STATE(1274)] = 47519, + [SMALL_STATE(1275)] = 47536, + [SMALL_STATE(1276)] = 47553, + [SMALL_STATE(1277)] = 47564, + [SMALL_STATE(1278)] = 47581, + [SMALL_STATE(1279)] = 47598, + [SMALL_STATE(1280)] = 47611, + [SMALL_STATE(1281)] = 47622, + [SMALL_STATE(1282)] = 47633, + [SMALL_STATE(1283)] = 47648, + [SMALL_STATE(1284)] = 47665, + [SMALL_STATE(1285)] = 47682, + [SMALL_STATE(1286)] = 47699, + [SMALL_STATE(1287)] = 47710, + [SMALL_STATE(1288)] = 47725, + [SMALL_STATE(1289)] = 47740, + [SMALL_STATE(1290)] = 47757, + [SMALL_STATE(1291)] = 47772, + [SMALL_STATE(1292)] = 47789, + [SMALL_STATE(1293)] = 47806, + [SMALL_STATE(1294)] = 47823, + [SMALL_STATE(1295)] = 47838, + [SMALL_STATE(1296)] = 47853, + [SMALL_STATE(1297)] = 47868, + [SMALL_STATE(1298)] = 47885, + [SMALL_STATE(1299)] = 47900, + [SMALL_STATE(1300)] = 47917, + [SMALL_STATE(1301)] = 47928, + [SMALL_STATE(1302)] = 47945, + [SMALL_STATE(1303)] = 47964, + [SMALL_STATE(1304)] = 47983, + [SMALL_STATE(1305)] = 47996, + [SMALL_STATE(1306)] = 48013, + [SMALL_STATE(1307)] = 48032, + [SMALL_STATE(1308)] = 48049, + [SMALL_STATE(1309)] = 48066, + [SMALL_STATE(1310)] = 48079, + [SMALL_STATE(1311)] = 48096, + [SMALL_STATE(1312)] = 48113, + [SMALL_STATE(1313)] = 48130, + [SMALL_STATE(1314)] = 48147, + [SMALL_STATE(1315)] = 48162, + [SMALL_STATE(1316)] = 48179, + [SMALL_STATE(1317)] = 48192, + [SMALL_STATE(1318)] = 48209, + [SMALL_STATE(1319)] = 48224, + [SMALL_STATE(1320)] = 48241, + [SMALL_STATE(1321)] = 48258, + [SMALL_STATE(1322)] = 48275, + [SMALL_STATE(1323)] = 48292, + [SMALL_STATE(1324)] = 48309, + [SMALL_STATE(1325)] = 48326, + [SMALL_STATE(1326)] = 48343, + [SMALL_STATE(1327)] = 48354, + [SMALL_STATE(1328)] = 48371, + [SMALL_STATE(1329)] = 48388, + [SMALL_STATE(1330)] = 48403, + [SMALL_STATE(1331)] = 48420, + [SMALL_STATE(1332)] = 48435, + [SMALL_STATE(1333)] = 48452, + [SMALL_STATE(1334)] = 48467, + [SMALL_STATE(1335)] = 48486, + [SMALL_STATE(1336)] = 48496, + [SMALL_STATE(1337)] = 48510, + [SMALL_STATE(1338)] = 48524, + [SMALL_STATE(1339)] = 48538, + [SMALL_STATE(1340)] = 48552, + [SMALL_STATE(1341)] = 48566, + [SMALL_STATE(1342)] = 48580, + [SMALL_STATE(1343)] = 48590, + [SMALL_STATE(1344)] = 48602, + [SMALL_STATE(1345)] = 48616, + [SMALL_STATE(1346)] = 48630, + [SMALL_STATE(1347)] = 48644, + [SMALL_STATE(1348)] = 48658, + [SMALL_STATE(1349)] = 48672, + [SMALL_STATE(1350)] = 48686, + [SMALL_STATE(1351)] = 48700, + [SMALL_STATE(1352)] = 48714, + [SMALL_STATE(1353)] = 48728, + [SMALL_STATE(1354)] = 48742, + [SMALL_STATE(1355)] = 48756, + [SMALL_STATE(1356)] = 48770, + [SMALL_STATE(1357)] = 48784, + [SMALL_STATE(1358)] = 48796, + [SMALL_STATE(1359)] = 48808, + [SMALL_STATE(1360)] = 48820, + [SMALL_STATE(1361)] = 48834, + [SMALL_STATE(1362)] = 48848, + [SMALL_STATE(1363)] = 48862, + [SMALL_STATE(1364)] = 48876, + [SMALL_STATE(1365)] = 48886, + [SMALL_STATE(1366)] = 48900, + [SMALL_STATE(1367)] = 48914, + [SMALL_STATE(1368)] = 48928, + [SMALL_STATE(1369)] = 48942, + [SMALL_STATE(1370)] = 48956, + [SMALL_STATE(1371)] = 48970, + [SMALL_STATE(1372)] = 48984, + [SMALL_STATE(1373)] = 48996, + [SMALL_STATE(1374)] = 49010, + [SMALL_STATE(1375)] = 49022, + [SMALL_STATE(1376)] = 49034, + [SMALL_STATE(1377)] = 49048, + [SMALL_STATE(1378)] = 49060, + [SMALL_STATE(1379)] = 49074, + [SMALL_STATE(1380)] = 49086, + [SMALL_STATE(1381)] = 49100, + [SMALL_STATE(1382)] = 49114, + [SMALL_STATE(1383)] = 49124, + [SMALL_STATE(1384)] = 49138, + [SMALL_STATE(1385)] = 49152, + [SMALL_STATE(1386)] = 49164, + [SMALL_STATE(1387)] = 49178, + [SMALL_STATE(1388)] = 49192, + [SMALL_STATE(1389)] = 49206, + [SMALL_STATE(1390)] = 49220, + [SMALL_STATE(1391)] = 49234, + [SMALL_STATE(1392)] = 49248, + [SMALL_STATE(1393)] = 49262, + [SMALL_STATE(1394)] = 49276, + [SMALL_STATE(1395)] = 49290, + [SMALL_STATE(1396)] = 49300, + [SMALL_STATE(1397)] = 49312, + [SMALL_STATE(1398)] = 49326, + [SMALL_STATE(1399)] = 49340, + [SMALL_STATE(1400)] = 49354, + [SMALL_STATE(1401)] = 49368, + [SMALL_STATE(1402)] = 49382, + [SMALL_STATE(1403)] = 49396, + [SMALL_STATE(1404)] = 49410, + [SMALL_STATE(1405)] = 49420, + [SMALL_STATE(1406)] = 49434, + [SMALL_STATE(1407)] = 49448, + [SMALL_STATE(1408)] = 49462, + [SMALL_STATE(1409)] = 49472, + [SMALL_STATE(1410)] = 49486, + [SMALL_STATE(1411)] = 49496, + [SMALL_STATE(1412)] = 49508, + [SMALL_STATE(1413)] = 49520, + [SMALL_STATE(1414)] = 49534, + [SMALL_STATE(1415)] = 49548, + [SMALL_STATE(1416)] = 49558, + [SMALL_STATE(1417)] = 49570, + [SMALL_STATE(1418)] = 49584, + [SMALL_STATE(1419)] = 49598, + [SMALL_STATE(1420)] = 49608, + [SMALL_STATE(1421)] = 49618, + [SMALL_STATE(1422)] = 49628, + [SMALL_STATE(1423)] = 49642, + [SMALL_STATE(1424)] = 49652, + [SMALL_STATE(1425)] = 49662, + [SMALL_STATE(1426)] = 49676, + [SMALL_STATE(1427)] = 49686, + [SMALL_STATE(1428)] = 49696, + [SMALL_STATE(1429)] = 49708, + [SMALL_STATE(1430)] = 49718, + [SMALL_STATE(1431)] = 49732, + [SMALL_STATE(1432)] = 49744, + [SMALL_STATE(1433)] = 49754, + [SMALL_STATE(1434)] = 49768, + [SMALL_STATE(1435)] = 49782, + [SMALL_STATE(1436)] = 49794, + [SMALL_STATE(1437)] = 49808, + [SMALL_STATE(1438)] = 49820, + [SMALL_STATE(1439)] = 49834, + [SMALL_STATE(1440)] = 49848, + [SMALL_STATE(1441)] = 49862, + [SMALL_STATE(1442)] = 49872, + [SMALL_STATE(1443)] = 49886, + [SMALL_STATE(1444)] = 49900, + [SMALL_STATE(1445)] = 49910, + [SMALL_STATE(1446)] = 49924, + [SMALL_STATE(1447)] = 49938, + [SMALL_STATE(1448)] = 49950, + [SMALL_STATE(1449)] = 49960, + [SMALL_STATE(1450)] = 49970, + [SMALL_STATE(1451)] = 49984, + [SMALL_STATE(1452)] = 49998, + [SMALL_STATE(1453)] = 50012, + [SMALL_STATE(1454)] = 50024, + [SMALL_STATE(1455)] = 50038, + [SMALL_STATE(1456)] = 50050, + [SMALL_STATE(1457)] = 50062, + [SMALL_STATE(1458)] = 50074, + [SMALL_STATE(1459)] = 50088, + [SMALL_STATE(1460)] = 50102, + [SMALL_STATE(1461)] = 50116, + [SMALL_STATE(1462)] = 50130, + [SMALL_STATE(1463)] = 50144, + [SMALL_STATE(1464)] = 50158, + [SMALL_STATE(1465)] = 50172, + [SMALL_STATE(1466)] = 50186, + [SMALL_STATE(1467)] = 50195, + [SMALL_STATE(1468)] = 50206, + [SMALL_STATE(1469)] = 50217, + [SMALL_STATE(1470)] = 50228, + [SMALL_STATE(1471)] = 50239, + [SMALL_STATE(1472)] = 50250, + [SMALL_STATE(1473)] = 50259, + [SMALL_STATE(1474)] = 50270, + [SMALL_STATE(1475)] = 50281, + [SMALL_STATE(1476)] = 50292, + [SMALL_STATE(1477)] = 50303, + [SMALL_STATE(1478)] = 50314, + [SMALL_STATE(1479)] = 50325, + [SMALL_STATE(1480)] = 50336, + [SMALL_STATE(1481)] = 50347, + [SMALL_STATE(1482)] = 50358, + [SMALL_STATE(1483)] = 50369, + [SMALL_STATE(1484)] = 50380, + [SMALL_STATE(1485)] = 50389, + [SMALL_STATE(1486)] = 50398, + [SMALL_STATE(1487)] = 50409, + [SMALL_STATE(1488)] = 50420, + [SMALL_STATE(1489)] = 50431, + [SMALL_STATE(1490)] = 50442, + [SMALL_STATE(1491)] = 50453, + [SMALL_STATE(1492)] = 50464, + [SMALL_STATE(1493)] = 50475, + [SMALL_STATE(1494)] = 50486, + [SMALL_STATE(1495)] = 50497, + [SMALL_STATE(1496)] = 50508, + [SMALL_STATE(1497)] = 50519, + [SMALL_STATE(1498)] = 50530, + [SMALL_STATE(1499)] = 50541, + [SMALL_STATE(1500)] = 50552, + [SMALL_STATE(1501)] = 50563, + [SMALL_STATE(1502)] = 50574, + [SMALL_STATE(1503)] = 50585, + [SMALL_STATE(1504)] = 50596, + [SMALL_STATE(1505)] = 50607, + [SMALL_STATE(1506)] = 50618, + [SMALL_STATE(1507)] = 50629, + [SMALL_STATE(1508)] = 50640, + [SMALL_STATE(1509)] = 50651, + [SMALL_STATE(1510)] = 50662, + [SMALL_STATE(1511)] = 50673, + [SMALL_STATE(1512)] = 50684, + [SMALL_STATE(1513)] = 50695, + [SMALL_STATE(1514)] = 50706, + [SMALL_STATE(1515)] = 50715, + [SMALL_STATE(1516)] = 50726, + [SMALL_STATE(1517)] = 50737, + [SMALL_STATE(1518)] = 50746, + [SMALL_STATE(1519)] = 50755, + [SMALL_STATE(1520)] = 50766, + [SMALL_STATE(1521)] = 50775, + [SMALL_STATE(1522)] = 50784, + [SMALL_STATE(1523)] = 50793, + [SMALL_STATE(1524)] = 50804, + [SMALL_STATE(1525)] = 50813, + [SMALL_STATE(1526)] = 50824, + [SMALL_STATE(1527)] = 50835, + [SMALL_STATE(1528)] = 50846, + [SMALL_STATE(1529)] = 50857, + [SMALL_STATE(1530)] = 50868, + [SMALL_STATE(1531)] = 50879, + [SMALL_STATE(1532)] = 50890, + [SMALL_STATE(1533)] = 50901, + [SMALL_STATE(1534)] = 50910, + [SMALL_STATE(1535)] = 50919, + [SMALL_STATE(1536)] = 50928, + [SMALL_STATE(1537)] = 50939, + [SMALL_STATE(1538)] = 50950, + [SMALL_STATE(1539)] = 50961, + [SMALL_STATE(1540)] = 50972, + [SMALL_STATE(1541)] = 50983, + [SMALL_STATE(1542)] = 50992, + [SMALL_STATE(1543)] = 51001, + [SMALL_STATE(1544)] = 51010, + [SMALL_STATE(1545)] = 51021, + [SMALL_STATE(1546)] = 51032, + [SMALL_STATE(1547)] = 51043, + [SMALL_STATE(1548)] = 51052, + [SMALL_STATE(1549)] = 51063, + [SMALL_STATE(1550)] = 51074, + [SMALL_STATE(1551)] = 51085, + [SMALL_STATE(1552)] = 51096, + [SMALL_STATE(1553)] = 51107, + [SMALL_STATE(1554)] = 51118, + [SMALL_STATE(1555)] = 51127, + [SMALL_STATE(1556)] = 51136, + [SMALL_STATE(1557)] = 51147, + [SMALL_STATE(1558)] = 51158, + [SMALL_STATE(1559)] = 51169, + [SMALL_STATE(1560)] = 51180, + [SMALL_STATE(1561)] = 51191, + [SMALL_STATE(1562)] = 51202, + [SMALL_STATE(1563)] = 51211, + [SMALL_STATE(1564)] = 51222, + [SMALL_STATE(1565)] = 51231, + [SMALL_STATE(1566)] = 51242, + [SMALL_STATE(1567)] = 51253, + [SMALL_STATE(1568)] = 51262, + [SMALL_STATE(1569)] = 51271, + [SMALL_STATE(1570)] = 51282, + [SMALL_STATE(1571)] = 51293, + [SMALL_STATE(1572)] = 51304, + [SMALL_STATE(1573)] = 51315, + [SMALL_STATE(1574)] = 51326, + [SMALL_STATE(1575)] = 51337, + [SMALL_STATE(1576)] = 51346, + [SMALL_STATE(1577)] = 51355, + [SMALL_STATE(1578)] = 51366, + [SMALL_STATE(1579)] = 51375, + [SMALL_STATE(1580)] = 51384, + [SMALL_STATE(1581)] = 51393, + [SMALL_STATE(1582)] = 51402, + [SMALL_STATE(1583)] = 51413, + [SMALL_STATE(1584)] = 51424, + [SMALL_STATE(1585)] = 51433, + [SMALL_STATE(1586)] = 51442, + [SMALL_STATE(1587)] = 51453, + [SMALL_STATE(1588)] = 51464, + [SMALL_STATE(1589)] = 51475, + [SMALL_STATE(1590)] = 51486, + [SMALL_STATE(1591)] = 51495, + [SMALL_STATE(1592)] = 51504, + [SMALL_STATE(1593)] = 51515, + [SMALL_STATE(1594)] = 51526, + [SMALL_STATE(1595)] = 51535, + [SMALL_STATE(1596)] = 51544, + [SMALL_STATE(1597)] = 51555, + [SMALL_STATE(1598)] = 51566, + [SMALL_STATE(1599)] = 51575, + [SMALL_STATE(1600)] = 51584, + [SMALL_STATE(1601)] = 51593, + [SMALL_STATE(1602)] = 51604, + [SMALL_STATE(1603)] = 51613, + [SMALL_STATE(1604)] = 51624, + [SMALL_STATE(1605)] = 51635, + [SMALL_STATE(1606)] = 51646, + [SMALL_STATE(1607)] = 51657, + [SMALL_STATE(1608)] = 51668, + [SMALL_STATE(1609)] = 51679, + [SMALL_STATE(1610)] = 51690, + [SMALL_STATE(1611)] = 51699, + [SMALL_STATE(1612)] = 51708, + [SMALL_STATE(1613)] = 51717, + [SMALL_STATE(1614)] = 51728, + [SMALL_STATE(1615)] = 51737, + [SMALL_STATE(1616)] = 51746, + [SMALL_STATE(1617)] = 51755, + [SMALL_STATE(1618)] = 51764, + [SMALL_STATE(1619)] = 51773, + [SMALL_STATE(1620)] = 51782, + [SMALL_STATE(1621)] = 51791, + [SMALL_STATE(1622)] = 51800, + [SMALL_STATE(1623)] = 51809, + [SMALL_STATE(1624)] = 51818, + [SMALL_STATE(1625)] = 51827, + [SMALL_STATE(1626)] = 51838, + [SMALL_STATE(1627)] = 51849, + [SMALL_STATE(1628)] = 51860, + [SMALL_STATE(1629)] = 51871, + [SMALL_STATE(1630)] = 51882, + [SMALL_STATE(1631)] = 51893, + [SMALL_STATE(1632)] = 51902, + [SMALL_STATE(1633)] = 51911, + [SMALL_STATE(1634)] = 51920, + [SMALL_STATE(1635)] = 51931, + [SMALL_STATE(1636)] = 51942, + [SMALL_STATE(1637)] = 51953, + [SMALL_STATE(1638)] = 51964, + [SMALL_STATE(1639)] = 51975, + [SMALL_STATE(1640)] = 51986, + [SMALL_STATE(1641)] = 51997, + [SMALL_STATE(1642)] = 52006, + [SMALL_STATE(1643)] = 52017, + [SMALL_STATE(1644)] = 52028, + [SMALL_STATE(1645)] = 52037, + [SMALL_STATE(1646)] = 52048, + [SMALL_STATE(1647)] = 52059, + [SMALL_STATE(1648)] = 52068, + [SMALL_STATE(1649)] = 52077, + [SMALL_STATE(1650)] = 52086, + [SMALL_STATE(1651)] = 52095, + [SMALL_STATE(1652)] = 52104, + [SMALL_STATE(1653)] = 52115, + [SMALL_STATE(1654)] = 52124, + [SMALL_STATE(1655)] = 52135, + [SMALL_STATE(1656)] = 52146, + [SMALL_STATE(1657)] = 52157, + [SMALL_STATE(1658)] = 52168, + [SMALL_STATE(1659)] = 52177, + [SMALL_STATE(1660)] = 52186, + [SMALL_STATE(1661)] = 52195, + [SMALL_STATE(1662)] = 52206, + [SMALL_STATE(1663)] = 52217, + [SMALL_STATE(1664)] = 52228, + [SMALL_STATE(1665)] = 52239, + [SMALL_STATE(1666)] = 52250, + [SMALL_STATE(1667)] = 52259, + [SMALL_STATE(1668)] = 52270, + [SMALL_STATE(1669)] = 52281, + [SMALL_STATE(1670)] = 52290, + [SMALL_STATE(1671)] = 52299, + [SMALL_STATE(1672)] = 52310, + [SMALL_STATE(1673)] = 52319, + [SMALL_STATE(1674)] = 52330, + [SMALL_STATE(1675)] = 52341, + [SMALL_STATE(1676)] = 52352, + [SMALL_STATE(1677)] = 52361, + [SMALL_STATE(1678)] = 52370, + [SMALL_STATE(1679)] = 52379, + [SMALL_STATE(1680)] = 52388, + [SMALL_STATE(1681)] = 52399, + [SMALL_STATE(1682)] = 52410, + [SMALL_STATE(1683)] = 52419, + [SMALL_STATE(1684)] = 52428, + [SMALL_STATE(1685)] = 52437, + [SMALL_STATE(1686)] = 52448, + [SMALL_STATE(1687)] = 52457, + [SMALL_STATE(1688)] = 52466, + [SMALL_STATE(1689)] = 52477, + [SMALL_STATE(1690)] = 52488, + [SMALL_STATE(1691)] = 52499, + [SMALL_STATE(1692)] = 52510, + [SMALL_STATE(1693)] = 52519, + [SMALL_STATE(1694)] = 52530, + [SMALL_STATE(1695)] = 52539, + [SMALL_STATE(1696)] = 52548, + [SMALL_STATE(1697)] = 52559, + [SMALL_STATE(1698)] = 52570, + [SMALL_STATE(1699)] = 52579, + [SMALL_STATE(1700)] = 52588, + [SMALL_STATE(1701)] = 52599, + [SMALL_STATE(1702)] = 52610, + [SMALL_STATE(1703)] = 52621, + [SMALL_STATE(1704)] = 52632, + [SMALL_STATE(1705)] = 52643, + [SMALL_STATE(1706)] = 52654, + [SMALL_STATE(1707)] = 52665, + [SMALL_STATE(1708)] = 52674, + [SMALL_STATE(1709)] = 52685, + [SMALL_STATE(1710)] = 52694, + [SMALL_STATE(1711)] = 52705, + [SMALL_STATE(1712)] = 52716, + [SMALL_STATE(1713)] = 52727, + [SMALL_STATE(1714)] = 52736, + [SMALL_STATE(1715)] = 52747, + [SMALL_STATE(1716)] = 52758, + [SMALL_STATE(1717)] = 52769, + [SMALL_STATE(1718)] = 52780, + [SMALL_STATE(1719)] = 52791, + [SMALL_STATE(1720)] = 52802, + [SMALL_STATE(1721)] = 52813, + [SMALL_STATE(1722)] = 52822, + [SMALL_STATE(1723)] = 52833, + [SMALL_STATE(1724)] = 52844, + [SMALL_STATE(1725)] = 52855, + [SMALL_STATE(1726)] = 52866, + [SMALL_STATE(1727)] = 52877, + [SMALL_STATE(1728)] = 52888, + [SMALL_STATE(1729)] = 52899, + [SMALL_STATE(1730)] = 52910, + [SMALL_STATE(1731)] = 52921, + [SMALL_STATE(1732)] = 52932, + [SMALL_STATE(1733)] = 52943, + [SMALL_STATE(1734)] = 52954, + [SMALL_STATE(1735)] = 52965, + [SMALL_STATE(1736)] = 52976, + [SMALL_STATE(1737)] = 52987, + [SMALL_STATE(1738)] = 52998, + [SMALL_STATE(1739)] = 53009, + [SMALL_STATE(1740)] = 53020, + [SMALL_STATE(1741)] = 53031, + [SMALL_STATE(1742)] = 53040, + [SMALL_STATE(1743)] = 53051, + [SMALL_STATE(1744)] = 53062, + [SMALL_STATE(1745)] = 53073, + [SMALL_STATE(1746)] = 53084, + [SMALL_STATE(1747)] = 53095, + [SMALL_STATE(1748)] = 53106, + [SMALL_STATE(1749)] = 53117, + [SMALL_STATE(1750)] = 53128, + [SMALL_STATE(1751)] = 53139, + [SMALL_STATE(1752)] = 53150, + [SMALL_STATE(1753)] = 53161, + [SMALL_STATE(1754)] = 53172, + [SMALL_STATE(1755)] = 53183, + [SMALL_STATE(1756)] = 53192, + [SMALL_STATE(1757)] = 53203, + [SMALL_STATE(1758)] = 53212, + [SMALL_STATE(1759)] = 53223, + [SMALL_STATE(1760)] = 53234, + [SMALL_STATE(1761)] = 53245, + [SMALL_STATE(1762)] = 53256, + [SMALL_STATE(1763)] = 53267, + [SMALL_STATE(1764)] = 53278, + [SMALL_STATE(1765)] = 53289, + [SMALL_STATE(1766)] = 53298, + [SMALL_STATE(1767)] = 53307, + [SMALL_STATE(1768)] = 53316, + [SMALL_STATE(1769)] = 53327, + [SMALL_STATE(1770)] = 53338, + [SMALL_STATE(1771)] = 53347, + [SMALL_STATE(1772)] = 53356, + [SMALL_STATE(1773)] = 53367, + [SMALL_STATE(1774)] = 53378, + [SMALL_STATE(1775)] = 53389, + [SMALL_STATE(1776)] = 53400, + [SMALL_STATE(1777)] = 53411, + [SMALL_STATE(1778)] = 53422, + [SMALL_STATE(1779)] = 53433, + [SMALL_STATE(1780)] = 53444, + [SMALL_STATE(1781)] = 53455, + [SMALL_STATE(1782)] = 53466, + [SMALL_STATE(1783)] = 53475, + [SMALL_STATE(1784)] = 53486, + [SMALL_STATE(1785)] = 53497, + [SMALL_STATE(1786)] = 53508, + [SMALL_STATE(1787)] = 53519, + [SMALL_STATE(1788)] = 53530, + [SMALL_STATE(1789)] = 53541, + [SMALL_STATE(1790)] = 53550, + [SMALL_STATE(1791)] = 53561, + [SMALL_STATE(1792)] = 53572, + [SMALL_STATE(1793)] = 53581, + [SMALL_STATE(1794)] = 53590, + [SMALL_STATE(1795)] = 53601, + [SMALL_STATE(1796)] = 53610, + [SMALL_STATE(1797)] = 53619, + [SMALL_STATE(1798)] = 53630, + [SMALL_STATE(1799)] = 53639, + [SMALL_STATE(1800)] = 53650, + [SMALL_STATE(1801)] = 53661, + [SMALL_STATE(1802)] = 53670, + [SMALL_STATE(1803)] = 53681, + [SMALL_STATE(1804)] = 53690, + [SMALL_STATE(1805)] = 53701, + [SMALL_STATE(1806)] = 53710, + [SMALL_STATE(1807)] = 53721, + [SMALL_STATE(1808)] = 53732, + [SMALL_STATE(1809)] = 53743, + [SMALL_STATE(1810)] = 53754, + [SMALL_STATE(1811)] = 53765, + [SMALL_STATE(1812)] = 53776, + [SMALL_STATE(1813)] = 53787, + [SMALL_STATE(1814)] = 53798, + [SMALL_STATE(1815)] = 53809, + [SMALL_STATE(1816)] = 53818, + [SMALL_STATE(1817)] = 53827, + [SMALL_STATE(1818)] = 53838, + [SMALL_STATE(1819)] = 53847, + [SMALL_STATE(1820)] = 53858, + [SMALL_STATE(1821)] = 53867, + [SMALL_STATE(1822)] = 53876, + [SMALL_STATE(1823)] = 53885, + [SMALL_STATE(1824)] = 53894, + [SMALL_STATE(1825)] = 53903, + [SMALL_STATE(1826)] = 53912, + [SMALL_STATE(1827)] = 53921, + [SMALL_STATE(1828)] = 53930, + [SMALL_STATE(1829)] = 53939, + [SMALL_STATE(1830)] = 53950, + [SMALL_STATE(1831)] = 53961, + [SMALL_STATE(1832)] = 53972, + [SMALL_STATE(1833)] = 53983, + [SMALL_STATE(1834)] = 53994, + [SMALL_STATE(1835)] = 54005, + [SMALL_STATE(1836)] = 54016, + [SMALL_STATE(1837)] = 54025, + [SMALL_STATE(1838)] = 54034, + [SMALL_STATE(1839)] = 54043, + [SMALL_STATE(1840)] = 54052, + [SMALL_STATE(1841)] = 54061, + [SMALL_STATE(1842)] = 54070, + [SMALL_STATE(1843)] = 54081, + [SMALL_STATE(1844)] = 54092, + [SMALL_STATE(1845)] = 54103, + [SMALL_STATE(1846)] = 54114, + [SMALL_STATE(1847)] = 54123, + [SMALL_STATE(1848)] = 54132, + [SMALL_STATE(1849)] = 54143, + [SMALL_STATE(1850)] = 54154, + [SMALL_STATE(1851)] = 54163, + [SMALL_STATE(1852)] = 54172, + [SMALL_STATE(1853)] = 54181, + [SMALL_STATE(1854)] = 54190, + [SMALL_STATE(1855)] = 54201, + [SMALL_STATE(1856)] = 54212, + [SMALL_STATE(1857)] = 54223, + [SMALL_STATE(1858)] = 54234, + [SMALL_STATE(1859)] = 54245, + [SMALL_STATE(1860)] = 54256, + [SMALL_STATE(1861)] = 54267, + [SMALL_STATE(1862)] = 54278, + [SMALL_STATE(1863)] = 54287, + [SMALL_STATE(1864)] = 54296, + [SMALL_STATE(1865)] = 54307, + [SMALL_STATE(1866)] = 54316, + [SMALL_STATE(1867)] = 54325, + [SMALL_STATE(1868)] = 54335, + [SMALL_STATE(1869)] = 54343, + [SMALL_STATE(1870)] = 54351, + [SMALL_STATE(1871)] = 54359, + [SMALL_STATE(1872)] = 54367, + [SMALL_STATE(1873)] = 54375, + [SMALL_STATE(1874)] = 54383, + [SMALL_STATE(1875)] = 54391, + [SMALL_STATE(1876)] = 54399, + [SMALL_STATE(1877)] = 54407, + [SMALL_STATE(1878)] = 54415, + [SMALL_STATE(1879)] = 54423, + [SMALL_STATE(1880)] = 54431, + [SMALL_STATE(1881)] = 54439, + [SMALL_STATE(1882)] = 54447, + [SMALL_STATE(1883)] = 54455, + [SMALL_STATE(1884)] = 54463, + [SMALL_STATE(1885)] = 54471, + [SMALL_STATE(1886)] = 54479, + [SMALL_STATE(1887)] = 54487, + [SMALL_STATE(1888)] = 54495, + [SMALL_STATE(1889)] = 54503, + [SMALL_STATE(1890)] = 54511, + [SMALL_STATE(1891)] = 54519, + [SMALL_STATE(1892)] = 54527, + [SMALL_STATE(1893)] = 54535, + [SMALL_STATE(1894)] = 54543, + [SMALL_STATE(1895)] = 54551, + [SMALL_STATE(1896)] = 54559, + [SMALL_STATE(1897)] = 54569, + [SMALL_STATE(1898)] = 54577, + [SMALL_STATE(1899)] = 54585, + [SMALL_STATE(1900)] = 54593, + [SMALL_STATE(1901)] = 54601, + [SMALL_STATE(1902)] = 54609, + [SMALL_STATE(1903)] = 54617, + [SMALL_STATE(1904)] = 54625, + [SMALL_STATE(1905)] = 54633, + [SMALL_STATE(1906)] = 54641, + [SMALL_STATE(1907)] = 54649, + [SMALL_STATE(1908)] = 54657, + [SMALL_STATE(1909)] = 54665, + [SMALL_STATE(1910)] = 54673, + [SMALL_STATE(1911)] = 54681, + [SMALL_STATE(1912)] = 54689, + [SMALL_STATE(1913)] = 54697, + [SMALL_STATE(1914)] = 54705, + [SMALL_STATE(1915)] = 54713, + [SMALL_STATE(1916)] = 54721, + [SMALL_STATE(1917)] = 54729, + [SMALL_STATE(1918)] = 54737, + [SMALL_STATE(1919)] = 54745, + [SMALL_STATE(1920)] = 54753, + [SMALL_STATE(1921)] = 54761, + [SMALL_STATE(1922)] = 54769, + [SMALL_STATE(1923)] = 54777, + [SMALL_STATE(1924)] = 54785, + [SMALL_STATE(1925)] = 54793, + [SMALL_STATE(1926)] = 54801, + [SMALL_STATE(1927)] = 54809, + [SMALL_STATE(1928)] = 54817, + [SMALL_STATE(1929)] = 54825, + [SMALL_STATE(1930)] = 54833, + [SMALL_STATE(1931)] = 54841, + [SMALL_STATE(1932)] = 54849, + [SMALL_STATE(1933)] = 54857, + [SMALL_STATE(1934)] = 54867, + [SMALL_STATE(1935)] = 54875, + [SMALL_STATE(1936)] = 54883, + [SMALL_STATE(1937)] = 54891, + [SMALL_STATE(1938)] = 54899, + [SMALL_STATE(1939)] = 54909, + [SMALL_STATE(1940)] = 54917, + [SMALL_STATE(1941)] = 54925, + [SMALL_STATE(1942)] = 54933, + [SMALL_STATE(1943)] = 54943, + [SMALL_STATE(1944)] = 54951, + [SMALL_STATE(1945)] = 54959, + [SMALL_STATE(1946)] = 54969, + [SMALL_STATE(1947)] = 54977, + [SMALL_STATE(1948)] = 54987, + [SMALL_STATE(1949)] = 54995, + [SMALL_STATE(1950)] = 55003, + [SMALL_STATE(1951)] = 55011, + [SMALL_STATE(1952)] = 55019, + [SMALL_STATE(1953)] = 55027, + [SMALL_STATE(1954)] = 55035, + [SMALL_STATE(1955)] = 55043, + [SMALL_STATE(1956)] = 55051, + [SMALL_STATE(1957)] = 55059, + [SMALL_STATE(1958)] = 55067, + [SMALL_STATE(1959)] = 55075, + [SMALL_STATE(1960)] = 55085, + [SMALL_STATE(1961)] = 55093, + [SMALL_STATE(1962)] = 55101, + [SMALL_STATE(1963)] = 55109, + [SMALL_STATE(1964)] = 55117, + [SMALL_STATE(1965)] = 55125, + [SMALL_STATE(1966)] = 55133, + [SMALL_STATE(1967)] = 55141, + [SMALL_STATE(1968)] = 55149, + [SMALL_STATE(1969)] = 55157, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -81755,1706 +85572,1931 @@ 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), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), [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), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), [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), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), [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), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(466), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1055), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1250), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1278), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1149), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(636), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(636), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(464), + [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 36), + [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 36), + [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 57), + [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 57), + [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 98), + [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 98), + [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 67), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 67), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 35), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 35), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 35), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 35), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 74), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 74), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 78), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 78), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 78), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 78), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 96), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 96), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 86), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 86), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 86), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 86), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 86), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 86), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90), + [635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 90), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 90), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 69), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 69), + [647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 69), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 69), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(59), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1034), + [903] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(109), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(243), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(109), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(208), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(248), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(147), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 60), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 60), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 103), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 103), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 52), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 52), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 52), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 52), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 60), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 60), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 69), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 69), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 74), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 74), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 89), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 89), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 78), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 78), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 61), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 61), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 53), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 53), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 94), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 94), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 86), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 86), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 35), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 35), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 90), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 90), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 77), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 77), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 14), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 14), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 100), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 100), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 107), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 107), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 108), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 108), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 109), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 109), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 110), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 110), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 15), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 15), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 52), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 52), + [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_import_statement, 4, 0, 20), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 58), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 58), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 50), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 50), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 59), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 59), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 101), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 101), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 88), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 88), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 44), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 44), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 76), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 76), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(101), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 43), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 43), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(213), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(251), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 105), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 105), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 99), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 99), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 92), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 92), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 93), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 93), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 106), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 106), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(148), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 7), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 7), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 79), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 79), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 85), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 85), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 9), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 9), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 75), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 75), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 71), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 71), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), + [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 36), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 36), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 37), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 37), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 38), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 38), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 39), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 39), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 47), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 47), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 71), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 71), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 73), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 73), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 10), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 10), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 11), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 11), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 13), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 13), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 40), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 40), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 48), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 48), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 49), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 49), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 70), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 70), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 87), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 16), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 41), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 42), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 42), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 42), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), [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), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1761] = {.entry = {.count = 1, .reusable = true}}, 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), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 41), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 16), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 57), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(274), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 41), + [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 41), REDUCE(sym_assignment_expression, 3, 0, 41), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 41), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 55), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(298), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1326), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1039), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), + [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(896), + [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(288), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1319), + [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1320), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(931), + [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1158), + [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1458), + [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(917), + [2183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(995), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(939), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1639), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1458), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 97), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 97), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 36), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 36), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 104), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 104), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 91), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 91), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 56), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 56), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), SHIFT_REPEAT(963), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 74), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 74), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 81), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 81), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 96), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 96), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 86), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 86), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), + [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1102), + [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(121), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1102), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1649), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [2754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 64), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 83), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 43), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 43), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 34), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1422), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(213), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(251), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1252), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1297), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1306), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1306), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 55), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1146), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(897), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 80), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 80), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 82), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 65), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 95), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3613] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), }; 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_escape_sequence = 8, + ts_external_token_regex_pattern = 9, + ts_external_token_jsx_text = 10, }; 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_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[23][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_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, }, [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, }, [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, }, [5] = { [ts_external_token__automatic_semicolon] = true, [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = 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, }, [7] = { + [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__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, + }, + [9] = { + [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, + [ts_external_token_LBRACK] = true, + }, + [10] = { + [ts_external_token_html_comment] = true, + [ts_external_token_LBRACK] = true, + }, + [11] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_LBRACK] = true, + }, + [12] = { + [ts_external_token__shorthand_arrow] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_LBRACK] = true, + }, + [13] = { + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + }, + [14] = { + [ts_external_token_html_comment] = true, + }, + [15] = { + [ts_external_token_html_comment] = true, + [ts_external_token_jsx_text] = true, + }, + [16] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + }, + [17] = { [ts_external_token__template_chars] = true, [ts_external_token_html_comment] = true, [ts_external_token_escape_sequence] = true, }, - [8] = { + [18] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + }, + [19] = { [ts_external_token_html_comment] = true, [ts_external_token_escape_sequence] = true, }, - [9] = { + [20] = { + [ts_external_token__shorthand_arrow] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_LPAREN] = true, + }, + [21] = { + [ts_external_token__shorthand_arrow] = true, + [ts_external_token_html_comment] = true, + }, + [22] = { [ts_external_token_html_comment] = true, [ts_external_token_regex_pattern] = true, }, @@ -83479,7 +87521,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 +87543,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..73438cf8 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -7,8 +7,11 @@ enum TokenType { AUTOMATIC_SEMICOLON, TEMPLATE_CHARS, TERNARY_QMARK, + SHORTHAND_ARROW, HTML_COMMENT, LOGICAL_OR, + LEFT_PARENTHESIS, + LEFT_SQUARE_BRACKET, ESCAPE_SEQUENCE, REGEX_PATTERN, JSX_TEXT, @@ -107,7 +110,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 +165,6 @@ static bool scan_automatic_semicolon(TSLexer *lexer, bool comment_condition, boo case '>': case '<': case '=': - case '[': - case '(': case '?': case '^': case '|': @@ -171,6 +172,11 @@ 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]; + // Insert a semicolon before decimals literals but not otherwise. case '.': skip(lexer); @@ -223,13 +229,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 +329,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 +369,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..6b42bb37 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 ============================================