diff --git a/common/define-grammar.js b/common/define-grammar.js index db59d6b6..0c7b5589 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -2,6 +2,7 @@ const PREC = { ACCESSIBILITY: 1, DEFINITION: 1, DECLARATION: 1, + STRING: 2, // must match the value defined in javascript's grammar.js. INTERSECTION: 2, UNION: 2, PLUS: 4, @@ -156,6 +157,34 @@ module.exports = function defineGrammar(dialect) { '>' )), + // Use more tolerant $.tsx_string instead of $.string. + _jsx_attribute_value: ($, previous) => choice( + ...previous.members.map(member => + member.name == 'string' ? $.tsx_string : member + )), + + // Same as $.string defined for javascript, with modified regexp + // that allows unescaped newlines. + // See https://github.com/Microsoft/TypeScript/issues/13328 + tsx_string: $ => choice( + seq( + '"', + repeat(choice( + token.immediate(prec(PREC.STRING, /[^"\\\n]+|\\?\r?\n/)), + $.escape_sequence + )), + '"' + ), + seq( + "'", + repeat(choice( + token.immediate(prec(PREC.STRING, /[^'\\\n]+|\\?\r?\n/)), + $.escape_sequence + )), + "'" + ) + ), + _import_export_specifier: ($, previous) => seq( optional(choice('type', 'typeof')), previous diff --git a/tsx/corpus/expressions.txt b/tsx/corpus/expressions.txt index ce2f908f..408f4fb2 100644 --- a/tsx/corpus/expressions.txt +++ b/tsx/corpus/expressions.txt @@ -12,3 +12,25 @@ Type arguments in JSX (jsx_opening_element (identifier) (type_arguments (type_identifier))) (jsx_text) (jsx_closing_element (identifier))))) + +========================================================== +TSX string literals +========================================================== + + +; + +--- + +(program + (expression_statement + (jsx_element + (jsx_opening_element + (identifier) + (jsx_attribute + (property_identifier) + (tsx_string))) + (jsx_text) + (jsx_closing_element + (identifier))))) diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index f71e7ddc..e3cfcdc3 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -2624,7 +2624,7 @@ "members": [ { "type": "SYMBOL", - "name": "string" + "name": "tsx_string" }, { "type": "SYMBOL", @@ -6565,6 +6565,83 @@ } ] }, + "tsx_string": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[^\"\\\\\\n]+|\\\\?\\r?\\n" + } + } + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[^'\\\\\\n]+|\\\\?\\r?\\n" + } + } + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + } + ] + }, "non_null_expression": { "type": "PREC_LEFT", "value": 10, diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index 44782e7c..1e88cc8d 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -3283,7 +3283,7 @@ "named": true }, { - "type": "string", + "type": "tsx_string", "named": true } ] @@ -5078,6 +5078,21 @@ } } }, + { + "type": "tsx_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + } + ] + } + }, { "type": "tuple_type", "named": true, @@ -6314,11 +6329,11 @@ }, { "type": "number", - "named": false + "named": true }, { "type": "number", - "named": true + "named": false }, { "type": "of", diff --git a/tsx/src/parser.c b/tsx/src/parser.c index 22aa744e..b0c49cdc 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 11 -#define STATE_COUNT 3320 +#define STATE_COUNT 3322 #define LARGE_STATE_COUNT 627 -#define SYMBOL_COUNT 316 +#define SYMBOL_COUNT 321 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 148 +#define TOKEN_COUNT 150 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 38 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -149,196 +149,201 @@ enum { anon_sym_boolean = 131, anon_sym_string = 132, anon_sym_symbol = 133, - anon_sym_require = 134, - anon_sym_implements = 135, - anon_sym_global = 136, - anon_sym_interface = 137, - anon_sym_extends = 138, - anon_sym_enum = 139, - sym_readonly = 140, - anon_sym_asserts = 141, - anon_sym_is = 142, - anon_sym_keyof = 143, - anon_sym_LBRACE_PIPE = 144, - anon_sym_PIPE_RBRACE = 145, - sym__automatic_semicolon = 146, - sym__template_chars = 147, - sym_program = 148, - sym_export_statement = 149, - sym_export_clause = 150, - sym__import_export_specifier = 151, - sym__declaration = 152, - sym_import = 153, - sym_import_statement = 154, - sym_import_clause = 155, - sym__from_clause = 156, - sym_namespace_import = 157, - sym_named_imports = 158, - sym_expression_statement = 159, - sym_variable_declaration = 160, - sym_lexical_declaration = 161, - sym_variable_declarator = 162, - sym_statement_block = 163, - sym_if_statement = 164, - sym_switch_statement = 165, - sym_for_statement = 166, - sym_for_in_statement = 167, - sym__for_header = 168, - sym_while_statement = 169, - sym_do_statement = 170, - sym_try_statement = 171, - sym_with_statement = 172, - sym_break_statement = 173, - sym_continue_statement = 174, - sym_debugger_statement = 175, - sym_return_statement = 176, - sym_throw_statement = 177, - sym_empty_statement = 178, - sym_labeled_statement = 179, - sym_switch_body = 180, - sym_switch_case = 181, - sym_switch_default = 182, - sym_catch_clause = 183, - sym_finally_clause = 184, - sym_parenthesized_expression = 185, - sym__expression = 186, - sym_yield_expression = 187, - sym_object = 188, - sym_assignment_pattern = 189, - sym_array = 190, - sym_jsx_element = 191, - sym_jsx_fragment = 192, - sym_jsx_expression = 193, - sym_jsx_opening_element = 194, - sym_nested_identifier = 195, - sym_jsx_namespace_name = 196, - sym_jsx_closing_element = 197, - sym_jsx_self_closing_element = 198, - sym_jsx_attribute = 199, - sym_class = 200, - sym_class_declaration = 201, - sym_class_heritage = 202, - sym_function = 203, - sym_function_declaration = 204, - sym_generator_function = 205, - sym_generator_function_declaration = 206, - sym_arrow_function = 207, - sym__call_signature = 208, - sym_call_expression = 209, - sym_new_expression = 210, - sym_await_expression = 211, - sym_member_expression = 212, - sym_subscript_expression = 213, - sym_assignment_expression = 214, - sym_augmented_assignment_expression = 215, - sym__initializer = 216, - sym_spread_element = 217, - sym_ternary_expression = 218, - sym_binary_expression = 219, - sym_unary_expression = 220, - sym_update_expression = 221, - sym_sequence_expression = 222, - sym_string = 223, - sym_template_string = 224, - sym_template_substitution = 225, - sym_regex = 226, - sym_meta_property = 227, - sym_arguments = 228, - sym_decorator = 229, - sym_decorator_member_expression = 230, - sym_decorator_call_expression = 231, - sym_class_body = 232, - sym_public_field_definition = 233, - sym_formal_parameters = 234, - sym_rest_parameter = 235, - sym_method_definition = 236, - sym_pair = 237, - sym__property_name = 238, - sym_computed_property_name = 239, - sym_non_null_expression = 240, - sym_method_signature = 241, - sym_abstract_method_signature = 242, - sym_function_signature = 243, - sym_as_expression = 244, - sym_import_require_clause = 245, - sym_implements_clause = 246, - sym_ambient_declaration = 247, - sym_abstract_class_declaration = 248, - sym_module = 249, - sym_internal_module = 250, - sym__module = 251, - sym_import_alias = 252, - sym_nested_type_identifier = 253, - sym_interface_declaration = 254, - sym_extends_clause = 255, - sym_enum_declaration = 256, - sym_enum_body = 257, - sym_enum_assignment = 258, - sym_type_alias_declaration = 259, - sym_accessibility_modifier = 260, - sym_required_parameter = 261, - sym_optional_parameter = 262, - sym__parameter_name = 263, - sym_type_annotation = 264, - sym_asserts = 265, - sym__type = 266, - sym_constructor_type = 267, - sym__primary_type = 268, - sym_generic_type = 269, - sym_type_predicate = 270, - sym_type_query = 271, - sym_index_type_query = 272, - sym_lookup_type = 273, - sym_mapped_type_clause = 274, - sym_literal_type = 275, - sym__number = 276, - sym_existential_type = 277, - sym_flow_maybe_type = 278, - sym_parenthesized_type = 279, - sym_predefined_type = 280, - sym_type_arguments = 281, - sym_object_type = 282, - sym_call_signature = 283, - sym_property_signature = 284, - sym_type_parameters = 285, - sym_type_parameter = 286, - sym_default_type = 287, - sym_constraint = 288, - sym_construct_signature = 289, - sym_index_signature = 290, - sym_array_type = 291, - sym_tuple_type = 292, - sym_union_type = 293, - sym_intersection_type = 294, - sym_function_type = 295, - aux_sym_program_repeat1 = 296, - aux_sym_export_statement_repeat1 = 297, - aux_sym_export_clause_repeat1 = 298, - aux_sym_named_imports_repeat1 = 299, - aux_sym_variable_declaration_repeat1 = 300, - aux_sym_switch_body_repeat1 = 301, - aux_sym_object_repeat1 = 302, - aux_sym_array_repeat1 = 303, - aux_sym_jsx_element_repeat1 = 304, - aux_sym_jsx_opening_element_repeat1 = 305, - aux_sym_string_repeat1 = 306, - aux_sym_string_repeat2 = 307, - aux_sym_template_string_repeat1 = 308, - aux_sym_class_body_repeat1 = 309, - aux_sym_formal_parameters_repeat1 = 310, - aux_sym_implements_clause_repeat1 = 311, - aux_sym_extends_clause_repeat1 = 312, - aux_sym_enum_body_repeat1 = 313, - aux_sym_object_type_repeat1 = 314, - aux_sym_type_parameters_repeat1 = 315, - alias_sym_array_pattern = 316, - alias_sym_export_specifier = 317, - alias_sym_import_specifier = 318, - alias_sym_object_pattern = 319, - alias_sym_property_identifier = 320, - alias_sym_shorthand_property_identifier = 321, - alias_sym_statement_identifier = 322, - alias_sym_type_identifier = 323, + aux_sym_tsx_string_token1 = 134, + aux_sym_tsx_string_token2 = 135, + anon_sym_require = 136, + anon_sym_implements = 137, + anon_sym_global = 138, + anon_sym_interface = 139, + anon_sym_extends = 140, + anon_sym_enum = 141, + sym_readonly = 142, + anon_sym_asserts = 143, + anon_sym_is = 144, + anon_sym_keyof = 145, + anon_sym_LBRACE_PIPE = 146, + anon_sym_PIPE_RBRACE = 147, + sym__automatic_semicolon = 148, + sym__template_chars = 149, + sym_program = 150, + sym_export_statement = 151, + sym_export_clause = 152, + sym__import_export_specifier = 153, + sym__declaration = 154, + sym_import = 155, + sym_import_statement = 156, + sym_import_clause = 157, + sym__from_clause = 158, + sym_namespace_import = 159, + sym_named_imports = 160, + sym_expression_statement = 161, + sym_variable_declaration = 162, + sym_lexical_declaration = 163, + sym_variable_declarator = 164, + sym_statement_block = 165, + sym_if_statement = 166, + sym_switch_statement = 167, + sym_for_statement = 168, + sym_for_in_statement = 169, + sym__for_header = 170, + sym_while_statement = 171, + sym_do_statement = 172, + sym_try_statement = 173, + sym_with_statement = 174, + sym_break_statement = 175, + sym_continue_statement = 176, + sym_debugger_statement = 177, + sym_return_statement = 178, + sym_throw_statement = 179, + sym_empty_statement = 180, + sym_labeled_statement = 181, + sym_switch_body = 182, + sym_switch_case = 183, + sym_switch_default = 184, + sym_catch_clause = 185, + sym_finally_clause = 186, + sym_parenthesized_expression = 187, + sym__expression = 188, + sym_yield_expression = 189, + sym_object = 190, + sym_assignment_pattern = 191, + sym_array = 192, + sym_jsx_element = 193, + sym_jsx_fragment = 194, + sym_jsx_expression = 195, + sym_jsx_opening_element = 196, + sym_nested_identifier = 197, + sym_jsx_namespace_name = 198, + sym_jsx_closing_element = 199, + sym_jsx_self_closing_element = 200, + sym_jsx_attribute = 201, + sym_class = 202, + sym_class_declaration = 203, + sym_class_heritage = 204, + sym_function = 205, + sym_function_declaration = 206, + sym_generator_function = 207, + sym_generator_function_declaration = 208, + sym_arrow_function = 209, + sym__call_signature = 210, + sym_call_expression = 211, + sym_new_expression = 212, + sym_await_expression = 213, + sym_member_expression = 214, + sym_subscript_expression = 215, + sym_assignment_expression = 216, + sym_augmented_assignment_expression = 217, + sym__initializer = 218, + sym_spread_element = 219, + sym_ternary_expression = 220, + sym_binary_expression = 221, + sym_unary_expression = 222, + sym_update_expression = 223, + sym_sequence_expression = 224, + sym_string = 225, + sym_template_string = 226, + sym_template_substitution = 227, + sym_regex = 228, + sym_meta_property = 229, + sym_arguments = 230, + sym_decorator = 231, + sym_decorator_member_expression = 232, + sym_decorator_call_expression = 233, + sym_class_body = 234, + sym_public_field_definition = 235, + sym_formal_parameters = 236, + sym_rest_parameter = 237, + sym_method_definition = 238, + sym_pair = 239, + sym__property_name = 240, + sym_computed_property_name = 241, + sym_tsx_string = 242, + sym_non_null_expression = 243, + sym_method_signature = 244, + sym_abstract_method_signature = 245, + sym_function_signature = 246, + sym_as_expression = 247, + sym_import_require_clause = 248, + sym_implements_clause = 249, + sym_ambient_declaration = 250, + sym_abstract_class_declaration = 251, + sym_module = 252, + sym_internal_module = 253, + sym__module = 254, + sym_import_alias = 255, + sym_nested_type_identifier = 256, + sym_interface_declaration = 257, + sym_extends_clause = 258, + sym_enum_declaration = 259, + sym_enum_body = 260, + sym_enum_assignment = 261, + sym_type_alias_declaration = 262, + sym_accessibility_modifier = 263, + sym_required_parameter = 264, + sym_optional_parameter = 265, + sym__parameter_name = 266, + sym_type_annotation = 267, + sym_asserts = 268, + sym__type = 269, + sym_constructor_type = 270, + sym__primary_type = 271, + sym_generic_type = 272, + sym_type_predicate = 273, + sym_type_query = 274, + sym_index_type_query = 275, + sym_lookup_type = 276, + sym_mapped_type_clause = 277, + sym_literal_type = 278, + sym__number = 279, + sym_existential_type = 280, + sym_flow_maybe_type = 281, + sym_parenthesized_type = 282, + sym_predefined_type = 283, + sym_type_arguments = 284, + sym_object_type = 285, + sym_call_signature = 286, + sym_property_signature = 287, + sym_type_parameters = 288, + sym_type_parameter = 289, + sym_default_type = 290, + sym_constraint = 291, + sym_construct_signature = 292, + sym_index_signature = 293, + sym_array_type = 294, + sym_tuple_type = 295, + sym_union_type = 296, + sym_intersection_type = 297, + sym_function_type = 298, + aux_sym_program_repeat1 = 299, + aux_sym_export_statement_repeat1 = 300, + aux_sym_export_clause_repeat1 = 301, + aux_sym_named_imports_repeat1 = 302, + aux_sym_variable_declaration_repeat1 = 303, + aux_sym_switch_body_repeat1 = 304, + aux_sym_object_repeat1 = 305, + aux_sym_array_repeat1 = 306, + aux_sym_jsx_element_repeat1 = 307, + aux_sym_jsx_opening_element_repeat1 = 308, + aux_sym_string_repeat1 = 309, + aux_sym_string_repeat2 = 310, + aux_sym_template_string_repeat1 = 311, + aux_sym_class_body_repeat1 = 312, + aux_sym_formal_parameters_repeat1 = 313, + aux_sym_tsx_string_repeat1 = 314, + aux_sym_tsx_string_repeat2 = 315, + aux_sym_implements_clause_repeat1 = 316, + aux_sym_extends_clause_repeat1 = 317, + aux_sym_enum_body_repeat1 = 318, + aux_sym_object_type_repeat1 = 319, + aux_sym_type_parameters_repeat1 = 320, + alias_sym_array_pattern = 321, + alias_sym_export_specifier = 322, + alias_sym_import_specifier = 323, + alias_sym_object_pattern = 324, + alias_sym_property_identifier = 325, + alias_sym_shorthand_property_identifier = 326, + alias_sym_statement_identifier = 327, + alias_sym_type_identifier = 328, }; static const char *ts_symbol_names[] = { @@ -476,6 +481,8 @@ static const char *ts_symbol_names[] = { [anon_sym_boolean] = "boolean", [anon_sym_string] = "string", [anon_sym_symbol] = "symbol", + [aux_sym_tsx_string_token1] = "tsx_string_token1", + [aux_sym_tsx_string_token2] = "tsx_string_token2", [anon_sym_require] = "require", [anon_sym_implements] = "implements", [anon_sym_global] = "global", @@ -582,6 +589,7 @@ static const char *ts_symbol_names[] = { [sym_pair] = "pair", [sym__property_name] = "_property_name", [sym_computed_property_name] = "computed_property_name", + [sym_tsx_string] = "tsx_string", [sym_non_null_expression] = "non_null_expression", [sym_method_signature] = "method_signature", [sym_abstract_method_signature] = "abstract_method_signature", @@ -653,6 +661,8 @@ static const char *ts_symbol_names[] = { [aux_sym_template_string_repeat1] = "template_string_repeat1", [aux_sym_class_body_repeat1] = "class_body_repeat1", [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1", + [aux_sym_tsx_string_repeat1] = "tsx_string_repeat1", + [aux_sym_tsx_string_repeat2] = "tsx_string_repeat2", [aux_sym_implements_clause_repeat1] = "implements_clause_repeat1", [aux_sym_extends_clause_repeat1] = "extends_clause_repeat1", [aux_sym_enum_body_repeat1] = "enum_body_repeat1", @@ -803,6 +813,8 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_boolean] = anon_sym_boolean, [anon_sym_string] = anon_sym_string, [anon_sym_symbol] = anon_sym_symbol, + [aux_sym_tsx_string_token1] = aux_sym_tsx_string_token1, + [aux_sym_tsx_string_token2] = aux_sym_tsx_string_token2, [anon_sym_require] = anon_sym_require, [anon_sym_implements] = anon_sym_implements, [anon_sym_global] = anon_sym_global, @@ -909,6 +921,7 @@ static TSSymbol ts_symbol_map[] = { [sym_pair] = sym_pair, [sym__property_name] = sym__property_name, [sym_computed_property_name] = sym_computed_property_name, + [sym_tsx_string] = sym_tsx_string, [sym_non_null_expression] = sym_non_null_expression, [sym_method_signature] = sym_method_signature, [sym_abstract_method_signature] = sym_abstract_method_signature, @@ -980,6 +993,8 @@ static TSSymbol ts_symbol_map[] = { [aux_sym_template_string_repeat1] = aux_sym_template_string_repeat1, [aux_sym_class_body_repeat1] = aux_sym_class_body_repeat1, [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1, + [aux_sym_tsx_string_repeat1] = aux_sym_tsx_string_repeat1, + [aux_sym_tsx_string_repeat2] = aux_sym_tsx_string_repeat2, [aux_sym_implements_clause_repeat1] = aux_sym_implements_clause_repeat1, [aux_sym_extends_clause_repeat1] = aux_sym_extends_clause_repeat1, [aux_sym_enum_body_repeat1] = aux_sym_enum_body_repeat1, @@ -1532,6 +1547,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_tsx_string_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_tsx_string_token2] = { + .visible = false, + .named = false, + }, [anon_sym_require] = { .visible = true, .named = false, @@ -1956,6 +1979,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_tsx_string] = { + .visible = true, + .named = true, + }, [sym_non_null_expression] = { .visible = true, .named = true, @@ -2240,6 +2267,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_tsx_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tsx_string_repeat2] = { + .visible = false, + .named = false, + }, [aux_sym_implements_clause_repeat1] = { .visible = false, .named = false, @@ -3327,39 +3362,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(79); - if (lookahead == '"') ADVANCE(166); - if (lookahead == '#') ADVANCE(13); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '%') ADVANCE(152); - if (lookahead == '&') ADVANCE(135); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '+') ADVANCE(147); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(150); - if (lookahead == '.') ADVANCE(101); - if (lookahead == '/') ADVANCE(191); - if (lookahead == '0') ADVANCE(196); - if (lookahead == ':') ADVANCE(83); - if (lookahead == ';') ADVANCE(82); - if (lookahead == '<') ADVANCE(87); - if (lookahead == '=') ADVANCE(72); - if (lookahead == '>') ADVANCE(90); - if (lookahead == '?') ADVANCE(122); - if (lookahead == '@') ADVANCE(208); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(32); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '^') ADVANCE(138); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(75); - if (lookahead == '|') ADVANCE(141); - if (lookahead == '}') ADVANCE(77); - if (lookahead == '~') ADVANCE(163); + if (eof) ADVANCE(71); + if (lookahead == '!') ADVANCE(83); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(17); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '%') ADVANCE(156); + if (lookahead == '&') ADVANCE(139); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == '*') ADVANCE(74); + if (lookahead == '+') ADVANCE(151); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(105); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '0') ADVANCE(202); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(86); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '=') ADVANCE(76); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(126); + if (lookahead == '@') ADVANCE(214); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '^') ADVANCE(142); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(79); + if (lookahead == '|') ADVANCE(145); + if (lookahead == '}') ADVANCE(81); + if (lookahead == '~') ADVANCE(167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3367,37 +3402,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 65279) SKIP(68) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); if (lookahead != 0 && - (lookahead < 0 || 31 < lookahead)) ADVANCE(207); + (lookahead < 0 || 31 < lookahead)) ADVANCE(213); END_STATE(); case 1: - if (lookahead == '\n') SKIP(18) - if (lookahead == '"') ADVANCE(166); - if (lookahead == '/') ADVANCE(168); + if (lookahead == '\n') ADVANCE(215); + if (lookahead == '\r') ADVANCE(216); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '/') ADVANCE(217); if (lookahead == '\\') ADVANCE(2); if (lookahead == '\t' || - lookahead == '\r' || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(171); - if (lookahead != 0) ADVANCE(172); + lookahead == 65279) ADVANCE(220); + if (lookahead != 0) ADVANCE(221); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(167); - if (lookahead == '\r') ADVANCE(181); - if (lookahead == 'u') ADVANCE(38); - if (lookahead == 'x') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(185); - if (lookahead != 0) ADVANCE(180); + if (lookahead == '\n') ADVANCE(215); + if (lookahead == '\r') ADVANCE(185); + if (lookahead == 'u') ADVANCE(42); + if (lookahead == 'x') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(191); + if (lookahead != 0) ADVANCE(184); END_STATE(); case 3: - if (lookahead == '\n') SKIP(22) - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '/') ADVANCE(175); + if (lookahead == '\n') SKIP(26) + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '/') ADVANCE(179); if (lookahead == '\\') ADVANCE(4); if (lookahead == '\t' || lookahead == '\r' || @@ -3405,61 +3440,105 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(178); - if (lookahead != 0) ADVANCE(179); + lookahead == 65279) ADVANCE(182); + if (lookahead != 0) ADVANCE(183); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '\r') ADVANCE(182); - if (lookahead == 'u') ADVANCE(38); - if (lookahead == 'x') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(185); - if (lookahead != 0) ADVANCE(180); + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '\r') ADVANCE(186); + if (lookahead == 'u') ADVANCE(42); + if (lookahead == 'x') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(191); + if (lookahead != 0) ADVANCE(184); END_STATE(); case 5: - if (lookahead == '\n') SKIP(28) - if (lookahead == '/') ADVANCE(23); - if (lookahead == '[') ADVANCE(31); - if (lookahead == '\\') ADVANCE(63); + if (lookahead == '\n') SKIP(22) + if (lookahead == '"') ADVANCE(170); + if (lookahead == '/') ADVANCE(172); + if (lookahead == '\\') ADVANCE(6); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(192); - if (lookahead != 0) ADVANCE(193); + lookahead == 65279) ADVANCE(175); + if (lookahead != 0) ADVANCE(176); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(79); - if (lookahead == '"') ADVANCE(166); - if (lookahead == '%') ADVANCE(152); - if (lookahead == '&') ADVANCE(135); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '+') ADVANCE(147); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(150); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '0') ADVANCE(196); - if (lookahead == ':') ADVANCE(83); - if (lookahead == ';') ADVANCE(82); - if (lookahead == '<') ADVANCE(87); - if (lookahead == '=') ADVANCE(72); - if (lookahead == '>') ADVANCE(90); - if (lookahead == '?') ADVANCE(122); - if (lookahead == '@') ADVANCE(208); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '^') ADVANCE(138); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(74); - if (lookahead == '|') ADVANCE(141); - if (lookahead == '}') ADVANCE(77); + if (lookahead == '\n') ADVANCE(171); + if (lookahead == '\r') ADVANCE(187); + if (lookahead == 'u') ADVANCE(42); + if (lookahead == 'x') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(191); + if (lookahead != 0) ADVANCE(184); + END_STATE(); + case 7: + if (lookahead == '\n') ADVANCE(222); + if (lookahead == '\r') ADVANCE(223); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '/') ADVANCE(224); + if (lookahead == '\\') ADVANCE(8); + if (lookahead == '\t' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(227); + if (lookahead != 0) ADVANCE(228); + END_STATE(); + case 8: + if (lookahead == '\n') ADVANCE(222); + if (lookahead == '\r') ADVANCE(188); + if (lookahead == 'u') ADVANCE(42); + if (lookahead == 'x') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(191); + if (lookahead != 0) ADVANCE(184); + END_STATE(); + case 9: + if (lookahead == '\n') SKIP(32) + if (lookahead == '/') ADVANCE(27); + if (lookahead == '[') ADVANCE(35); + if (lookahead == '\\') ADVANCE(67); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(198); + if (lookahead != 0) ADVANCE(199); + END_STATE(); + case 10: + if (lookahead == '!') ADVANCE(83); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '%') ADVANCE(156); + if (lookahead == '&') ADVANCE(139); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == '*') ADVANCE(74); + if (lookahead == '+') ADVANCE(151); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(106); + if (lookahead == '/') ADVANCE(97); + if (lookahead == '0') ADVANCE(202); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(86); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '=') ADVANCE(76); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(126); + if (lookahead == '@') ADVANCE(214); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '^') ADVANCE(142); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(78); + if (lookahead == '|') ADVANCE(145); + if (lookahead == '}') ADVANCE(81); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3467,35 +3546,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(6) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 65279) SKIP(10) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && - lookahead != '~') ADVANCE(207); + lookahead != '~') ADVANCE(213); END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(79); - if (lookahead == '"') ADVANCE(166); - if (lookahead == '%') ADVANCE(152); - if (lookahead == '&') ADVANCE(135); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '+') ADVANCE(147); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(150); - if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(93); - if (lookahead == '<') ADVANCE(87); - if (lookahead == '=') ADVANCE(72); - if (lookahead == '>') ADVANCE(90); - if (lookahead == '?') ADVANCE(122); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == '^') ADVANCE(138); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(75); - if (lookahead == '|') ADVANCE(140); + case 11: + if (lookahead == '!') ADVANCE(83); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '%') ADVANCE(156); + if (lookahead == '&') ADVANCE(139); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == '*') ADVANCE(74); + if (lookahead == '+') ADVANCE(151); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(104); + if (lookahead == '/') ADVANCE(97); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '=') ADVANCE(76); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(126); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == '^') ADVANCE(142); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(79); + if (lookahead == '|') ADVANCE(144); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3503,41 +3582,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(7) + lookahead == 65279) SKIP(11) if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < ')' || '@' < lookahead) && lookahead != ']' && lookahead != '}' && - lookahead != '~') ADVANCE(207); + lookahead != '~') ADVANCE(213); END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(79); - if (lookahead == '"') ADVANCE(166); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(136); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(146); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(149); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(196); - if (lookahead == ':') ADVANCE(83); - if (lookahead == '<') ADVANCE(88); - if (lookahead == '=') ADVANCE(72); - if (lookahead == '>') ADVANCE(91); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '@') ADVANCE(208); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == '^') ADVANCE(137); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(75); - if (lookahead == '|') ADVANCE(142); - if (lookahead == '~') ADVANCE(163); + case 12: + if (lookahead == '!') ADVANCE(83); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '%') ADVANCE(155); + if (lookahead == '&') ADVANCE(140); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(106); + if (lookahead == '/') ADVANCE(96); + if (lookahead == '0') ADVANCE(202); + if (lookahead == ':') ADVANCE(87); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(76); + if (lookahead == '>') ADVANCE(95); + if (lookahead == '?') ADVANCE(127); + if (lookahead == '@') ADVANCE(214); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == '^') ADVANCE(141); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(79); + if (lookahead == '|') ADVANCE(146); + if (lookahead == '~') ADVANCE(167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3545,40 +3624,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 65279) SKIP(12) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < ')' || ';' < lookahead) && lookahead != ']' && - lookahead != '}') ADVANCE(207); + lookahead != '}') ADVANCE(213); END_STATE(); - case 9: - if (lookahead == '!') ADVANCE(79); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(136); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(146); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(149); - if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(92); - if (lookahead == ':') ADVANCE(83); - if (lookahead == ';') ADVANCE(82); - if (lookahead == '<') ADVANCE(88); - if (lookahead == '=') ADVANCE(30); - if (lookahead == '>') ADVANCE(91); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '^') ADVANCE(137); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(74); - if (lookahead == '|') ADVANCE(142); - if (lookahead == '}') ADVANCE(77); + case 13: + if (lookahead == '!') ADVANCE(83); + if (lookahead == '%') ADVANCE(155); + if (lookahead == '&') ADVANCE(140); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(104); + if (lookahead == '/') ADVANCE(96); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(86); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(95); + if (lookahead == '?') ADVANCE(127); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '^') ADVANCE(141); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(78); + if (lookahead == '|') ADVANCE(146); + if (lookahead == '}') ADVANCE(81); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3586,39 +3665,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(10) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + lookahead == 65279) SKIP(14) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(200); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(207); + lookahead != '~') ADVANCE(213); END_STATE(); - case 10: - if (lookahead == '!') ADVANCE(79); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(136); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(146); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(149); - if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(92); - if (lookahead == ':') ADVANCE(83); - if (lookahead == ';') ADVANCE(82); - if (lookahead == '<') ADVANCE(88); - if (lookahead == '=') ADVANCE(30); - if (lookahead == '>') ADVANCE(91); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '^') ADVANCE(137); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(74); - if (lookahead == '|') ADVANCE(142); - if (lookahead == '}') ADVANCE(77); + case 14: + if (lookahead == '!') ADVANCE(83); + if (lookahead == '%') ADVANCE(155); + if (lookahead == '&') ADVANCE(140); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(104); + if (lookahead == '/') ADVANCE(96); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(86); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(95); + if (lookahead == '?') ADVANCE(127); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '^') ADVANCE(141); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(78); + if (lookahead == '|') ADVANCE(146); + if (lookahead == '}') ADVANCE(81); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3626,33 +3705,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(10) + lookahead == 65279) SKIP(14) if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(207); + lookahead != '~') ADVANCE(213); END_STATE(); - case 11: - if (lookahead == '!') ADVANCE(79); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(136); - if (lookahead == '(') ADVANCE(80); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(146); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(149); - if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '<') ADVANCE(88); - if (lookahead == '=') ADVANCE(30); - if (lookahead == '>') ADVANCE(91); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == '^') ADVANCE(137); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(75); - if (lookahead == '|') ADVANCE(142); + case 15: + if (lookahead == '!') ADVANCE(83); + if (lookahead == '%') ADVANCE(155); + if (lookahead == '&') ADVANCE(140); + if (lookahead == '(') ADVANCE(84); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(104); + if (lookahead == '/') ADVANCE(96); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(95); + if (lookahead == '?') ADVANCE(127); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == '^') ADVANCE(141); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(79); + if (lookahead == '|') ADVANCE(146); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3660,36 +3739,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(12) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + lookahead == 65279) SKIP(16) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(200); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '\'' || '@' < lookahead) && lookahead != ']' && lookahead != '}' && - lookahead != '~') ADVANCE(207); + lookahead != '~') ADVANCE(213); END_STATE(); - case 12: - if (lookahead == '!') ADVANCE(79); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(136); - if (lookahead == '(') ADVANCE(80); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(146); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(149); - if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '<') ADVANCE(88); - if (lookahead == '=') ADVANCE(30); - if (lookahead == '>') ADVANCE(91); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == '^') ADVANCE(137); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(75); - if (lookahead == '|') ADVANCE(142); + case 16: + if (lookahead == '!') ADVANCE(83); + if (lookahead == '%') ADVANCE(155); + if (lookahead == '&') ADVANCE(140); + if (lookahead == '(') ADVANCE(84); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(104); + if (lookahead == '/') ADVANCE(96); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(95); + if (lookahead == '?') ADVANCE(127); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == '^') ADVANCE(141); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(79); + if (lookahead == '|') ADVANCE(146); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3697,41 +3776,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(12) + lookahead == 65279) SKIP(16) if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '\'' || '@' < lookahead) && lookahead != ']' && lookahead != '}' && - lookahead != '~') ADVANCE(207); + lookahead != '~') ADVANCE(213); END_STATE(); - case 13: - if (lookahead == '!') ADVANCE(68); + case 17: + if (lookahead == '!') ADVANCE(72); END_STATE(); - case 14: - if (lookahead == '!') ADVANCE(78); - if (lookahead == '"') ADVANCE(166); - if (lookahead == '&') ADVANCE(134); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == '*') ADVANCE(69); - if (lookahead == '+') ADVANCE(146); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(149); - if (lookahead == '.') ADVANCE(101); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(196); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '?') ADVANCE(121); - if (lookahead == '@') ADVANCE(208); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(75); - if (lookahead == '|') ADVANCE(139); - if (lookahead == '~') ADVANCE(163); + case 18: + if (lookahead == '!') ADVANCE(82); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '&') ADVANCE(138); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == '*') ADVANCE(73); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(105); + if (lookahead == '/') ADVANCE(96); + if (lookahead == '0') ADVANCE(202); + if (lookahead == '<') ADVANCE(90); + if (lookahead == '?') ADVANCE(125); + if (lookahead == '@') ADVANCE(214); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(79); + if (lookahead == '|') ADVANCE(143); + if (lookahead == '~') ADVANCE(167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3739,36 +3818,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(14) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 65279) SKIP(18) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '%' || '>' < lookahead) && lookahead != '^' && - lookahead != '}') ADVANCE(207); + lookahead != '}') ADVANCE(213); END_STATE(); - case 15: - if (lookahead == '"') ADVANCE(166); - if (lookahead == '&') ADVANCE(134); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == '*') ADVANCE(69); - if (lookahead == '+') ADVANCE(145); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '/') ADVANCE(191); - if (lookahead == '0') ADVANCE(196); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '>') ADVANCE(89); - if (lookahead == '?') ADVANCE(121); - if (lookahead == '@') ADVANCE(208); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(75); - if (lookahead == '|') ADVANCE(139); + case 19: + if (lookahead == '"') ADVANCE(170); + if (lookahead == '&') ADVANCE(138); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == '*') ADVANCE(73); + if (lookahead == '+') ADVANCE(149); + if (lookahead == '-') ADVANCE(152); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '0') ADVANCE(202); + if (lookahead == '<') ADVANCE(90); + if (lookahead == '>') ADVANCE(93); + if (lookahead == '?') ADVANCE(125); + if (lookahead == '@') ADVANCE(214); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(79); + if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3776,37 +3855,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(16) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 65279) SKIP(20) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '%' || '=' < lookahead) && lookahead != '^' && lookahead != '}' && - lookahead != '~') ADVANCE(207); + lookahead != '~') ADVANCE(213); END_STATE(); - case 16: - if (lookahead == '"') ADVANCE(166); - if (lookahead == '&') ADVANCE(134); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == '*') ADVANCE(69); - if (lookahead == '+') ADVANCE(145); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(196); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '>') ADVANCE(89); - if (lookahead == '?') ADVANCE(121); - if (lookahead == '@') ADVANCE(208); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(75); - if (lookahead == '|') ADVANCE(139); + case 20: + if (lookahead == '"') ADVANCE(170); + if (lookahead == '&') ADVANCE(138); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == '*') ADVANCE(73); + if (lookahead == '+') ADVANCE(149); + if (lookahead == '-') ADVANCE(152); + if (lookahead == '.') ADVANCE(30); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '0') ADVANCE(202); + if (lookahead == '<') ADVANCE(90); + if (lookahead == '>') ADVANCE(93); + if (lookahead == '?') ADVANCE(125); + if (lookahead == '@') ADVANCE(214); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(79); + if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3814,33 +3893,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(16) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 65279) SKIP(20) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '%' || '=' < lookahead) && lookahead != '^' && lookahead != '}' && - lookahead != '~') ADVANCE(207); + lookahead != '~') ADVANCE(213); END_STATE(); - case 17: - if (lookahead == '"') ADVANCE(166); - if (lookahead == '&') ADVANCE(134); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == '*') ADVANCE(69); - if (lookahead == '+') ADVANCE(145); - if (lookahead == '-') ADVANCE(148); - if (lookahead == '.') ADVANCE(46); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(196); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '>') ADVANCE(89); - if (lookahead == '?') ADVANCE(121); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == '{') ADVANCE(75); - if (lookahead == '|') ADVANCE(139); + case 21: + if (lookahead == '"') ADVANCE(170); + if (lookahead == '&') ADVANCE(138); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == '*') ADVANCE(73); + if (lookahead == '+') ADVANCE(149); + if (lookahead == '-') ADVANCE(152); + if (lookahead == '.') ADVANCE(50); + if (lookahead == '/') ADVANCE(96); + if (lookahead == '0') ADVANCE(202); + if (lookahead == '<') ADVANCE(90); + if (lookahead == '>') ADVANCE(93); + if (lookahead == '?') ADVANCE(125); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == '{') ADVANCE(79); + if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3848,18 +3927,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(17) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 65279) SKIP(21) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(205); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); if (lookahead != 0 && - (lookahead < 0 || '~' < lookahead)) ADVANCE(207); + (lookahead < 0 || '~' < lookahead)) ADVANCE(213); END_STATE(); - case 18: - if (lookahead == '"') ADVANCE(166); - if (lookahead == '/') ADVANCE(23); + case 22: + if (lookahead == '"') ADVANCE(170); + if (lookahead == '/') ADVANCE(27); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3867,13 +3946,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(18) + lookahead == 65279) SKIP(22) END_STATE(); - case 19: - if (lookahead == '$') ADVANCE(35); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '\\') ADVANCE(34); - if (lookahead == '`') ADVANCE(189); + case 23: + if (lookahead == '$') ADVANCE(39); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '`') ADVANCE(195); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3881,12 +3960,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(20) + lookahead == 65279) SKIP(24) END_STATE(); - case 20: - if (lookahead == '$') ADVANCE(35); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '`') ADVANCE(189); + case 24: + if (lookahead == '$') ADVANCE(39); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '`') ADVANCE(195); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3894,25 +3973,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(20) + lookahead == 65279) SKIP(24) END_STATE(); - case 21: - if (lookahead == '&') ADVANCE(134); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '.') ADVANCE(100); - if (lookahead == '/') ADVANCE(92); - if (lookahead == ':') ADVANCE(83); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '=') ADVANCE(73); - if (lookahead == '>') ADVANCE(89); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(74); - if (lookahead == '|') ADVANCE(139); + case 25: + if (lookahead == '&') ADVANCE(138); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '.') ADVANCE(104); + if (lookahead == '/') ADVANCE(96); + if (lookahead == ':') ADVANCE(87); + if (lookahead == '<') ADVANCE(90); + if (lookahead == '=') ADVANCE(77); + if (lookahead == '>') ADVANCE(93); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(78); + if (lookahead == '|') ADVANCE(143); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3920,16 +3999,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(21) + lookahead == 65279) SKIP(25) if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(205); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(211); if (lookahead != 0 && - (lookahead < 0 || '~' < lookahead)) ADVANCE(207); + (lookahead < 0 || '~' < lookahead)) ADVANCE(213); END_STATE(); - case 22: - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '/') ADVANCE(23); + case 26: + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '/') ADVANCE(27); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3937,30 +4016,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(22) + lookahead == 65279) SKIP(26) END_STATE(); - case 23: - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(188); + case 27: + if (lookahead == '*') ADVANCE(29); + if (lookahead == '/') ADVANCE(194); END_STATE(); - case 24: - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(186); - if (lookahead != 0) ADVANCE(25); + case 28: + if (lookahead == '*') ADVANCE(28); + if (lookahead == '/') ADVANCE(192); + if (lookahead != 0) ADVANCE(29); END_STATE(); - case 25: - if (lookahead == '*') ADVANCE(24); - if (lookahead != 0) ADVANCE(25); + case 29: + if (lookahead == '*') ADVANCE(28); + if (lookahead != 0) ADVANCE(29); END_STATE(); - case 26: - if (lookahead == '.') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); + case 30: + if (lookahead == '.') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); END_STATE(); - case 27: - if (lookahead == '.') ADVANCE(120); + case 31: + if (lookahead == '.') ADVANCE(124); END_STATE(); - case 28: - if (lookahead == '/') ADVANCE(23); + case 32: + if (lookahead == '/') ADVANCE(27); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3968,12 +4047,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(28) + lookahead == 65279) SKIP(32) END_STATE(); - case 29: - if (lookahead == '/') ADVANCE(94); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '{') ADVANCE(74); + case 33: + if (lookahead == '/') ADVANCE(98); + if (lookahead == '<') ADVANCE(90); + if (lookahead == '{') ADVANCE(78); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3981,205 +4060,205 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(97); + lookahead == 65279) ADVANCE(101); if (lookahead != 0 && lookahead != '>' && - lookahead != '}') ADVANCE(98); - END_STATE(); - case 30: - if (lookahead == '=') ADVANCE(156); - END_STATE(); - case 31: - if (lookahead == '\\') ADVANCE(62); - if (lookahead == ']') ADVANCE(193); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(31); - END_STATE(); - case 32: - if (lookahead == 'u') ADVANCE(36); - if (lookahead == 'x') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(185); - if (lookahead != 0) ADVANCE(180); - END_STATE(); - case 33: - if (lookahead == 'u') ADVANCE(37); + lookahead != '}') ADVANCE(102); END_STATE(); case 34: - if (lookahead == 'u') ADVANCE(38); - if (lookahead == 'x') ADVANCE(57); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(185); - if (lookahead != 0) ADVANCE(180); + if (lookahead == '=') ADVANCE(160); END_STATE(); case 35: - if (lookahead == '{') ADVANCE(190); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == ']') ADVANCE(199); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(35); END_STATE(); case 36: - if (lookahead == '{') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(60); + if (lookahead == 'u') ADVANCE(40); + if (lookahead == 'x') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(191); + if (lookahead != 0) ADVANCE(184); END_STATE(); case 37: - if (lookahead == '{') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); + if (lookahead == 'u') ADVANCE(41); END_STATE(); case 38: - if (lookahead == '{') ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); + if (lookahead == 'u') ADVANCE(42); + if (lookahead == 'x') ADVANCE(61); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(191); + if (lookahead != 0) ADVANCE(184); END_STATE(); case 39: - if (lookahead == '}') ADVANCE(207); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); + if (lookahead == '{') ADVANCE(196); END_STATE(); case 40: - if (lookahead == '}') ADVANCE(180); + if (lookahead == '{') ADVANCE(56); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); END_STATE(); case 41: - if (lookahead == '}') ADVANCE(183); + if (lookahead == '{') ADVANCE(59); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); END_STATE(); case 42: - if (lookahead == '+' || - lookahead == '-') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(202); + if (lookahead == '{') ADVANCE(60); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); END_STATE(); case 43: - if (lookahead == '0' || - lookahead == '1') ADVANCE(198); + if (lookahead == '}') ADVANCE(213); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 44: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(199); + if (lookahead == '}') ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 45: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(197); + if (lookahead == '}') ADVANCE(189); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); case 46: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); + if (lookahead == '+' || + lookahead == '-') ADVANCE(52); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); END_STATE(); case 47: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); + if (lookahead == '0' || + lookahead == '1') ADVANCE(204); END_STATE(); case 48: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(202); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(205); END_STATE(); case 49: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(207); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); case 50: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(180); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); END_STATE(); case 51: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(200); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); case 52: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); END_STATE(); case 53: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(183); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(213); END_STATE(); case 54: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); END_STATE(); case 55: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); END_STATE(); case 56: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(40); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); END_STATE(); case 57: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(189); END_STATE(); case 58: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); END_STATE(); case 59: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 60: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 61: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(59); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); case 62: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); END_STATE(); case 63: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(193); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(53); END_STATE(); case 64: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(79); - if (lookahead == '"') ADVANCE(166); - if (lookahead == '#') ADVANCE(13); - if (lookahead == '$') ADVANCE(206); - if (lookahead == '%') ADVANCE(152); - if (lookahead == '&') ADVANCE(135); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '+') ADVANCE(147); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(150); - if (lookahead == '.') ADVANCE(101); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(196); - if (lookahead == ':') ADVANCE(83); - if (lookahead == ';') ADVANCE(82); - if (lookahead == '<') ADVANCE(87); - if (lookahead == '=') ADVANCE(72); - if (lookahead == '>') ADVANCE(90); - if (lookahead == '?') ADVANCE(122); - if (lookahead == '@') ADVANCE(208); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '^') ADVANCE(138); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(75); - if (lookahead == '|') ADVANCE(141); - if (lookahead == '}') ADVANCE(77); - if (lookahead == '~') ADVANCE(163); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); + END_STATE(); + case 65: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); + END_STATE(); + case 66: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(35); + END_STATE(); + case 67: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(199); + END_STATE(); + case 68: + if (eof) ADVANCE(71); + if (lookahead == '!') ADVANCE(83); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(17); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '%') ADVANCE(156); + if (lookahead == '&') ADVANCE(139); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == '*') ADVANCE(74); + if (lookahead == '+') ADVANCE(151); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(154); + if (lookahead == '.') ADVANCE(105); + if (lookahead == '/') ADVANCE(96); + if (lookahead == '0') ADVANCE(202); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(86); + if (lookahead == '<') ADVANCE(91); + if (lookahead == '=') ADVANCE(76); + if (lookahead == '>') ADVANCE(94); + if (lookahead == '?') ADVANCE(126); + if (lookahead == '@') ADVANCE(214); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '^') ADVANCE(142); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(79); + if (lookahead == '|') ADVANCE(145); + if (lookahead == '}') ADVANCE(81); + if (lookahead == '~') ADVANCE(167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4187,43 +4266,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(64) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 65279) SKIP(68) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); if (lookahead != 0 && - (lookahead < 0 || 31 < lookahead)) ADVANCE(207); + (lookahead < 0 || 31 < lookahead)) ADVANCE(213); END_STATE(); - case 65: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(79); - if (lookahead == '"') ADVANCE(166); - if (lookahead == '%') ADVANCE(151); - if (lookahead == '&') ADVANCE(136); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '+') ADVANCE(146); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(149); - if (lookahead == '.') ADVANCE(102); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(196); - if (lookahead == ':') ADVANCE(83); - if (lookahead == ';') ADVANCE(82); - if (lookahead == '<') ADVANCE(88); - if (lookahead == '=') ADVANCE(72); - if (lookahead == '>') ADVANCE(91); - if (lookahead == '?') ADVANCE(123); - if (lookahead == '@') ADVANCE(208); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '^') ADVANCE(137); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(74); - if (lookahead == '|') ADVANCE(143); - if (lookahead == '}') ADVANCE(77); - if (lookahead == '~') ADVANCE(163); + case 69: + if (eof) ADVANCE(71); + if (lookahead == '!') ADVANCE(83); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '%') ADVANCE(155); + if (lookahead == '&') ADVANCE(140); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == '*') ADVANCE(75); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(106); + if (lookahead == '/') ADVANCE(96); + if (lookahead == '0') ADVANCE(202); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(86); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(76); + if (lookahead == '>') ADVANCE(95); + if (lookahead == '?') ADVANCE(127); + if (lookahead == '@') ADVANCE(214); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '^') ADVANCE(141); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(78); + if (lookahead == '|') ADVANCE(147); + if (lookahead == '}') ADVANCE(81); + if (lookahead == '~') ADVANCE(167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4231,42 +4310,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(65) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 65279) SKIP(69) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); if (lookahead != 0 && - (lookahead < 0 || '#' < lookahead)) ADVANCE(207); + (lookahead < 0 || '#' < lookahead)) ADVANCE(213); END_STATE(); - case 66: - if (eof) ADVANCE(67); - if (lookahead == '!') ADVANCE(78); - if (lookahead == '"') ADVANCE(166); - if (lookahead == '#') ADVANCE(13); - if (lookahead == '&') ADVANCE(134); - if (lookahead == '\'') ADVANCE(173); - if (lookahead == '(') ADVANCE(80); - if (lookahead == ')') ADVANCE(81); - if (lookahead == '*') ADVANCE(69); - if (lookahead == '+') ADVANCE(146); - if (lookahead == ',') ADVANCE(76); - if (lookahead == '-') ADVANCE(149); - if (lookahead == '.') ADVANCE(101); - if (lookahead == '/') ADVANCE(92); - if (lookahead == '0') ADVANCE(196); - if (lookahead == ':') ADVANCE(83); - if (lookahead == ';') ADVANCE(82); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '=') ADVANCE(73); - if (lookahead == '>') ADVANCE(89); - if (lookahead == '?') ADVANCE(121); - if (lookahead == '@') ADVANCE(208); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == ']') ADVANCE(85); - if (lookahead == '`') ADVANCE(189); - if (lookahead == '{') ADVANCE(74); - if (lookahead == '|') ADVANCE(144); - if (lookahead == '}') ADVANCE(77); - if (lookahead == '~') ADVANCE(163); + case 70: + if (eof) ADVANCE(71); + if (lookahead == '!') ADVANCE(82); + if (lookahead == '"') ADVANCE(170); + if (lookahead == '#') ADVANCE(17); + if (lookahead == '&') ADVANCE(138); + if (lookahead == '\'') ADVANCE(177); + if (lookahead == '(') ADVANCE(84); + if (lookahead == ')') ADVANCE(85); + if (lookahead == '*') ADVANCE(73); + if (lookahead == '+') ADVANCE(150); + if (lookahead == ',') ADVANCE(80); + if (lookahead == '-') ADVANCE(153); + if (lookahead == '.') ADVANCE(105); + if (lookahead == '/') ADVANCE(96); + if (lookahead == '0') ADVANCE(202); + if (lookahead == ':') ADVANCE(87); + if (lookahead == ';') ADVANCE(86); + if (lookahead == '<') ADVANCE(90); + if (lookahead == '=') ADVANCE(77); + if (lookahead == '>') ADVANCE(93); + if (lookahead == '?') ADVANCE(125); + if (lookahead == '@') ADVANCE(214); + if (lookahead == '[') ADVANCE(88); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == ']') ADVANCE(89); + if (lookahead == '`') ADVANCE(195); + if (lookahead == '{') ADVANCE(78); + if (lookahead == '|') ADVANCE(148); + if (lookahead == '}') ADVANCE(81); + if (lookahead == '~') ADVANCE(167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4274,149 +4353,149 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(66) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 65279) SKIP(70) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); if (lookahead != 0 && (lookahead < 0 || 31 < lookahead) && lookahead != '%' && - lookahead != '^') ADVANCE(207); + lookahead != '^') ADVANCE(213); END_STATE(); - case 67: + case 71: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 68: + case 72: ACCEPT_TOKEN(sym_hash_bang_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(68); + lookahead != '\n') ADVANCE(72); END_STATE(); - case 69: + case 73: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 70: + case 74: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(154); - if (lookahead == '=') ADVANCE(107); + if (lookahead == '*') ADVANCE(158); + if (lookahead == '=') ADVANCE(111); END_STATE(); - case 71: + case 75: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(153); + if (lookahead == '*') ADVANCE(157); END_STATE(); - case 72: + case 76: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(156); - if (lookahead == '>') ADVANCE(103); + if (lookahead == '=') ADVANCE(160); + if (lookahead == '>') ADVANCE(107); END_STATE(); - case 73: + case 77: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(103); + if (lookahead == '>') ADVANCE(107); END_STATE(); - case 74: + case 78: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 75: + case 79: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(209); + if (lookahead == '|') ADVANCE(229); END_STATE(); - case 76: + case 80: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 77: + case 81: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 78: + case 82: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 79: + case 83: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(158); + if (lookahead == '=') ADVANCE(162); END_STATE(); - case 80: + case 84: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 81: + case 85: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 82: + case 86: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 83: + case 87: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 84: + case 88: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 85: + case 89: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 86: + case 90: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 87: + case 91: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(133); - if (lookahead == '=') ADVANCE(155); + if (lookahead == '<') ADVANCE(137); + if (lookahead == '=') ADVANCE(159); END_STATE(); - case 88: + case 92: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(132); - if (lookahead == '=') ADVANCE(155); + if (lookahead == '<') ADVANCE(136); + if (lookahead == '=') ADVANCE(159); END_STATE(); - case 89: + case 93: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 90: + case 94: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(160); - if (lookahead == '>') ADVANCE(128); + if (lookahead == '=') ADVANCE(164); + if (lookahead == '>') ADVANCE(132); END_STATE(); - case 91: + case 95: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(160); - if (lookahead == '>') ADVANCE(129); + if (lookahead == '=') ADVANCE(164); + if (lookahead == '>') ADVANCE(133); END_STATE(); - case 92: + case 96: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(188); + if (lookahead == '*') ADVANCE(29); + if (lookahead == '/') ADVANCE(194); END_STATE(); - case 93: + case 97: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(188); - if (lookahead == '=') ADVANCE(108); + if (lookahead == '*') ADVANCE(29); + if (lookahead == '/') ADVANCE(194); + if (lookahead == '=') ADVANCE(112); END_STATE(); - case 94: + case 98: ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '/') ADVANCE(187); + if (lookahead == '*') ADVANCE(100); + if (lookahead == '/') ADVANCE(193); if (lookahead != 0 && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(102); END_STATE(); - case 95: + case 99: ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(95); - if (lookahead == '/') ADVANCE(186); + if (lookahead == '*') ADVANCE(99); + if (lookahead == '/') ADVANCE(192); if (lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(25); - if (lookahead != 0) ADVANCE(96); + lookahead == '}') ADVANCE(29); + if (lookahead != 0) ADVANCE(100); END_STATE(); - case 96: + case 100: ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(95); + if (lookahead == '*') ADVANCE(99); if (lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(25); - if (lookahead != 0) ADVANCE(96); + lookahead == '}') ADVANCE(29); + if (lookahead != 0) ADVANCE(100); END_STATE(); - case 97: + case 101: ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '/') ADVANCE(94); + if (lookahead == '/') ADVANCE(98); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -4424,453 +4503,461 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(97); + lookahead == 65279) ADVANCE(101); if (lookahead != 0 && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(102); END_STATE(); - case 98: + case 102: ACCEPT_TOKEN(sym_jsx_text); if (lookahead != 0 && lookahead != '<' && lookahead != '>' && lookahead != '{' && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(102); END_STATE(); - case 99: + case 103: ACCEPT_TOKEN(sym_jsx_identifier); if (lookahead == '$' || lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(99); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(103); END_STATE(); - case 100: + case 104: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 101: + case 105: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); + if (lookahead == '.') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); END_STATE(); - case 102: + case 106: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); END_STATE(); - case 103: + case 107: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 104: + case 108: ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 105: + case 109: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 106: + case 110: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 107: + case 111: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 108: + case 112: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 109: + case 113: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 110: + case 114: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 111: + case 115: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 112: + case 116: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 113: + case 117: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 114: + case 118: ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 115: + case 119: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 116: + case 120: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 117: + case 121: ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 118: + case 122: ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 119: + case 123: ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 120: + case 124: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 121: + case 125: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 122: + case 126: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '?') ADVANCE(162); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '?') ADVANCE(166); END_STATE(); - case 123: + case 127: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(104); - if (lookahead == '?') ADVANCE(161); + if (lookahead == '.') ADVANCE(108); + if (lookahead == '?') ADVANCE(165); END_STATE(); - case 124: + case 128: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 125: + case 129: ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(117); + if (lookahead == '=') ADVANCE(121); END_STATE(); - case 126: + case 130: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 127: + case 131: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(118); + if (lookahead == '=') ADVANCE(122); END_STATE(); - case 128: + case 132: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(113); - if (lookahead == '>') ADVANCE(131); + if (lookahead == '=') ADVANCE(117); + if (lookahead == '>') ADVANCE(135); END_STATE(); - case 129: + case 133: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(130); + if (lookahead == '>') ADVANCE(134); END_STATE(); - case 130: + case 134: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 131: + case 135: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(114); + if (lookahead == '=') ADVANCE(118); END_STATE(); - case 132: + case 136: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 133: + case 137: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(115); + if (lookahead == '=') ADVANCE(119); END_STATE(); - case 134: + case 138: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 135: + case 139: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(125); - if (lookahead == '=') ADVANCE(111); + if (lookahead == '&') ADVANCE(129); + if (lookahead == '=') ADVANCE(115); END_STATE(); - case 136: + case 140: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(124); + if (lookahead == '&') ADVANCE(128); END_STATE(); - case 137: + case 141: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 138: + case 142: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(110); + if (lookahead == '=') ADVANCE(114); END_STATE(); - case 139: + case 143: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 140: + case 144: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(112); - if (lookahead == '|') ADVANCE(127); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '|') ADVANCE(131); END_STATE(); - case 141: + case 145: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(112); - if (lookahead == '|') ADVANCE(127); - if (lookahead == '}') ADVANCE(210); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '|') ADVANCE(131); + if (lookahead == '}') ADVANCE(230); END_STATE(); - case 142: + case 146: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(126); + if (lookahead == '|') ADVANCE(130); END_STATE(); - case 143: + case 147: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(126); - if (lookahead == '}') ADVANCE(210); + if (lookahead == '|') ADVANCE(130); + if (lookahead == '}') ADVANCE(230); END_STATE(); - case 144: + case 148: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(210); + if (lookahead == '}') ADVANCE(230); END_STATE(); - case 145: + case 149: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 146: + case 150: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(164); + if (lookahead == '+') ADVANCE(168); END_STATE(); - case 147: + case 151: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(164); - if (lookahead == '=') ADVANCE(105); + if (lookahead == '+') ADVANCE(168); + if (lookahead == '=') ADVANCE(109); END_STATE(); - case 148: + case 152: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 149: + case 153: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(165); + if (lookahead == '-') ADVANCE(169); END_STATE(); - case 150: + case 154: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(165); - if (lookahead == '=') ADVANCE(106); + if (lookahead == '-') ADVANCE(169); + if (lookahead == '=') ADVANCE(110); END_STATE(); - case 151: + case 155: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 152: + case 156: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(109); + if (lookahead == '=') ADVANCE(113); END_STATE(); - case 153: + case 157: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 154: + case 158: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(116); + if (lookahead == '=') ADVANCE(120); END_STATE(); - case 155: + case 159: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 156: + case 160: ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(157); + if (lookahead == '=') ADVANCE(161); END_STATE(); - case 157: + case 161: ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 158: + case 162: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(159); + if (lookahead == '=') ADVANCE(163); END_STATE(); - case 159: + case 163: ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 160: + case 164: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 161: + case 165: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 162: + case 166: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(119); + if (lookahead == '=') ADVANCE(123); END_STATE(); - case 163: + case 167: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 164: + case 168: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 165: + case 169: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 166: + case 170: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 167: + case 171: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 168: + case 172: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(170); - if (lookahead == '/') ADVANCE(172); + if (lookahead == '*') ADVANCE(174); + if (lookahead == '/') ADVANCE(176); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(172); + lookahead != '\\') ADVANCE(176); END_STATE(); - case 169: + case 173: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(169); - if (lookahead == '/') ADVANCE(172); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '/') ADVANCE(176); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(170); + lookahead != '\\') ADVANCE(174); END_STATE(); - case 170: + case 174: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(169); + if (lookahead == '*') ADVANCE(173); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(170); + lookahead != '\\') ADVANCE(174); END_STATE(); - case 171: + case 175: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '/') ADVANCE(168); + if (lookahead == '/') ADVANCE(172); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(171); + lookahead == 65279) ADVANCE(175); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(172); + lookahead != '\\') ADVANCE(176); END_STATE(); - case 172: + case 176: ACCEPT_TOKEN(aux_sym_string_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(172); + lookahead != '\\') ADVANCE(176); END_STATE(); - case 173: + case 177: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 174: + case 178: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 175: + case 179: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '/') ADVANCE(183); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(179); + lookahead != '\\') ADVANCE(183); END_STATE(); - case 176: + case 180: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '/') ADVANCE(179); + if (lookahead == '*') ADVANCE(180); + if (lookahead == '/') ADVANCE(183); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(177); + lookahead != '\\') ADVANCE(181); END_STATE(); - case 177: + case 181: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(176); + if (lookahead == '*') ADVANCE(180); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(177); + lookahead != '\\') ADVANCE(181); END_STATE(); - case 178: + case 182: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '/') ADVANCE(175); + if (lookahead == '/') ADVANCE(179); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(178); + lookahead == 65279) ADVANCE(182); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(179); + lookahead != '\\') ADVANCE(183); END_STATE(); - case 179: + case 183: ACCEPT_TOKEN(aux_sym_string_token2); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(179); + lookahead != '\\') ADVANCE(183); END_STATE(); - case 180: + case 184: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 181: + case 185: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\n') ADVANCE(167); + if (lookahead == '\n') ADVANCE(215); END_STATE(); - case 182: + case 186: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\n') ADVANCE(174); + if (lookahead == '\n') ADVANCE(178); END_STATE(); - case 183: + case 187: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(33); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(207); + if (lookahead == '\n') ADVANCE(171); END_STATE(); - case 184: + case 188: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(180); + if (lookahead == '\n') ADVANCE(222); END_STATE(); - case 185: + case 189: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(37); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(213); + END_STATE(); + case 190: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(184); END_STATE(); - case 186: + case 191: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(190); + END_STATE(); + case 192: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 187: + case 193: ACCEPT_TOKEN(sym_comment); if (lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(188); + lookahead == '}') ADVANCE(194); if (lookahead != 0 && - lookahead != '\n') ADVANCE(187); + lookahead != '\n') ADVANCE(193); END_STATE(); - case 188: + case 194: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(188); + lookahead != '\n') ADVANCE(194); END_STATE(); - case 189: + case 195: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 190: + case 196: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 191: + case 197: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(188); + if (lookahead == '*') ADVANCE(29); + if (lookahead == '/') ADVANCE(194); END_STATE(); - case 192: + case 198: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '[') ADVANCE(31); - if (lookahead == '\\') ADVANCE(63); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '[') ADVANCE(35); + if (lookahead == '\\') ADVANCE(67); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(192); + lookahead == 65279) ADVANCE(198); if (lookahead != 0 && - lookahead != '\n') ADVANCE(193); + lookahead != '\n') ADVANCE(199); END_STATE(); - case 193: + case 199: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(31); - if (lookahead == '\\') ADVANCE(63); + if (lookahead == '[') ADVANCE(35); + if (lookahead == '\\') ADVANCE(67); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(193); + lookahead != '/') ADVANCE(199); END_STATE(); - case 194: + case 200: ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(33); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + if (lookahead == '\\') ADVANCE(37); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(200); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '%' || '/' < lookahead) && @@ -4880,101 +4967,101 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != 160 && lookahead != 8203 && lookahead != 8288 && - lookahead != 65279) ADVANCE(207); + lookahead != 65279) ADVANCE(213); END_STATE(); - case 195: + case 201: ACCEPT_TOKEN(sym_number); END_STATE(); - case 196: + case 202: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(204); - if (lookahead == '0') ADVANCE(201); + if (lookahead == '.') ADVANCE(210); + if (lookahead == '0') ADVANCE(207); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(43); + lookahead == 'b') ADVANCE(47); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); + lookahead == 'e') ADVANCE(46); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(44); + lookahead == 'o') ADVANCE(48); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(51); - if (lookahead == '_') ADVANCE(47); - if (lookahead == 'n') ADVANCE(195); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(197); - END_STATE(); - case 197: + lookahead == 'x') ADVANCE(55); + if (lookahead == '_') ADVANCE(51); + if (lookahead == 'n') ADVANCE(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(203); + END_STATE(); + case 203: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(204); + if (lookahead == '.') ADVANCE(210); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (lookahead == '_') ADVANCE(45); - if (lookahead == 'n') ADVANCE(195); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(197); + lookahead == 'e') ADVANCE(46); + if (lookahead == '_') ADVANCE(49); + if (lookahead == 'n') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); END_STATE(); - case 198: + case 204: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(43); - if (lookahead == 'n') ADVANCE(195); + if (lookahead == '_') ADVANCE(47); + if (lookahead == 'n') ADVANCE(201); if (lookahead == '0' || - lookahead == '1') ADVANCE(198); + lookahead == '1') ADVANCE(204); END_STATE(); - case 199: + case 205: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(44); - if (lookahead == 'n') ADVANCE(195); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(199); + if (lookahead == '_') ADVANCE(48); + if (lookahead == 'n') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(205); END_STATE(); - case 200: + case 206: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(51); - if (lookahead == 'n') ADVANCE(195); + if (lookahead == '_') ADVANCE(55); + if (lookahead == 'n') ADVANCE(201); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(200); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); END_STATE(); - case 201: + case 207: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(47); - if (lookahead == 'n') ADVANCE(195); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); + if (lookahead == '_') ADVANCE(51); + if (lookahead == 'n') ADVANCE(201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(207); END_STATE(); - case 202: + case 208: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(202); + if (lookahead == '_') ADVANCE(52); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); END_STATE(); - case 203: + case 209: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (lookahead == '_') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); + lookahead == 'e') ADVANCE(46); + if (lookahead == '_') ADVANCE(50); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); END_STATE(); - case 204: + case 210: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); + lookahead == 'e') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); END_STATE(); - case 205: + case 211: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(99); - if (lookahead == '\\') ADVANCE(33); + if (lookahead == '-') ADVANCE(103); + if (lookahead == '\\') ADVANCE(37); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(205); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); if (lookahead != 0 && (lookahead < 0 || '~' < lookahead) && lookahead != 160 && lookahead != 8203 && lookahead != 8288 && - lookahead != 65279) ADVANCE(207); + lookahead != 65279) ADVANCE(213); END_STATE(); - case 206: + case 212: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(33); - if (lookahead == '{') ADVANCE(190); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == '{') ADVANCE(196); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '%' || '/' < lookahead) && @@ -4985,20 +5072,152 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != 160 && lookahead != 8203 && lookahead != 8288 && - lookahead != 65279) ADVANCE(207); + lookahead != 65279) ADVANCE(213); END_STATE(); - case 207: + case 213: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(33); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(207); + if (lookahead == '\\') ADVANCE(37); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(213); END_STATE(); - case 208: + case 214: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 209: + case 215: + ACCEPT_TOKEN(aux_sym_tsx_string_token1); + END_STATE(); + case 216: + ACCEPT_TOKEN(aux_sym_tsx_string_token1); + if (lookahead == '\n') ADVANCE(215); + if (lookahead == '/') ADVANCE(217); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(220); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(221); + END_STATE(); + case 217: + ACCEPT_TOKEN(aux_sym_tsx_string_token1); + if (lookahead == '*') ADVANCE(219); + if (lookahead == '/') ADVANCE(221); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(221); + END_STATE(); + case 218: + ACCEPT_TOKEN(aux_sym_tsx_string_token1); + if (lookahead == '*') ADVANCE(218); + if (lookahead == '/') ADVANCE(221); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(219); + END_STATE(); + case 219: + ACCEPT_TOKEN(aux_sym_tsx_string_token1); + if (lookahead == '*') ADVANCE(218); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(219); + END_STATE(); + case 220: + ACCEPT_TOKEN(aux_sym_tsx_string_token1); + if (lookahead == '/') ADVANCE(217); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(220); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(221); + END_STATE(); + case 221: + ACCEPT_TOKEN(aux_sym_tsx_string_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(221); + END_STATE(); + case 222: + ACCEPT_TOKEN(aux_sym_tsx_string_token2); + END_STATE(); + case 223: + ACCEPT_TOKEN(aux_sym_tsx_string_token2); + if (lookahead == '\n') ADVANCE(222); + if (lookahead == '/') ADVANCE(224); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(227); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(228); + END_STATE(); + case 224: + ACCEPT_TOKEN(aux_sym_tsx_string_token2); + if (lookahead == '*') ADVANCE(226); + if (lookahead == '/') ADVANCE(228); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(228); + END_STATE(); + case 225: + ACCEPT_TOKEN(aux_sym_tsx_string_token2); + if (lookahead == '*') ADVANCE(225); + if (lookahead == '/') ADVANCE(228); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(226); + END_STATE(); + case 226: + ACCEPT_TOKEN(aux_sym_tsx_string_token2); + if (lookahead == '*') ADVANCE(225); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(226); + END_STATE(); + case 227: + ACCEPT_TOKEN(aux_sym_tsx_string_token2); + if (lookahead == '/') ADVANCE(224); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(227); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(228); + END_STATE(); + case 228: + ACCEPT_TOKEN(aux_sym_tsx_string_token2); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(228); + END_STATE(); + case 229: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 210: + case 230: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); default: @@ -5999,3325 +6218,3327 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 66}, - [2] = {.lex_state = 66}, - [3] = {.lex_state = 66}, - [4] = {.lex_state = 66}, - [5] = {.lex_state = 66}, - [6] = {.lex_state = 66}, - [7] = {.lex_state = 66}, - [8] = {.lex_state = 66}, - [9] = {.lex_state = 66}, - [10] = {.lex_state = 66}, - [11] = {.lex_state = 66}, - [12] = {.lex_state = 66}, - [13] = {.lex_state = 66}, - [14] = {.lex_state = 66}, - [15] = {.lex_state = 66}, - [16] = {.lex_state = 66}, - [17] = {.lex_state = 66}, - [18] = {.lex_state = 66}, - [19] = {.lex_state = 66}, - [20] = {.lex_state = 66}, - [21] = {.lex_state = 66}, - [22] = {.lex_state = 66}, - [23] = {.lex_state = 66}, - [24] = {.lex_state = 66}, - [25] = {.lex_state = 66}, - [26] = {.lex_state = 66}, - [27] = {.lex_state = 66}, - [28] = {.lex_state = 66}, - [29] = {.lex_state = 66}, - [30] = {.lex_state = 66}, - [31] = {.lex_state = 66}, - [32] = {.lex_state = 66}, - [33] = {.lex_state = 66}, - [34] = {.lex_state = 66}, - [35] = {.lex_state = 66}, - [36] = {.lex_state = 66}, - [37] = {.lex_state = 66}, - [38] = {.lex_state = 66}, - [39] = {.lex_state = 66}, - [40] = {.lex_state = 66}, - [41] = {.lex_state = 66}, - [42] = {.lex_state = 66}, - [43] = {.lex_state = 66}, - [44] = {.lex_state = 66}, - [45] = {.lex_state = 66}, - [46] = {.lex_state = 66}, - [47] = {.lex_state = 66}, - [48] = {.lex_state = 66}, - [49] = {.lex_state = 66}, - [50] = {.lex_state = 66}, - [51] = {.lex_state = 66}, - [52] = {.lex_state = 66}, - [53] = {.lex_state = 66}, - [54] = {.lex_state = 66}, - [55] = {.lex_state = 66}, - [56] = {.lex_state = 66}, - [57] = {.lex_state = 14}, - [58] = {.lex_state = 14}, - [59] = {.lex_state = 14}, - [60] = {.lex_state = 14}, - [61] = {.lex_state = 14}, - [62] = {.lex_state = 14}, - [63] = {.lex_state = 14}, - [64] = {.lex_state = 14}, - [65] = {.lex_state = 14}, - [66] = {.lex_state = 65, .external_lex_state = 2}, - [67] = {.lex_state = 65, .external_lex_state = 3}, - [68] = {.lex_state = 65, .external_lex_state = 2}, - [69] = {.lex_state = 14}, - [70] = {.lex_state = 14}, - [71] = {.lex_state = 14}, - [72] = {.lex_state = 14}, - [73] = {.lex_state = 14}, - [74] = {.lex_state = 14}, - [75] = {.lex_state = 14}, - [76] = {.lex_state = 65, .external_lex_state = 3}, - [77] = {.lex_state = 65, .external_lex_state = 2}, - [78] = {.lex_state = 8, .external_lex_state = 2}, - [79] = {.lex_state = 65, .external_lex_state = 3}, - [80] = {.lex_state = 65, .external_lex_state = 3}, - [81] = {.lex_state = 65, .external_lex_state = 3}, - [82] = {.lex_state = 65, .external_lex_state = 3}, - [83] = {.lex_state = 65, .external_lex_state = 3}, - [84] = {.lex_state = 65, .external_lex_state = 3}, - [85] = {.lex_state = 65, .external_lex_state = 3}, - [86] = {.lex_state = 65, .external_lex_state = 3}, - [87] = {.lex_state = 65, .external_lex_state = 3}, - [88] = {.lex_state = 65, .external_lex_state = 3}, - [89] = {.lex_state = 65, .external_lex_state = 3}, - [90] = {.lex_state = 65, .external_lex_state = 3}, - [91] = {.lex_state = 65, .external_lex_state = 3}, - [92] = {.lex_state = 65, .external_lex_state = 3}, - [93] = {.lex_state = 65, .external_lex_state = 3}, - [94] = {.lex_state = 65, .external_lex_state = 3}, - [95] = {.lex_state = 65, .external_lex_state = 3}, - [96] = {.lex_state = 65, .external_lex_state = 3}, - [97] = {.lex_state = 65, .external_lex_state = 3}, - [98] = {.lex_state = 65, .external_lex_state = 3}, - [99] = {.lex_state = 65, .external_lex_state = 3}, - [100] = {.lex_state = 65, .external_lex_state = 3}, - [101] = {.lex_state = 65, .external_lex_state = 3}, - [102] = {.lex_state = 65, .external_lex_state = 3}, - [103] = {.lex_state = 65, .external_lex_state = 3}, - [104] = {.lex_state = 65, .external_lex_state = 3}, - [105] = {.lex_state = 65, .external_lex_state = 3}, - [106] = {.lex_state = 66}, - [107] = {.lex_state = 66}, - [108] = {.lex_state = 66}, - [109] = {.lex_state = 66}, - [110] = {.lex_state = 66}, - [111] = {.lex_state = 66}, - [112] = {.lex_state = 66, .external_lex_state = 4}, - [113] = {.lex_state = 66}, - [114] = {.lex_state = 66}, - [115] = {.lex_state = 66}, - [116] = {.lex_state = 6, .external_lex_state = 3}, - [117] = {.lex_state = 6, .external_lex_state = 3}, - [118] = {.lex_state = 66}, - [119] = {.lex_state = 6, .external_lex_state = 3}, - [120] = {.lex_state = 66}, - [121] = {.lex_state = 66}, - [122] = {.lex_state = 66}, - [123] = {.lex_state = 66}, - [124] = {.lex_state = 66}, - [125] = {.lex_state = 66}, - [126] = {.lex_state = 66}, - [127] = {.lex_state = 66}, - [128] = {.lex_state = 66}, - [129] = {.lex_state = 66}, - [130] = {.lex_state = 66}, - [131] = {.lex_state = 66}, - [132] = {.lex_state = 66}, - [133] = {.lex_state = 66}, - [134] = {.lex_state = 6, .external_lex_state = 3}, - [135] = {.lex_state = 66}, - [136] = {.lex_state = 6, .external_lex_state = 3}, - [137] = {.lex_state = 66}, - [138] = {.lex_state = 6, .external_lex_state = 3}, - [139] = {.lex_state = 66}, - [140] = {.lex_state = 6, .external_lex_state = 3}, - [141] = {.lex_state = 66}, - [142] = {.lex_state = 66}, - [143] = {.lex_state = 6, .external_lex_state = 3}, - [144] = {.lex_state = 66}, - [145] = {.lex_state = 6, .external_lex_state = 3}, - [146] = {.lex_state = 66}, - [147] = {.lex_state = 66}, - [148] = {.lex_state = 66}, - [149] = {.lex_state = 66}, - [150] = {.lex_state = 66}, - [151] = {.lex_state = 66}, - [152] = {.lex_state = 66}, - [153] = {.lex_state = 66, .external_lex_state = 4}, - [154] = {.lex_state = 66}, - [155] = {.lex_state = 66}, - [156] = {.lex_state = 6, .external_lex_state = 3}, - [157] = {.lex_state = 6, .external_lex_state = 3}, - [158] = {.lex_state = 66}, - [159] = {.lex_state = 6, .external_lex_state = 3}, - [160] = {.lex_state = 66}, - [161] = {.lex_state = 66}, - [162] = {.lex_state = 66}, - [163] = {.lex_state = 66}, - [164] = {.lex_state = 66}, - [165] = {.lex_state = 66}, - [166] = {.lex_state = 66}, - [167] = {.lex_state = 66}, - [168] = {.lex_state = 66}, - [169] = {.lex_state = 66}, - [170] = {.lex_state = 66}, - [171] = {.lex_state = 66}, - [172] = {.lex_state = 66}, - [173] = {.lex_state = 66}, - [174] = {.lex_state = 66}, - [175] = {.lex_state = 66}, - [176] = {.lex_state = 66}, - [177] = {.lex_state = 66}, - [178] = {.lex_state = 66}, - [179] = {.lex_state = 66}, - [180] = {.lex_state = 66}, - [181] = {.lex_state = 66}, - [182] = {.lex_state = 66}, - [183] = {.lex_state = 66}, - [184] = {.lex_state = 66}, - [185] = {.lex_state = 66}, - [186] = {.lex_state = 66}, - [187] = {.lex_state = 66}, - [188] = {.lex_state = 66}, - [189] = {.lex_state = 66}, - [190] = {.lex_state = 66}, - [191] = {.lex_state = 66}, - [192] = {.lex_state = 66}, - [193] = {.lex_state = 66}, - [194] = {.lex_state = 66}, - [195] = {.lex_state = 66}, - [196] = {.lex_state = 66}, - [197] = {.lex_state = 66}, - [198] = {.lex_state = 66}, - [199] = {.lex_state = 66}, - [200] = {.lex_state = 66}, - [201] = {.lex_state = 66}, - [202] = {.lex_state = 66}, - [203] = {.lex_state = 66}, - [204] = {.lex_state = 66}, - [205] = {.lex_state = 66}, - [206] = {.lex_state = 66}, - [207] = {.lex_state = 66}, - [208] = {.lex_state = 66}, - [209] = {.lex_state = 66}, - [210] = {.lex_state = 66}, - [211] = {.lex_state = 66}, - [212] = {.lex_state = 66}, - [213] = {.lex_state = 66}, - [214] = {.lex_state = 66}, - [215] = {.lex_state = 66}, - [216] = {.lex_state = 66}, - [217] = {.lex_state = 66}, - [218] = {.lex_state = 66}, - [219] = {.lex_state = 66}, - [220] = {.lex_state = 66}, - [221] = {.lex_state = 66}, - [222] = {.lex_state = 66}, - [223] = {.lex_state = 66}, - [224] = {.lex_state = 66}, - [225] = {.lex_state = 66}, - [226] = {.lex_state = 66}, - [227] = {.lex_state = 66}, - [228] = {.lex_state = 66}, - [229] = {.lex_state = 66}, - [230] = {.lex_state = 66}, - [231] = {.lex_state = 66}, - [232] = {.lex_state = 66}, - [233] = {.lex_state = 66}, - [234] = {.lex_state = 66}, - [235] = {.lex_state = 66}, - [236] = {.lex_state = 66}, - [237] = {.lex_state = 66}, - [238] = {.lex_state = 66}, - [239] = {.lex_state = 66}, - [240] = {.lex_state = 66}, - [241] = {.lex_state = 66}, - [242] = {.lex_state = 66}, - [243] = {.lex_state = 66}, - [244] = {.lex_state = 66}, - [245] = {.lex_state = 66}, - [246] = {.lex_state = 66}, - [247] = {.lex_state = 66}, - [248] = {.lex_state = 66}, - [249] = {.lex_state = 66}, - [250] = {.lex_state = 66}, - [251] = {.lex_state = 66}, - [252] = {.lex_state = 66}, - [253] = {.lex_state = 66}, - [254] = {.lex_state = 6, .external_lex_state = 3}, - [255] = {.lex_state = 66}, - [256] = {.lex_state = 66}, - [257] = {.lex_state = 66}, - [258] = {.lex_state = 66}, - [259] = {.lex_state = 66}, - [260] = {.lex_state = 66}, - [261] = {.lex_state = 66}, - [262] = {.lex_state = 66}, - [263] = {.lex_state = 66}, - [264] = {.lex_state = 66}, - [265] = {.lex_state = 66}, - [266] = {.lex_state = 66}, - [267] = {.lex_state = 66}, - [268] = {.lex_state = 66}, - [269] = {.lex_state = 66}, - [270] = {.lex_state = 66}, - [271] = {.lex_state = 66}, - [272] = {.lex_state = 66}, - [273] = {.lex_state = 66}, - [274] = {.lex_state = 66}, - [275] = {.lex_state = 66}, - [276] = {.lex_state = 66}, - [277] = {.lex_state = 66}, - [278] = {.lex_state = 66}, - [279] = {.lex_state = 66}, - [280] = {.lex_state = 66}, - [281] = {.lex_state = 66}, - [282] = {.lex_state = 66}, - [283] = {.lex_state = 66}, - [284] = {.lex_state = 66}, - [285] = {.lex_state = 66}, - [286] = {.lex_state = 66}, - [287] = {.lex_state = 66}, - [288] = {.lex_state = 66}, - [289] = {.lex_state = 66}, - [290] = {.lex_state = 66}, - [291] = {.lex_state = 66}, - [292] = {.lex_state = 66}, - [293] = {.lex_state = 66}, - [294] = {.lex_state = 66}, - [295] = {.lex_state = 66}, - [296] = {.lex_state = 66}, - [297] = {.lex_state = 66}, - [298] = {.lex_state = 66}, - [299] = {.lex_state = 66}, - [300] = {.lex_state = 66}, - [301] = {.lex_state = 66}, - [302] = {.lex_state = 66}, - [303] = {.lex_state = 66}, - [304] = {.lex_state = 66}, - [305] = {.lex_state = 66}, - [306] = {.lex_state = 66}, - [307] = {.lex_state = 66}, - [308] = {.lex_state = 66}, - [309] = {.lex_state = 66}, - [310] = {.lex_state = 66}, - [311] = {.lex_state = 66}, - [312] = {.lex_state = 66}, - [313] = {.lex_state = 66}, - [314] = {.lex_state = 66}, - [315] = {.lex_state = 66}, - [316] = {.lex_state = 66}, - [317] = {.lex_state = 66}, - [318] = {.lex_state = 66}, - [319] = {.lex_state = 66}, - [320] = {.lex_state = 66}, - [321] = {.lex_state = 66}, - [322] = {.lex_state = 66}, - [323] = {.lex_state = 66}, - [324] = {.lex_state = 66}, - [325] = {.lex_state = 66}, - [326] = {.lex_state = 66}, - [327] = {.lex_state = 66}, - [328] = {.lex_state = 66}, - [329] = {.lex_state = 66}, - [330] = {.lex_state = 66}, - [331] = {.lex_state = 66}, - [332] = {.lex_state = 66}, - [333] = {.lex_state = 66}, - [334] = {.lex_state = 66}, - [335] = {.lex_state = 66}, - [336] = {.lex_state = 66}, - [337] = {.lex_state = 66}, - [338] = {.lex_state = 66}, - [339] = {.lex_state = 66}, - [340] = {.lex_state = 66}, - [341] = {.lex_state = 66}, - [342] = {.lex_state = 66}, - [343] = {.lex_state = 66}, - [344] = {.lex_state = 66}, - [345] = {.lex_state = 66}, - [346] = {.lex_state = 66}, - [347] = {.lex_state = 66}, - [348] = {.lex_state = 66}, - [349] = {.lex_state = 66}, - [350] = {.lex_state = 66}, - [351] = {.lex_state = 66}, - [352] = {.lex_state = 66}, - [353] = {.lex_state = 66}, - [354] = {.lex_state = 66}, - [355] = {.lex_state = 66}, - [356] = {.lex_state = 66}, - [357] = {.lex_state = 66}, - [358] = {.lex_state = 66}, - [359] = {.lex_state = 66}, - [360] = {.lex_state = 66}, - [361] = {.lex_state = 66}, - [362] = {.lex_state = 66}, - [363] = {.lex_state = 66}, - [364] = {.lex_state = 66}, - [365] = {.lex_state = 66}, - [366] = {.lex_state = 66}, - [367] = {.lex_state = 66}, - [368] = {.lex_state = 66}, - [369] = {.lex_state = 66}, - [370] = {.lex_state = 66}, - [371] = {.lex_state = 66}, - [372] = {.lex_state = 66}, - [373] = {.lex_state = 66}, - [374] = {.lex_state = 66}, - [375] = {.lex_state = 66}, - [376] = {.lex_state = 66}, - [377] = {.lex_state = 66}, - [378] = {.lex_state = 66}, - [379] = {.lex_state = 66}, - [380] = {.lex_state = 66}, - [381] = {.lex_state = 66}, - [382] = {.lex_state = 66}, - [383] = {.lex_state = 66}, - [384] = {.lex_state = 66}, - [385] = {.lex_state = 66}, - [386] = {.lex_state = 6, .external_lex_state = 3}, - [387] = {.lex_state = 66}, - [388] = {.lex_state = 66}, - [389] = {.lex_state = 66}, - [390] = {.lex_state = 66}, - [391] = {.lex_state = 66}, - [392] = {.lex_state = 66}, - [393] = {.lex_state = 66}, - [394] = {.lex_state = 66}, - [395] = {.lex_state = 66}, - [396] = {.lex_state = 66}, - [397] = {.lex_state = 66}, - [398] = {.lex_state = 66}, - [399] = {.lex_state = 66}, - [400] = {.lex_state = 66}, - [401] = {.lex_state = 6, .external_lex_state = 3}, - [402] = {.lex_state = 66}, - [403] = {.lex_state = 66}, - [404] = {.lex_state = 66}, - [405] = {.lex_state = 66}, - [406] = {.lex_state = 66}, - [407] = {.lex_state = 66}, - [408] = {.lex_state = 66}, - [409] = {.lex_state = 66}, - [410] = {.lex_state = 66}, - [411] = {.lex_state = 66}, - [412] = {.lex_state = 66}, - [413] = {.lex_state = 66}, - [414] = {.lex_state = 66}, - [415] = {.lex_state = 66}, - [416] = {.lex_state = 66}, - [417] = {.lex_state = 66}, - [418] = {.lex_state = 66}, - [419] = {.lex_state = 66}, - [420] = {.lex_state = 66}, - [421] = {.lex_state = 6, .external_lex_state = 3}, - [422] = {.lex_state = 6, .external_lex_state = 3}, - [423] = {.lex_state = 6, .external_lex_state = 3}, - [424] = {.lex_state = 6, .external_lex_state = 3}, - [425] = {.lex_state = 6, .external_lex_state = 3}, - [426] = {.lex_state = 6, .external_lex_state = 3}, - [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 = 66}, - [431] = {.lex_state = 66}, - [432] = {.lex_state = 66}, - [433] = {.lex_state = 66}, - [434] = {.lex_state = 66}, - [435] = {.lex_state = 6, .external_lex_state = 2}, - [436] = {.lex_state = 66}, - [437] = {.lex_state = 66}, - [438] = {.lex_state = 66}, - [439] = {.lex_state = 66}, - [440] = {.lex_state = 66}, - [441] = {.lex_state = 66}, - [442] = {.lex_state = 66}, - [443] = {.lex_state = 66}, - [444] = {.lex_state = 66}, - [445] = {.lex_state = 66}, - [446] = {.lex_state = 66}, - [447] = {.lex_state = 66}, - [448] = {.lex_state = 66}, - [449] = {.lex_state = 66}, - [450] = {.lex_state = 66}, - [451] = {.lex_state = 66}, - [452] = {.lex_state = 66}, - [453] = {.lex_state = 6, .external_lex_state = 3}, - [454] = {.lex_state = 6, .external_lex_state = 2}, - [455] = {.lex_state = 7, .external_lex_state = 2}, - [456] = {.lex_state = 6, .external_lex_state = 3}, - [457] = {.lex_state = 6, .external_lex_state = 3}, - [458] = {.lex_state = 6, .external_lex_state = 2}, - [459] = {.lex_state = 6, .external_lex_state = 3}, - [460] = {.lex_state = 6, .external_lex_state = 2}, - [461] = {.lex_state = 66}, - [462] = {.lex_state = 6, .external_lex_state = 3}, - [463] = {.lex_state = 6, .external_lex_state = 3}, - [464] = {.lex_state = 6, .external_lex_state = 3}, - [465] = {.lex_state = 6, .external_lex_state = 3}, - [466] = {.lex_state = 6, .external_lex_state = 3}, - [467] = {.lex_state = 6, .external_lex_state = 3}, - [468] = {.lex_state = 66, .external_lex_state = 4}, - [469] = {.lex_state = 6, .external_lex_state = 2}, - [470] = {.lex_state = 66}, - [471] = {.lex_state = 66, .external_lex_state = 4}, - [472] = {.lex_state = 6, .external_lex_state = 2}, - [473] = {.lex_state = 7, .external_lex_state = 2}, - [474] = {.lex_state = 6, .external_lex_state = 2}, - [475] = {.lex_state = 66}, - [476] = {.lex_state = 6, .external_lex_state = 2}, - [477] = {.lex_state = 6, .external_lex_state = 2}, - [478] = {.lex_state = 6, .external_lex_state = 2}, - [479] = {.lex_state = 66}, - [480] = {.lex_state = 6, .external_lex_state = 2}, - [481] = {.lex_state = 66}, - [482] = {.lex_state = 66}, - [483] = {.lex_state = 15}, - [484] = {.lex_state = 66, .external_lex_state = 4}, - [485] = {.lex_state = 15}, - [486] = {.lex_state = 66}, - [487] = {.lex_state = 15}, - [488] = {.lex_state = 6, .external_lex_state = 3}, - [489] = {.lex_state = 66, .external_lex_state = 4}, - [490] = {.lex_state = 66, .external_lex_state = 4}, - [491] = {.lex_state = 66}, - [492] = {.lex_state = 66, .external_lex_state = 4}, - [493] = {.lex_state = 66, .external_lex_state = 4}, - [494] = {.lex_state = 66}, - [495] = {.lex_state = 66}, - [496] = {.lex_state = 6, .external_lex_state = 2}, - [497] = {.lex_state = 66}, - [498] = {.lex_state = 15}, - [499] = {.lex_state = 15}, - [500] = {.lex_state = 66}, - [501] = {.lex_state = 66, .external_lex_state = 4}, - [502] = {.lex_state = 66}, - [503] = {.lex_state = 66}, - [504] = {.lex_state = 66}, - [505] = {.lex_state = 6, .external_lex_state = 2}, - [506] = {.lex_state = 66}, - [507] = {.lex_state = 6, .external_lex_state = 2}, - [508] = {.lex_state = 66}, - [509] = {.lex_state = 66}, - [510] = {.lex_state = 66}, - [511] = {.lex_state = 66}, - [512] = {.lex_state = 6, .external_lex_state = 2}, - [513] = {.lex_state = 6, .external_lex_state = 2}, - [514] = {.lex_state = 66, .external_lex_state = 4}, - [515] = {.lex_state = 66, .external_lex_state = 4}, - [516] = {.lex_state = 66}, - [517] = {.lex_state = 66, .external_lex_state = 4}, - [518] = {.lex_state = 66, .external_lex_state = 4}, - [519] = {.lex_state = 66}, - [520] = {.lex_state = 66}, - [521] = {.lex_state = 66}, - [522] = {.lex_state = 66}, - [523] = {.lex_state = 66}, - [524] = {.lex_state = 66, .external_lex_state = 4}, - [525] = {.lex_state = 66}, - [526] = {.lex_state = 66, .external_lex_state = 4}, - [527] = {.lex_state = 66, .external_lex_state = 4}, - [528] = {.lex_state = 66, .external_lex_state = 4}, - [529] = {.lex_state = 66, .external_lex_state = 4}, - [530] = {.lex_state = 66, .external_lex_state = 4}, - [531] = {.lex_state = 66, .external_lex_state = 4}, - [532] = {.lex_state = 66, .external_lex_state = 4}, - [533] = {.lex_state = 66}, - [534] = {.lex_state = 66}, - [535] = {.lex_state = 66}, - [536] = {.lex_state = 66}, - [537] = {.lex_state = 66}, - [538] = {.lex_state = 66}, - [539] = {.lex_state = 66}, - [540] = {.lex_state = 66}, - [541] = {.lex_state = 66}, - [542] = {.lex_state = 66}, - [543] = {.lex_state = 66}, - [544] = {.lex_state = 66}, - [545] = {.lex_state = 66}, - [546] = {.lex_state = 66}, - [547] = {.lex_state = 66}, - [548] = {.lex_state = 66}, - [549] = {.lex_state = 66}, - [550] = {.lex_state = 66}, - [551] = {.lex_state = 66}, - [552] = {.lex_state = 66}, - [553] = {.lex_state = 66}, - [554] = {.lex_state = 66}, - [555] = {.lex_state = 66}, - [556] = {.lex_state = 66}, - [557] = {.lex_state = 66}, - [558] = {.lex_state = 66}, - [559] = {.lex_state = 66}, - [560] = {.lex_state = 66}, - [561] = {.lex_state = 66}, - [562] = {.lex_state = 66}, - [563] = {.lex_state = 66}, - [564] = {.lex_state = 66}, - [565] = {.lex_state = 66}, - [566] = {.lex_state = 66}, - [567] = {.lex_state = 66}, - [568] = {.lex_state = 66}, - [569] = {.lex_state = 66}, - [570] = {.lex_state = 66}, - [571] = {.lex_state = 66}, - [572] = {.lex_state = 66}, - [573] = {.lex_state = 66}, - [574] = {.lex_state = 66}, - [575] = {.lex_state = 66}, - [576] = {.lex_state = 66}, - [577] = {.lex_state = 66}, - [578] = {.lex_state = 66}, - [579] = {.lex_state = 66}, - [580] = {.lex_state = 66}, - [581] = {.lex_state = 66}, - [582] = {.lex_state = 66}, - [583] = {.lex_state = 66}, - [584] = {.lex_state = 66}, - [585] = {.lex_state = 66}, - [586] = {.lex_state = 66}, - [587] = {.lex_state = 66}, - [588] = {.lex_state = 66}, - [589] = {.lex_state = 66}, - [590] = {.lex_state = 66}, - [591] = {.lex_state = 66}, - [592] = {.lex_state = 66}, - [593] = {.lex_state = 66}, - [594] = {.lex_state = 66}, - [595] = {.lex_state = 66}, - [596] = {.lex_state = 66}, - [597] = {.lex_state = 66}, - [598] = {.lex_state = 66}, - [599] = {.lex_state = 66}, - [600] = {.lex_state = 66}, - [601] = {.lex_state = 66}, - [602] = {.lex_state = 66}, - [603] = {.lex_state = 66}, - [604] = {.lex_state = 66}, - [605] = {.lex_state = 66}, - [606] = {.lex_state = 66}, - [607] = {.lex_state = 66}, - [608] = {.lex_state = 66}, - [609] = {.lex_state = 66}, - [610] = {.lex_state = 66}, - [611] = {.lex_state = 66}, - [612] = {.lex_state = 66}, - [613] = {.lex_state = 66}, - [614] = {.lex_state = 66}, - [615] = {.lex_state = 66}, - [616] = {.lex_state = 66}, - [617] = {.lex_state = 66}, - [618] = {.lex_state = 66}, - [619] = {.lex_state = 6, .external_lex_state = 2}, - [620] = {.lex_state = 6, .external_lex_state = 3}, - [621] = {.lex_state = 6, .external_lex_state = 3}, - [622] = {.lex_state = 6, .external_lex_state = 3}, - [623] = {.lex_state = 6, .external_lex_state = 3}, - [624] = {.lex_state = 6, .external_lex_state = 3}, - [625] = {.lex_state = 6, .external_lex_state = 3}, - [626] = {.lex_state = 6, .external_lex_state = 3}, - [627] = {.lex_state = 6, .external_lex_state = 2}, - [628] = {.lex_state = 6, .external_lex_state = 2}, - [629] = {.lex_state = 7, .external_lex_state = 2}, - [630] = {.lex_state = 6, .external_lex_state = 2}, - [631] = {.lex_state = 6, .external_lex_state = 3}, - [632] = {.lex_state = 6, .external_lex_state = 3}, - [633] = {.lex_state = 6, .external_lex_state = 3}, - [634] = {.lex_state = 6, .external_lex_state = 3}, - [635] = {.lex_state = 6, .external_lex_state = 3}, - [636] = {.lex_state = 6, .external_lex_state = 3}, - [637] = {.lex_state = 6, .external_lex_state = 3}, - [638] = {.lex_state = 6, .external_lex_state = 3}, - [639] = {.lex_state = 6, .external_lex_state = 3}, - [640] = {.lex_state = 7, .external_lex_state = 2}, - [641] = {.lex_state = 6, .external_lex_state = 2}, - [642] = {.lex_state = 6, .external_lex_state = 2}, - [643] = {.lex_state = 6, .external_lex_state = 2}, - [644] = {.lex_state = 6, .external_lex_state = 2}, - [645] = {.lex_state = 6, .external_lex_state = 2}, - [646] = {.lex_state = 6, .external_lex_state = 2}, - [647] = {.lex_state = 6, .external_lex_state = 2}, - [648] = {.lex_state = 6, .external_lex_state = 3}, - [649] = {.lex_state = 6, .external_lex_state = 2}, - [650] = {.lex_state = 6, .external_lex_state = 2}, - [651] = {.lex_state = 6, .external_lex_state = 2}, - [652] = {.lex_state = 6, .external_lex_state = 2}, - [653] = {.lex_state = 6, .external_lex_state = 2}, - [654] = {.lex_state = 6, .external_lex_state = 3}, - [655] = {.lex_state = 6, .external_lex_state = 2}, - [656] = {.lex_state = 6, .external_lex_state = 2}, - [657] = {.lex_state = 6, .external_lex_state = 3}, - [658] = {.lex_state = 6, .external_lex_state = 2}, - [659] = {.lex_state = 6, .external_lex_state = 3}, - [660] = {.lex_state = 6, .external_lex_state = 3}, - [661] = {.lex_state = 6, .external_lex_state = 2}, - [662] = {.lex_state = 6, .external_lex_state = 2}, - [663] = {.lex_state = 6, .external_lex_state = 2}, - [664] = {.lex_state = 6, .external_lex_state = 2}, - [665] = {.lex_state = 6, .external_lex_state = 3}, - [666] = {.lex_state = 6, .external_lex_state = 2}, - [667] = {.lex_state = 6, .external_lex_state = 3}, - [668] = {.lex_state = 6, .external_lex_state = 2}, - [669] = {.lex_state = 6, .external_lex_state = 2}, - [670] = {.lex_state = 6, .external_lex_state = 3}, - [671] = {.lex_state = 6, .external_lex_state = 2}, - [672] = {.lex_state = 6, .external_lex_state = 3}, - [673] = {.lex_state = 6, .external_lex_state = 3}, - [674] = {.lex_state = 6, .external_lex_state = 3}, - [675] = {.lex_state = 6, .external_lex_state = 3}, - [676] = {.lex_state = 6, .external_lex_state = 3}, - [677] = {.lex_state = 6, .external_lex_state = 3}, - [678] = {.lex_state = 6, .external_lex_state = 3}, - [679] = {.lex_state = 6, .external_lex_state = 3}, - [680] = {.lex_state = 6, .external_lex_state = 3}, - [681] = {.lex_state = 6, .external_lex_state = 2}, - [682] = {.lex_state = 6, .external_lex_state = 3}, - [683] = {.lex_state = 6, .external_lex_state = 2}, - [684] = {.lex_state = 6, .external_lex_state = 3}, - [685] = {.lex_state = 7, .external_lex_state = 2}, - [686] = {.lex_state = 6, .external_lex_state = 2}, - [687] = {.lex_state = 6, .external_lex_state = 2}, - [688] = {.lex_state = 6, .external_lex_state = 2}, - [689] = {.lex_state = 6, .external_lex_state = 2}, - [690] = {.lex_state = 6, .external_lex_state = 2}, - [691] = {.lex_state = 6, .external_lex_state = 3}, - [692] = {.lex_state = 6, .external_lex_state = 2}, - [693] = {.lex_state = 6, .external_lex_state = 3}, - [694] = {.lex_state = 7, .external_lex_state = 2}, - [695] = {.lex_state = 7, .external_lex_state = 2}, - [696] = {.lex_state = 6, .external_lex_state = 2}, - [697] = {.lex_state = 7, .external_lex_state = 2}, - [698] = {.lex_state = 6, .external_lex_state = 2}, - [699] = {.lex_state = 6, .external_lex_state = 2}, - [700] = {.lex_state = 6, .external_lex_state = 3}, - [701] = {.lex_state = 6, .external_lex_state = 3}, - [702] = {.lex_state = 6, .external_lex_state = 3}, - [703] = {.lex_state = 6, .external_lex_state = 2}, - [704] = {.lex_state = 66}, - [705] = {.lex_state = 66}, - [706] = {.lex_state = 6, .external_lex_state = 2}, - [707] = {.lex_state = 6, .external_lex_state = 3}, - [708] = {.lex_state = 66}, - [709] = {.lex_state = 6, .external_lex_state = 3}, - [710] = {.lex_state = 6, .external_lex_state = 2}, - [711] = {.lex_state = 6, .external_lex_state = 3}, - [712] = {.lex_state = 6, .external_lex_state = 3}, - [713] = {.lex_state = 6, .external_lex_state = 3}, - [714] = {.lex_state = 66}, - [715] = {.lex_state = 6, .external_lex_state = 3}, - [716] = {.lex_state = 6, .external_lex_state = 3}, - [717] = {.lex_state = 6, .external_lex_state = 3}, - [718] = {.lex_state = 6, .external_lex_state = 3}, - [719] = {.lex_state = 6, .external_lex_state = 3}, - [720] = {.lex_state = 6, .external_lex_state = 3}, - [721] = {.lex_state = 6, .external_lex_state = 3}, - [722] = {.lex_state = 6, .external_lex_state = 3}, - [723] = {.lex_state = 6, .external_lex_state = 2}, - [724] = {.lex_state = 6, .external_lex_state = 3}, - [725] = {.lex_state = 6, .external_lex_state = 3}, - [726] = {.lex_state = 7, .external_lex_state = 2}, - [727] = {.lex_state = 6, .external_lex_state = 2}, - [728] = {.lex_state = 7, .external_lex_state = 2}, - [729] = {.lex_state = 6, .external_lex_state = 3}, - [730] = {.lex_state = 6, .external_lex_state = 3}, - [731] = {.lex_state = 6, .external_lex_state = 2}, - [732] = {.lex_state = 6, .external_lex_state = 3}, - [733] = {.lex_state = 6, .external_lex_state = 3}, - [734] = {.lex_state = 6, .external_lex_state = 3}, - [735] = {.lex_state = 66}, - [736] = {.lex_state = 6, .external_lex_state = 3}, - [737] = {.lex_state = 66}, - [738] = {.lex_state = 6, .external_lex_state = 3}, - [739] = {.lex_state = 6, .external_lex_state = 3}, - [740] = {.lex_state = 66}, - [741] = {.lex_state = 6, .external_lex_state = 3}, - [742] = {.lex_state = 6, .external_lex_state = 2}, - [743] = {.lex_state = 6, .external_lex_state = 2}, - [744] = {.lex_state = 6, .external_lex_state = 3}, - [745] = {.lex_state = 7, .external_lex_state = 2}, - [746] = {.lex_state = 6, .external_lex_state = 2}, - [747] = {.lex_state = 7, .external_lex_state = 2}, - [748] = {.lex_state = 6, .external_lex_state = 2}, - [749] = {.lex_state = 6, .external_lex_state = 3}, - [750] = {.lex_state = 6, .external_lex_state = 2}, - [751] = {.lex_state = 6, .external_lex_state = 2}, - [752] = {.lex_state = 6, .external_lex_state = 2}, - [753] = {.lex_state = 6, .external_lex_state = 3}, - [754] = {.lex_state = 6, .external_lex_state = 2}, - [755] = {.lex_state = 6, .external_lex_state = 2}, - [756] = {.lex_state = 6, .external_lex_state = 2}, - [757] = {.lex_state = 7, .external_lex_state = 2}, - [758] = {.lex_state = 6, .external_lex_state = 2}, - [759] = {.lex_state = 6, .external_lex_state = 2}, - [760] = {.lex_state = 6, .external_lex_state = 2}, - [761] = {.lex_state = 6, .external_lex_state = 2}, - [762] = {.lex_state = 6, .external_lex_state = 3}, - [763] = {.lex_state = 6, .external_lex_state = 3}, - [764] = {.lex_state = 6, .external_lex_state = 2}, - [765] = {.lex_state = 6, .external_lex_state = 3}, - [766] = {.lex_state = 7, .external_lex_state = 2}, - [767] = {.lex_state = 6, .external_lex_state = 2}, - [768] = {.lex_state = 6, .external_lex_state = 2}, - [769] = {.lex_state = 7, .external_lex_state = 2}, - [770] = {.lex_state = 7, .external_lex_state = 2}, - [771] = {.lex_state = 6, .external_lex_state = 3}, - [772] = {.lex_state = 7, .external_lex_state = 2}, - [773] = {.lex_state = 7, .external_lex_state = 2}, - [774] = {.lex_state = 7, .external_lex_state = 2}, - [775] = {.lex_state = 6, .external_lex_state = 2}, - [776] = {.lex_state = 6, .external_lex_state = 3}, - [777] = {.lex_state = 15}, - [778] = {.lex_state = 6, .external_lex_state = 2}, - [779] = {.lex_state = 6, .external_lex_state = 2}, - [780] = {.lex_state = 6, .external_lex_state = 2}, - [781] = {.lex_state = 6, .external_lex_state = 3}, - [782] = {.lex_state = 15}, - [783] = {.lex_state = 6, .external_lex_state = 3}, - [784] = {.lex_state = 7, .external_lex_state = 2}, - [785] = {.lex_state = 7, .external_lex_state = 2}, - [786] = {.lex_state = 15}, - [787] = {.lex_state = 7, .external_lex_state = 2}, - [788] = {.lex_state = 7, .external_lex_state = 2}, - [789] = {.lex_state = 6, .external_lex_state = 2}, - [790] = {.lex_state = 7, .external_lex_state = 2}, - [791] = {.lex_state = 7, .external_lex_state = 2}, - [792] = {.lex_state = 6, .external_lex_state = 2}, - [793] = {.lex_state = 6, .external_lex_state = 2}, - [794] = {.lex_state = 7, .external_lex_state = 2}, - [795] = {.lex_state = 6, .external_lex_state = 3}, - [796] = {.lex_state = 6, .external_lex_state = 2}, - [797] = {.lex_state = 6, .external_lex_state = 2}, - [798] = {.lex_state = 6, .external_lex_state = 2}, - [799] = {.lex_state = 15}, - [800] = {.lex_state = 15}, - [801] = {.lex_state = 15}, - [802] = {.lex_state = 15}, - [803] = {.lex_state = 15}, - [804] = {.lex_state = 15}, - [805] = {.lex_state = 15}, - [806] = {.lex_state = 15}, - [807] = {.lex_state = 15}, - [808] = {.lex_state = 15}, - [809] = {.lex_state = 6, .external_lex_state = 2}, - [810] = {.lex_state = 15}, - [811] = {.lex_state = 15}, - [812] = {.lex_state = 15}, - [813] = {.lex_state = 6, .external_lex_state = 2}, - [814] = {.lex_state = 15}, - [815] = {.lex_state = 6, .external_lex_state = 3}, - [816] = {.lex_state = 15}, - [817] = {.lex_state = 15}, - [818] = {.lex_state = 6, .external_lex_state = 2}, - [819] = {.lex_state = 6, .external_lex_state = 2}, - [820] = {.lex_state = 6, .external_lex_state = 2}, - [821] = {.lex_state = 66}, - [822] = {.lex_state = 15}, - [823] = {.lex_state = 66}, - [824] = {.lex_state = 15}, - [825] = {.lex_state = 15}, - [826] = {.lex_state = 15}, - [827] = {.lex_state = 6, .external_lex_state = 2}, - [828] = {.lex_state = 15}, - [829] = {.lex_state = 17}, - [830] = {.lex_state = 15}, - [831] = {.lex_state = 15}, - [832] = {.lex_state = 15}, - [833] = {.lex_state = 15}, - [834] = {.lex_state = 15}, - [835] = {.lex_state = 15}, - [836] = {.lex_state = 15}, - [837] = {.lex_state = 15}, - [838] = {.lex_state = 15}, - [839] = {.lex_state = 15}, - [840] = {.lex_state = 15}, - [841] = {.lex_state = 15}, - [842] = {.lex_state = 15}, - [843] = {.lex_state = 15}, - [844] = {.lex_state = 15}, - [845] = {.lex_state = 15}, - [846] = {.lex_state = 15}, - [847] = {.lex_state = 15}, - [848] = {.lex_state = 15}, - [849] = {.lex_state = 15}, - [850] = {.lex_state = 15}, - [851] = {.lex_state = 15}, - [852] = {.lex_state = 15}, - [853] = {.lex_state = 15}, - [854] = {.lex_state = 15}, - [855] = {.lex_state = 15}, - [856] = {.lex_state = 15}, - [857] = {.lex_state = 15}, - [858] = {.lex_state = 15}, - [859] = {.lex_state = 15}, - [860] = {.lex_state = 15}, - [861] = {.lex_state = 15}, - [862] = {.lex_state = 15}, - [863] = {.lex_state = 15}, - [864] = {.lex_state = 15}, - [865] = {.lex_state = 15}, - [866] = {.lex_state = 15}, - [867] = {.lex_state = 15}, - [868] = {.lex_state = 15}, - [869] = {.lex_state = 15}, - [870] = {.lex_state = 15}, - [871] = {.lex_state = 15}, - [872] = {.lex_state = 15}, - [873] = {.lex_state = 15}, - [874] = {.lex_state = 15}, - [875] = {.lex_state = 15}, - [876] = {.lex_state = 15}, - [877] = {.lex_state = 15}, - [878] = {.lex_state = 15}, - [879] = {.lex_state = 15}, - [880] = {.lex_state = 15}, - [881] = {.lex_state = 15}, - [882] = {.lex_state = 15}, - [883] = {.lex_state = 15}, - [884] = {.lex_state = 15}, - [885] = {.lex_state = 15}, - [886] = {.lex_state = 15}, - [887] = {.lex_state = 15}, - [888] = {.lex_state = 15}, - [889] = {.lex_state = 15}, - [890] = {.lex_state = 15}, - [891] = {.lex_state = 15}, - [892] = {.lex_state = 15}, - [893] = {.lex_state = 15}, - [894] = {.lex_state = 15}, - [895] = {.lex_state = 15}, - [896] = {.lex_state = 15}, - [897] = {.lex_state = 15}, - [898] = {.lex_state = 15}, - [899] = {.lex_state = 15}, - [900] = {.lex_state = 15}, - [901] = {.lex_state = 15}, - [902] = {.lex_state = 15}, - [903] = {.lex_state = 15}, - [904] = {.lex_state = 15}, - [905] = {.lex_state = 15}, - [906] = {.lex_state = 15}, - [907] = {.lex_state = 15}, - [908] = {.lex_state = 15}, - [909] = {.lex_state = 15}, - [910] = {.lex_state = 15}, - [911] = {.lex_state = 15}, - [912] = {.lex_state = 15}, - [913] = {.lex_state = 15}, - [914] = {.lex_state = 15}, - [915] = {.lex_state = 15}, - [916] = {.lex_state = 15}, - [917] = {.lex_state = 15}, - [918] = {.lex_state = 15}, - [919] = {.lex_state = 15}, - [920] = {.lex_state = 6, .external_lex_state = 2}, - [921] = {.lex_state = 15}, - [922] = {.lex_state = 15}, - [923] = {.lex_state = 15}, - [924] = {.lex_state = 15}, - [925] = {.lex_state = 15}, - [926] = {.lex_state = 15}, - [927] = {.lex_state = 15}, - [928] = {.lex_state = 15}, - [929] = {.lex_state = 15}, - [930] = {.lex_state = 15}, - [931] = {.lex_state = 15}, - [932] = {.lex_state = 15}, - [933] = {.lex_state = 15}, - [934] = {.lex_state = 15}, - [935] = {.lex_state = 15}, - [936] = {.lex_state = 6, .external_lex_state = 2}, - [937] = {.lex_state = 15}, - [938] = {.lex_state = 15}, - [939] = {.lex_state = 65, .external_lex_state = 3}, - [940] = {.lex_state = 66, .external_lex_state = 4}, - [941] = {.lex_state = 66, .external_lex_state = 4}, - [942] = {.lex_state = 66, .external_lex_state = 4}, - [943] = {.lex_state = 66, .external_lex_state = 4}, - [944] = {.lex_state = 66}, - [945] = {.lex_state = 66}, - [946] = {.lex_state = 66}, - [947] = {.lex_state = 66}, - [948] = {.lex_state = 66, .external_lex_state = 4}, - [949] = {.lex_state = 66, .external_lex_state = 4}, - [950] = {.lex_state = 66}, - [951] = {.lex_state = 66}, - [952] = {.lex_state = 66}, - [953] = {.lex_state = 66}, - [954] = {.lex_state = 65, .external_lex_state = 2}, - [955] = {.lex_state = 66}, - [956] = {.lex_state = 66}, - [957] = {.lex_state = 66}, - [958] = {.lex_state = 66}, - [959] = {.lex_state = 66}, - [960] = {.lex_state = 66}, - [961] = {.lex_state = 65, .external_lex_state = 2}, - [962] = {.lex_state = 66}, - [963] = {.lex_state = 66}, - [964] = {.lex_state = 66}, - [965] = {.lex_state = 66}, - [966] = {.lex_state = 66}, - [967] = {.lex_state = 66}, - [968] = {.lex_state = 65, .external_lex_state = 2}, - [969] = {.lex_state = 65, .external_lex_state = 2}, - [970] = {.lex_state = 65, .external_lex_state = 2}, - [971] = {.lex_state = 65, .external_lex_state = 2}, - [972] = {.lex_state = 65, .external_lex_state = 2}, - [973] = {.lex_state = 65, .external_lex_state = 2}, - [974] = {.lex_state = 65, .external_lex_state = 3}, - [975] = {.lex_state = 65, .external_lex_state = 3}, - [976] = {.lex_state = 65, .external_lex_state = 2}, - [977] = {.lex_state = 65, .external_lex_state = 2}, - [978] = {.lex_state = 65, .external_lex_state = 2}, - [979] = {.lex_state = 65, .external_lex_state = 2}, - [980] = {.lex_state = 65, .external_lex_state = 3}, - [981] = {.lex_state = 65, .external_lex_state = 2}, - [982] = {.lex_state = 65, .external_lex_state = 2}, - [983] = {.lex_state = 65, .external_lex_state = 2}, - [984] = {.lex_state = 65, .external_lex_state = 2}, - [985] = {.lex_state = 65, .external_lex_state = 3}, - [986] = {.lex_state = 65, .external_lex_state = 3}, - [987] = {.lex_state = 65, .external_lex_state = 2}, - [988] = {.lex_state = 65, .external_lex_state = 2}, - [989] = {.lex_state = 66}, - [990] = {.lex_state = 66}, - [991] = {.lex_state = 65, .external_lex_state = 2}, - [992] = {.lex_state = 65, .external_lex_state = 2}, - [993] = {.lex_state = 66}, - [994] = {.lex_state = 65, .external_lex_state = 3}, - [995] = {.lex_state = 65, .external_lex_state = 2}, - [996] = {.lex_state = 66}, - [997] = {.lex_state = 65, .external_lex_state = 2}, - [998] = {.lex_state = 65, .external_lex_state = 2}, - [999] = {.lex_state = 65, .external_lex_state = 2}, - [1000] = {.lex_state = 65, .external_lex_state = 2}, - [1001] = {.lex_state = 65, .external_lex_state = 2}, - [1002] = {.lex_state = 65, .external_lex_state = 2}, - [1003] = {.lex_state = 65, .external_lex_state = 2}, - [1004] = {.lex_state = 65, .external_lex_state = 2}, - [1005] = {.lex_state = 65, .external_lex_state = 2}, - [1006] = {.lex_state = 65, .external_lex_state = 2}, - [1007] = {.lex_state = 66}, - [1008] = {.lex_state = 65, .external_lex_state = 2}, - [1009] = {.lex_state = 65, .external_lex_state = 2}, - [1010] = {.lex_state = 65, .external_lex_state = 2}, - [1011] = {.lex_state = 65, .external_lex_state = 2}, - [1012] = {.lex_state = 65, .external_lex_state = 2}, - [1013] = {.lex_state = 65, .external_lex_state = 2}, - [1014] = {.lex_state = 65, .external_lex_state = 2}, - [1015] = {.lex_state = 66}, - [1016] = {.lex_state = 65, .external_lex_state = 3}, - [1017] = {.lex_state = 65, .external_lex_state = 2}, - [1018] = {.lex_state = 65, .external_lex_state = 2}, - [1019] = {.lex_state = 65, .external_lex_state = 2}, - [1020] = {.lex_state = 65, .external_lex_state = 2}, - [1021] = {.lex_state = 65, .external_lex_state = 2}, - [1022] = {.lex_state = 65, .external_lex_state = 3}, - [1023] = {.lex_state = 65, .external_lex_state = 2}, - [1024] = {.lex_state = 65, .external_lex_state = 2}, - [1025] = {.lex_state = 65, .external_lex_state = 2}, - [1026] = {.lex_state = 65, .external_lex_state = 3}, - [1027] = {.lex_state = 65, .external_lex_state = 2}, - [1028] = {.lex_state = 65, .external_lex_state = 2}, - [1029] = {.lex_state = 65, .external_lex_state = 2}, - [1030] = {.lex_state = 65, .external_lex_state = 2}, - [1031] = {.lex_state = 65, .external_lex_state = 3}, - [1032] = {.lex_state = 65, .external_lex_state = 3}, - [1033] = {.lex_state = 65, .external_lex_state = 2}, - [1034] = {.lex_state = 65, .external_lex_state = 2}, - [1035] = {.lex_state = 8, .external_lex_state = 2}, - [1036] = {.lex_state = 65, .external_lex_state = 2}, - [1037] = {.lex_state = 65, .external_lex_state = 2}, - [1038] = {.lex_state = 65, .external_lex_state = 2}, - [1039] = {.lex_state = 65, .external_lex_state = 2}, - [1040] = {.lex_state = 65, .external_lex_state = 2}, - [1041] = {.lex_state = 65, .external_lex_state = 2}, - [1042] = {.lex_state = 65, .external_lex_state = 2}, - [1043] = {.lex_state = 65, .external_lex_state = 2}, - [1044] = {.lex_state = 65, .external_lex_state = 2}, - [1045] = {.lex_state = 65, .external_lex_state = 2}, - [1046] = {.lex_state = 65, .external_lex_state = 2}, - [1047] = {.lex_state = 65, .external_lex_state = 2}, - [1048] = {.lex_state = 65, .external_lex_state = 2}, - [1049] = {.lex_state = 65, .external_lex_state = 2}, - [1050] = {.lex_state = 65, .external_lex_state = 2}, - [1051] = {.lex_state = 65, .external_lex_state = 2}, - [1052] = {.lex_state = 65, .external_lex_state = 2}, - [1053] = {.lex_state = 65, .external_lex_state = 2}, - [1054] = {.lex_state = 65, .external_lex_state = 2}, - [1055] = {.lex_state = 65, .external_lex_state = 2}, - [1056] = {.lex_state = 65, .external_lex_state = 2}, - [1057] = {.lex_state = 65, .external_lex_state = 2}, - [1058] = {.lex_state = 65, .external_lex_state = 3}, - [1059] = {.lex_state = 65, .external_lex_state = 2}, - [1060] = {.lex_state = 65, .external_lex_state = 2}, - [1061] = {.lex_state = 65, .external_lex_state = 2}, - [1062] = {.lex_state = 65, .external_lex_state = 2}, - [1063] = {.lex_state = 65, .external_lex_state = 2}, - [1064] = {.lex_state = 65, .external_lex_state = 2}, - [1065] = {.lex_state = 65, .external_lex_state = 2}, - [1066] = {.lex_state = 65, .external_lex_state = 2}, - [1067] = {.lex_state = 65, .external_lex_state = 2}, - [1068] = {.lex_state = 65, .external_lex_state = 2}, - [1069] = {.lex_state = 65, .external_lex_state = 2}, - [1070] = {.lex_state = 65, .external_lex_state = 2}, - [1071] = {.lex_state = 65, .external_lex_state = 2}, - [1072] = {.lex_state = 65, .external_lex_state = 2}, - [1073] = {.lex_state = 65, .external_lex_state = 2}, - [1074] = {.lex_state = 65, .external_lex_state = 2}, - [1075] = {.lex_state = 65, .external_lex_state = 3}, - [1076] = {.lex_state = 65, .external_lex_state = 2}, - [1077] = {.lex_state = 65, .external_lex_state = 3}, - [1078] = {.lex_state = 65, .external_lex_state = 3}, - [1079] = {.lex_state = 65, .external_lex_state = 2}, - [1080] = {.lex_state = 65, .external_lex_state = 3}, - [1081] = {.lex_state = 65, .external_lex_state = 3}, - [1082] = {.lex_state = 65, .external_lex_state = 3}, - [1083] = {.lex_state = 65, .external_lex_state = 3}, - [1084] = {.lex_state = 65, .external_lex_state = 2}, - [1085] = {.lex_state = 65, .external_lex_state = 2}, - [1086] = {.lex_state = 65, .external_lex_state = 2}, - [1087] = {.lex_state = 65, .external_lex_state = 3}, - [1088] = {.lex_state = 65, .external_lex_state = 3}, - [1089] = {.lex_state = 65, .external_lex_state = 3}, - [1090] = {.lex_state = 65, .external_lex_state = 3}, - [1091] = {.lex_state = 65, .external_lex_state = 3}, - [1092] = {.lex_state = 65, .external_lex_state = 3}, - [1093] = {.lex_state = 65, .external_lex_state = 3}, - [1094] = {.lex_state = 65, .external_lex_state = 3}, - [1095] = {.lex_state = 65, .external_lex_state = 3}, - [1096] = {.lex_state = 65, .external_lex_state = 3}, - [1097] = {.lex_state = 65, .external_lex_state = 2}, - [1098] = {.lex_state = 65, .external_lex_state = 3}, - [1099] = {.lex_state = 65, .external_lex_state = 3}, - [1100] = {.lex_state = 65, .external_lex_state = 3}, - [1101] = {.lex_state = 65, .external_lex_state = 2}, - [1102] = {.lex_state = 65, .external_lex_state = 3}, - [1103] = {.lex_state = 65, .external_lex_state = 2}, - [1104] = {.lex_state = 65, .external_lex_state = 3}, - [1105] = {.lex_state = 65, .external_lex_state = 2}, - [1106] = {.lex_state = 65, .external_lex_state = 3}, - [1107] = {.lex_state = 65, .external_lex_state = 2}, - [1108] = {.lex_state = 65, .external_lex_state = 3}, - [1109] = {.lex_state = 65, .external_lex_state = 3}, - [1110] = {.lex_state = 65, .external_lex_state = 3}, - [1111] = {.lex_state = 65, .external_lex_state = 2}, - [1112] = {.lex_state = 65, .external_lex_state = 3}, - [1113] = {.lex_state = 65, .external_lex_state = 3}, - [1114] = {.lex_state = 65, .external_lex_state = 2}, - [1115] = {.lex_state = 65, .external_lex_state = 2}, - [1116] = {.lex_state = 65, .external_lex_state = 2}, - [1117] = {.lex_state = 65, .external_lex_state = 2}, - [1118] = {.lex_state = 65, .external_lex_state = 2}, - [1119] = {.lex_state = 65, .external_lex_state = 2}, - [1120] = {.lex_state = 65, .external_lex_state = 2}, - [1121] = {.lex_state = 65, .external_lex_state = 2}, - [1122] = {.lex_state = 65, .external_lex_state = 2}, - [1123] = {.lex_state = 65, .external_lex_state = 2}, - [1124] = {.lex_state = 65, .external_lex_state = 2}, - [1125] = {.lex_state = 65, .external_lex_state = 2}, - [1126] = {.lex_state = 65, .external_lex_state = 3}, - [1127] = {.lex_state = 65, .external_lex_state = 3}, - [1128] = {.lex_state = 65, .external_lex_state = 3}, - [1129] = {.lex_state = 65, .external_lex_state = 2}, - [1130] = {.lex_state = 65, .external_lex_state = 3}, - [1131] = {.lex_state = 65, .external_lex_state = 2}, - [1132] = {.lex_state = 65, .external_lex_state = 2}, - [1133] = {.lex_state = 65, .external_lex_state = 2}, - [1134] = {.lex_state = 65, .external_lex_state = 2}, - [1135] = {.lex_state = 65, .external_lex_state = 2}, - [1136] = {.lex_state = 65, .external_lex_state = 2}, - [1137] = {.lex_state = 65, .external_lex_state = 2}, - [1138] = {.lex_state = 65, .external_lex_state = 2}, - [1139] = {.lex_state = 65, .external_lex_state = 2}, - [1140] = {.lex_state = 65, .external_lex_state = 2}, - [1141] = {.lex_state = 65, .external_lex_state = 2}, - [1142] = {.lex_state = 65, .external_lex_state = 2}, - [1143] = {.lex_state = 65, .external_lex_state = 3}, - [1144] = {.lex_state = 65, .external_lex_state = 3}, - [1145] = {.lex_state = 65, .external_lex_state = 2}, - [1146] = {.lex_state = 65, .external_lex_state = 2}, - [1147] = {.lex_state = 65, .external_lex_state = 2}, - [1148] = {.lex_state = 65, .external_lex_state = 2}, - [1149] = {.lex_state = 65, .external_lex_state = 2}, - [1150] = {.lex_state = 65, .external_lex_state = 2}, - [1151] = {.lex_state = 65, .external_lex_state = 3}, - [1152] = {.lex_state = 65, .external_lex_state = 3}, - [1153] = {.lex_state = 65, .external_lex_state = 2}, - [1154] = {.lex_state = 65, .external_lex_state = 2}, - [1155] = {.lex_state = 65, .external_lex_state = 2}, - [1156] = {.lex_state = 65, .external_lex_state = 2}, - [1157] = {.lex_state = 65, .external_lex_state = 2}, - [1158] = {.lex_state = 65, .external_lex_state = 2}, - [1159] = {.lex_state = 65, .external_lex_state = 2}, - [1160] = {.lex_state = 65, .external_lex_state = 2}, - [1161] = {.lex_state = 65, .external_lex_state = 2}, - [1162] = {.lex_state = 65, .external_lex_state = 2}, - [1163] = {.lex_state = 65, .external_lex_state = 3}, - [1164] = {.lex_state = 65, .external_lex_state = 2}, - [1165] = {.lex_state = 65, .external_lex_state = 2}, - [1166] = {.lex_state = 65, .external_lex_state = 2}, - [1167] = {.lex_state = 65, .external_lex_state = 2}, - [1168] = {.lex_state = 65, .external_lex_state = 2}, - [1169] = {.lex_state = 65, .external_lex_state = 2}, - [1170] = {.lex_state = 65, .external_lex_state = 3}, - [1171] = {.lex_state = 65, .external_lex_state = 2}, - [1172] = {.lex_state = 65, .external_lex_state = 3}, - [1173] = {.lex_state = 65, .external_lex_state = 2}, - [1174] = {.lex_state = 65, .external_lex_state = 2}, - [1175] = {.lex_state = 65, .external_lex_state = 2}, - [1176] = {.lex_state = 65, .external_lex_state = 2}, - [1177] = {.lex_state = 65, .external_lex_state = 2}, - [1178] = {.lex_state = 65, .external_lex_state = 2}, - [1179] = {.lex_state = 65, .external_lex_state = 2}, - [1180] = {.lex_state = 65, .external_lex_state = 2}, - [1181] = {.lex_state = 65, .external_lex_state = 2}, - [1182] = {.lex_state = 65, .external_lex_state = 2}, - [1183] = {.lex_state = 65, .external_lex_state = 2}, - [1184] = {.lex_state = 65, .external_lex_state = 2}, - [1185] = {.lex_state = 65, .external_lex_state = 2}, - [1186] = {.lex_state = 65, .external_lex_state = 3}, - [1187] = {.lex_state = 15}, - [1188] = {.lex_state = 65, .external_lex_state = 2}, - [1189] = {.lex_state = 65, .external_lex_state = 3}, - [1190] = {.lex_state = 65, .external_lex_state = 2}, - [1191] = {.lex_state = 8, .external_lex_state = 2}, - [1192] = {.lex_state = 65, .external_lex_state = 2}, - [1193] = {.lex_state = 65, .external_lex_state = 2}, - [1194] = {.lex_state = 15}, - [1195] = {.lex_state = 65, .external_lex_state = 2}, - [1196] = {.lex_state = 65, .external_lex_state = 2}, - [1197] = {.lex_state = 65, .external_lex_state = 2}, - [1198] = {.lex_state = 8, .external_lex_state = 2}, - [1199] = {.lex_state = 8, .external_lex_state = 2}, - [1200] = {.lex_state = 8, .external_lex_state = 2}, - [1201] = {.lex_state = 65, .external_lex_state = 3}, - [1202] = {.lex_state = 15}, - [1203] = {.lex_state = 8, .external_lex_state = 2}, - [1204] = {.lex_state = 65, .external_lex_state = 2}, - [1205] = {.lex_state = 65, .external_lex_state = 2}, - [1206] = {.lex_state = 65, .external_lex_state = 2}, - [1207] = {.lex_state = 8, .external_lex_state = 2}, - [1208] = {.lex_state = 65, .external_lex_state = 2}, - [1209] = {.lex_state = 65, .external_lex_state = 2}, - [1210] = {.lex_state = 8, .external_lex_state = 2}, - [1211] = {.lex_state = 8, .external_lex_state = 2}, - [1212] = {.lex_state = 8, .external_lex_state = 2}, - [1213] = {.lex_state = 8, .external_lex_state = 2}, - [1214] = {.lex_state = 8, .external_lex_state = 2}, - [1215] = {.lex_state = 8, .external_lex_state = 2}, - [1216] = {.lex_state = 8, .external_lex_state = 2}, - [1217] = {.lex_state = 8, .external_lex_state = 2}, - [1218] = {.lex_state = 8, .external_lex_state = 2}, - [1219] = {.lex_state = 8, .external_lex_state = 2}, - [1220] = {.lex_state = 8, .external_lex_state = 2}, - [1221] = {.lex_state = 65, .external_lex_state = 3}, - [1222] = {.lex_state = 65, .external_lex_state = 2}, - [1223] = {.lex_state = 15}, - [1224] = {.lex_state = 8, .external_lex_state = 2}, - [1225] = {.lex_state = 65, .external_lex_state = 2}, - [1226] = {.lex_state = 65, .external_lex_state = 2}, - [1227] = {.lex_state = 65, .external_lex_state = 2}, - [1228] = {.lex_state = 65, .external_lex_state = 2}, - [1229] = {.lex_state = 65, .external_lex_state = 3}, - [1230] = {.lex_state = 65, .external_lex_state = 3}, - [1231] = {.lex_state = 65, .external_lex_state = 2}, - [1232] = {.lex_state = 65, .external_lex_state = 2}, - [1233] = {.lex_state = 8, .external_lex_state = 2}, - [1234] = {.lex_state = 65, .external_lex_state = 2}, - [1235] = {.lex_state = 65, .external_lex_state = 2}, - [1236] = {.lex_state = 65, .external_lex_state = 2}, - [1237] = {.lex_state = 65, .external_lex_state = 2}, - [1238] = {.lex_state = 8, .external_lex_state = 2}, - [1239] = {.lex_state = 8, .external_lex_state = 2}, - [1240] = {.lex_state = 8, .external_lex_state = 2}, - [1241] = {.lex_state = 8, .external_lex_state = 2}, - [1242] = {.lex_state = 65, .external_lex_state = 2}, - [1243] = {.lex_state = 65, .external_lex_state = 2}, - [1244] = {.lex_state = 65, .external_lex_state = 2}, - [1245] = {.lex_state = 65, .external_lex_state = 2}, - [1246] = {.lex_state = 65, .external_lex_state = 2}, - [1247] = {.lex_state = 8, .external_lex_state = 2}, - [1248] = {.lex_state = 65, .external_lex_state = 2}, - [1249] = {.lex_state = 8, .external_lex_state = 2}, - [1250] = {.lex_state = 65, .external_lex_state = 2}, - [1251] = {.lex_state = 65, .external_lex_state = 2}, - [1252] = {.lex_state = 8, .external_lex_state = 2}, - [1253] = {.lex_state = 8, .external_lex_state = 2}, - [1254] = {.lex_state = 65, .external_lex_state = 2}, - [1255] = {.lex_state = 8, .external_lex_state = 2}, - [1256] = {.lex_state = 8, .external_lex_state = 2}, - [1257] = {.lex_state = 65, .external_lex_state = 3}, - [1258] = {.lex_state = 65, .external_lex_state = 2}, - [1259] = {.lex_state = 65, .external_lex_state = 3}, - [1260] = {.lex_state = 65, .external_lex_state = 2}, - [1261] = {.lex_state = 65, .external_lex_state = 3}, - [1262] = {.lex_state = 65, .external_lex_state = 2}, - [1263] = {.lex_state = 65, .external_lex_state = 3}, - [1264] = {.lex_state = 8, .external_lex_state = 2}, - [1265] = {.lex_state = 15}, - [1266] = {.lex_state = 15}, - [1267] = {.lex_state = 65, .external_lex_state = 2}, - [1268] = {.lex_state = 65, .external_lex_state = 2}, - [1269] = {.lex_state = 65, .external_lex_state = 3}, - [1270] = {.lex_state = 65, .external_lex_state = 2}, - [1271] = {.lex_state = 65, .external_lex_state = 3}, - [1272] = {.lex_state = 65, .external_lex_state = 2}, - [1273] = {.lex_state = 65, .external_lex_state = 2}, - [1274] = {.lex_state = 65, .external_lex_state = 3}, - [1275] = {.lex_state = 15}, - [1276] = {.lex_state = 65, .external_lex_state = 2}, - [1277] = {.lex_state = 9, .external_lex_state = 2}, - [1278] = {.lex_state = 15}, - [1279] = {.lex_state = 65, .external_lex_state = 3}, - [1280] = {.lex_state = 65, .external_lex_state = 3}, - [1281] = {.lex_state = 65, .external_lex_state = 2}, - [1282] = {.lex_state = 65, .external_lex_state = 2}, - [1283] = {.lex_state = 65, .external_lex_state = 2}, - [1284] = {.lex_state = 65, .external_lex_state = 3}, - [1285] = {.lex_state = 65, .external_lex_state = 3}, - [1286] = {.lex_state = 65, .external_lex_state = 2}, - [1287] = {.lex_state = 65, .external_lex_state = 2}, - [1288] = {.lex_state = 65, .external_lex_state = 2}, - [1289] = {.lex_state = 65, .external_lex_state = 2}, - [1290] = {.lex_state = 65, .external_lex_state = 2}, - [1291] = {.lex_state = 65, .external_lex_state = 2}, - [1292] = {.lex_state = 65, .external_lex_state = 2}, - [1293] = {.lex_state = 65, .external_lex_state = 2}, - [1294] = {.lex_state = 65, .external_lex_state = 2}, - [1295] = {.lex_state = 65, .external_lex_state = 3}, - [1296] = {.lex_state = 65, .external_lex_state = 2}, - [1297] = {.lex_state = 65, .external_lex_state = 3}, - [1298] = {.lex_state = 65, .external_lex_state = 2}, - [1299] = {.lex_state = 65, .external_lex_state = 3}, - [1300] = {.lex_state = 65, .external_lex_state = 2}, - [1301] = {.lex_state = 65, .external_lex_state = 3}, - [1302] = {.lex_state = 65, .external_lex_state = 2}, - [1303] = {.lex_state = 65, .external_lex_state = 2}, - [1304] = {.lex_state = 65, .external_lex_state = 2}, - [1305] = {.lex_state = 65, .external_lex_state = 2}, - [1306] = {.lex_state = 65, .external_lex_state = 2}, - [1307] = {.lex_state = 65, .external_lex_state = 2}, - [1308] = {.lex_state = 65, .external_lex_state = 2}, - [1309] = {.lex_state = 65, .external_lex_state = 2}, - [1310] = {.lex_state = 65, .external_lex_state = 2}, - [1311] = {.lex_state = 65, .external_lex_state = 2}, - [1312] = {.lex_state = 65, .external_lex_state = 2}, - [1313] = {.lex_state = 65, .external_lex_state = 2}, - [1314] = {.lex_state = 65, .external_lex_state = 2}, - [1315] = {.lex_state = 65, .external_lex_state = 3}, - [1316] = {.lex_state = 65, .external_lex_state = 3}, - [1317] = {.lex_state = 8, .external_lex_state = 3}, - [1318] = {.lex_state = 65, .external_lex_state = 3}, - [1319] = {.lex_state = 65, .external_lex_state = 3}, - [1320] = {.lex_state = 8, .external_lex_state = 2}, - [1321] = {.lex_state = 65, .external_lex_state = 2}, - [1322] = {.lex_state = 65, .external_lex_state = 3}, - [1323] = {.lex_state = 65, .external_lex_state = 3}, - [1324] = {.lex_state = 65, .external_lex_state = 3}, - [1325] = {.lex_state = 65, .external_lex_state = 2}, - [1326] = {.lex_state = 8, .external_lex_state = 2}, - [1327] = {.lex_state = 65, .external_lex_state = 3}, - [1328] = {.lex_state = 65, .external_lex_state = 2}, - [1329] = {.lex_state = 65, .external_lex_state = 3}, - [1330] = {.lex_state = 65, .external_lex_state = 2}, - [1331] = {.lex_state = 65, .external_lex_state = 3}, - [1332] = {.lex_state = 65, .external_lex_state = 3}, - [1333] = {.lex_state = 8, .external_lex_state = 2}, - [1334] = {.lex_state = 65, .external_lex_state = 2}, - [1335] = {.lex_state = 65, .external_lex_state = 3}, - [1336] = {.lex_state = 65, .external_lex_state = 3}, - [1337] = {.lex_state = 65, .external_lex_state = 2}, - [1338] = {.lex_state = 65, .external_lex_state = 3}, - [1339] = {.lex_state = 65, .external_lex_state = 3}, - [1340] = {.lex_state = 65, .external_lex_state = 2}, - [1341] = {.lex_state = 65, .external_lex_state = 2}, - [1342] = {.lex_state = 65, .external_lex_state = 3}, - [1343] = {.lex_state = 65, .external_lex_state = 2}, - [1344] = {.lex_state = 65, .external_lex_state = 2}, - [1345] = {.lex_state = 65, .external_lex_state = 3}, - [1346] = {.lex_state = 65, .external_lex_state = 3}, - [1347] = {.lex_state = 65, .external_lex_state = 2}, - [1348] = {.lex_state = 65, .external_lex_state = 3}, - [1349] = {.lex_state = 65, .external_lex_state = 3}, - [1350] = {.lex_state = 65, .external_lex_state = 2}, - [1351] = {.lex_state = 65, .external_lex_state = 3}, - [1352] = {.lex_state = 65, .external_lex_state = 2}, - [1353] = {.lex_state = 65, .external_lex_state = 2}, - [1354] = {.lex_state = 65, .external_lex_state = 2}, - [1355] = {.lex_state = 65, .external_lex_state = 2}, - [1356] = {.lex_state = 65, .external_lex_state = 2}, - [1357] = {.lex_state = 65, .external_lex_state = 2}, - [1358] = {.lex_state = 65, .external_lex_state = 2}, - [1359] = {.lex_state = 65, .external_lex_state = 3}, - [1360] = {.lex_state = 65, .external_lex_state = 3}, - [1361] = {.lex_state = 65, .external_lex_state = 3}, - [1362] = {.lex_state = 65, .external_lex_state = 3}, - [1363] = {.lex_state = 65, .external_lex_state = 3}, - [1364] = {.lex_state = 65, .external_lex_state = 2}, - [1365] = {.lex_state = 65, .external_lex_state = 3}, - [1366] = {.lex_state = 65, .external_lex_state = 2}, - [1367] = {.lex_state = 65, .external_lex_state = 3}, - [1368] = {.lex_state = 65, .external_lex_state = 2}, - [1369] = {.lex_state = 65, .external_lex_state = 3}, - [1370] = {.lex_state = 9, .external_lex_state = 3}, - [1371] = {.lex_state = 65, .external_lex_state = 3}, - [1372] = {.lex_state = 65, .external_lex_state = 3}, - [1373] = {.lex_state = 65, .external_lex_state = 2}, - [1374] = {.lex_state = 65, .external_lex_state = 2}, - [1375] = {.lex_state = 65, .external_lex_state = 2}, - [1376] = {.lex_state = 65, .external_lex_state = 3}, - [1377] = {.lex_state = 65, .external_lex_state = 2}, - [1378] = {.lex_state = 65, .external_lex_state = 3}, - [1379] = {.lex_state = 65, .external_lex_state = 2}, - [1380] = {.lex_state = 65, .external_lex_state = 2}, - [1381] = {.lex_state = 65, .external_lex_state = 3}, - [1382] = {.lex_state = 65, .external_lex_state = 3}, - [1383] = {.lex_state = 65, .external_lex_state = 3}, - [1384] = {.lex_state = 65, .external_lex_state = 3}, - [1385] = {.lex_state = 65, .external_lex_state = 3}, - [1386] = {.lex_state = 65, .external_lex_state = 3}, - [1387] = {.lex_state = 65, .external_lex_state = 2}, - [1388] = {.lex_state = 65, .external_lex_state = 3}, - [1389] = {.lex_state = 65, .external_lex_state = 3}, - [1390] = {.lex_state = 65, .external_lex_state = 3}, - [1391] = {.lex_state = 65, .external_lex_state = 3}, - [1392] = {.lex_state = 65, .external_lex_state = 3}, - [1393] = {.lex_state = 65, .external_lex_state = 3}, - [1394] = {.lex_state = 65, .external_lex_state = 3}, - [1395] = {.lex_state = 65, .external_lex_state = 2}, - [1396] = {.lex_state = 65, .external_lex_state = 3}, - [1397] = {.lex_state = 65, .external_lex_state = 3}, - [1398] = {.lex_state = 65, .external_lex_state = 3}, - [1399] = {.lex_state = 65, .external_lex_state = 2}, - [1400] = {.lex_state = 65, .external_lex_state = 3}, - [1401] = {.lex_state = 65, .external_lex_state = 3}, - [1402] = {.lex_state = 65, .external_lex_state = 3}, - [1403] = {.lex_state = 65, .external_lex_state = 3}, - [1404] = {.lex_state = 65, .external_lex_state = 3}, - [1405] = {.lex_state = 65, .external_lex_state = 3}, - [1406] = {.lex_state = 65, .external_lex_state = 2}, - [1407] = {.lex_state = 65, .external_lex_state = 3}, - [1408] = {.lex_state = 65, .external_lex_state = 3}, - [1409] = {.lex_state = 65, .external_lex_state = 2}, - [1410] = {.lex_state = 65, .external_lex_state = 3}, - [1411] = {.lex_state = 65, .external_lex_state = 3}, - [1412] = {.lex_state = 66}, - [1413] = {.lex_state = 8, .external_lex_state = 2}, - [1414] = {.lex_state = 66}, - [1415] = {.lex_state = 65, .external_lex_state = 3}, - [1416] = {.lex_state = 8, .external_lex_state = 2}, - [1417] = {.lex_state = 65, .external_lex_state = 2}, - [1418] = {.lex_state = 65, .external_lex_state = 3}, - [1419] = {.lex_state = 65, .external_lex_state = 3}, - [1420] = {.lex_state = 65, .external_lex_state = 3}, - [1421] = {.lex_state = 65, .external_lex_state = 3}, - [1422] = {.lex_state = 66}, - [1423] = {.lex_state = 65, .external_lex_state = 3}, - [1424] = {.lex_state = 9, .external_lex_state = 2}, - [1425] = {.lex_state = 65, .external_lex_state = 3}, - [1426] = {.lex_state = 65, .external_lex_state = 3}, - [1427] = {.lex_state = 65, .external_lex_state = 3}, - [1428] = {.lex_state = 65, .external_lex_state = 2}, - [1429] = {.lex_state = 65, .external_lex_state = 3}, - [1430] = {.lex_state = 65, .external_lex_state = 3}, - [1431] = {.lex_state = 65, .external_lex_state = 3}, - [1432] = {.lex_state = 65, .external_lex_state = 3}, - [1433] = {.lex_state = 65, .external_lex_state = 3}, - [1434] = {.lex_state = 65, .external_lex_state = 3}, - [1435] = {.lex_state = 65, .external_lex_state = 3}, - [1436] = {.lex_state = 65, .external_lex_state = 2}, - [1437] = {.lex_state = 65, .external_lex_state = 3}, - [1438] = {.lex_state = 65, .external_lex_state = 3}, - [1439] = {.lex_state = 65, .external_lex_state = 2}, - [1440] = {.lex_state = 65, .external_lex_state = 2}, - [1441] = {.lex_state = 65, .external_lex_state = 2}, - [1442] = {.lex_state = 65, .external_lex_state = 3}, - [1443] = {.lex_state = 11, .external_lex_state = 2}, - [1444] = {.lex_state = 65, .external_lex_state = 3}, - [1445] = {.lex_state = 65, .external_lex_state = 3}, - [1446] = {.lex_state = 65, .external_lex_state = 2}, - [1447] = {.lex_state = 65, .external_lex_state = 3}, - [1448] = {.lex_state = 65, .external_lex_state = 3}, - [1449] = {.lex_state = 65, .external_lex_state = 3}, - [1450] = {.lex_state = 65, .external_lex_state = 2}, - [1451] = {.lex_state = 65, .external_lex_state = 3}, - [1452] = {.lex_state = 65, .external_lex_state = 3}, - [1453] = {.lex_state = 8, .external_lex_state = 2}, - [1454] = {.lex_state = 65, .external_lex_state = 3}, - [1455] = {.lex_state = 8, .external_lex_state = 2}, - [1456] = {.lex_state = 65, .external_lex_state = 2}, - [1457] = {.lex_state = 8, .external_lex_state = 2}, - [1458] = {.lex_state = 65, .external_lex_state = 2}, - [1459] = {.lex_state = 65, .external_lex_state = 2}, - [1460] = {.lex_state = 8, .external_lex_state = 2}, - [1461] = {.lex_state = 65, .external_lex_state = 3}, - [1462] = {.lex_state = 8, .external_lex_state = 2}, - [1463] = {.lex_state = 65, .external_lex_state = 3}, - [1464] = {.lex_state = 65, .external_lex_state = 3}, - [1465] = {.lex_state = 65, .external_lex_state = 3}, - [1466] = {.lex_state = 65, .external_lex_state = 3}, - [1467] = {.lex_state = 65, .external_lex_state = 3}, - [1468] = {.lex_state = 65, .external_lex_state = 3}, - [1469] = {.lex_state = 65, .external_lex_state = 3}, - [1470] = {.lex_state = 65, .external_lex_state = 3}, - [1471] = {.lex_state = 65, .external_lex_state = 3}, - [1472] = {.lex_state = 65, .external_lex_state = 3}, - [1473] = {.lex_state = 8, .external_lex_state = 2}, - [1474] = {.lex_state = 65, .external_lex_state = 3}, - [1475] = {.lex_state = 65, .external_lex_state = 3}, - [1476] = {.lex_state = 65, .external_lex_state = 3}, - [1477] = {.lex_state = 65, .external_lex_state = 3}, - [1478] = {.lex_state = 65, .external_lex_state = 3}, - [1479] = {.lex_state = 65, .external_lex_state = 3}, - [1480] = {.lex_state = 65, .external_lex_state = 3}, - [1481] = {.lex_state = 65, .external_lex_state = 3}, - [1482] = {.lex_state = 65, .external_lex_state = 3}, - [1483] = {.lex_state = 65, .external_lex_state = 3}, - [1484] = {.lex_state = 8, .external_lex_state = 2}, - [1485] = {.lex_state = 8, .external_lex_state = 2}, - [1486] = {.lex_state = 66}, - [1487] = {.lex_state = 65, .external_lex_state = 3}, - [1488] = {.lex_state = 65, .external_lex_state = 3}, - [1489] = {.lex_state = 65, .external_lex_state = 3}, - [1490] = {.lex_state = 65, .external_lex_state = 3}, - [1491] = {.lex_state = 65, .external_lex_state = 2}, - [1492] = {.lex_state = 65, .external_lex_state = 2}, - [1493] = {.lex_state = 65, .external_lex_state = 3}, - [1494] = {.lex_state = 8, .external_lex_state = 2}, - [1495] = {.lex_state = 8, .external_lex_state = 2}, - [1496] = {.lex_state = 65, .external_lex_state = 3}, - [1497] = {.lex_state = 8, .external_lex_state = 2}, - [1498] = {.lex_state = 65, .external_lex_state = 2}, - [1499] = {.lex_state = 65, .external_lex_state = 3}, - [1500] = {.lex_state = 65, .external_lex_state = 2}, - [1501] = {.lex_state = 65, .external_lex_state = 3}, - [1502] = {.lex_state = 8, .external_lex_state = 3}, - [1503] = {.lex_state = 65, .external_lex_state = 3}, - [1504] = {.lex_state = 65, .external_lex_state = 3}, - [1505] = {.lex_state = 65, .external_lex_state = 3}, - [1506] = {.lex_state = 65, .external_lex_state = 3}, - [1507] = {.lex_state = 65, .external_lex_state = 3}, - [1508] = {.lex_state = 65, .external_lex_state = 3}, - [1509] = {.lex_state = 65, .external_lex_state = 3}, - [1510] = {.lex_state = 8, .external_lex_state = 2}, - [1511] = {.lex_state = 65, .external_lex_state = 2}, - [1512] = {.lex_state = 8, .external_lex_state = 2}, - [1513] = {.lex_state = 65, .external_lex_state = 3}, - [1514] = {.lex_state = 8, .external_lex_state = 3}, - [1515] = {.lex_state = 8, .external_lex_state = 2}, - [1516] = {.lex_state = 65, .external_lex_state = 3}, - [1517] = {.lex_state = 65, .external_lex_state = 3}, - [1518] = {.lex_state = 65, .external_lex_state = 3}, - [1519] = {.lex_state = 65, .external_lex_state = 3}, - [1520] = {.lex_state = 65, .external_lex_state = 2}, - [1521] = {.lex_state = 8, .external_lex_state = 2}, - [1522] = {.lex_state = 65, .external_lex_state = 3}, - [1523] = {.lex_state = 65, .external_lex_state = 3}, - [1524] = {.lex_state = 65, .external_lex_state = 3}, - [1525] = {.lex_state = 65, .external_lex_state = 3}, - [1526] = {.lex_state = 8, .external_lex_state = 2}, - [1527] = {.lex_state = 66}, - [1528] = {.lex_state = 65, .external_lex_state = 2}, - [1529] = {.lex_state = 65, .external_lex_state = 3}, - [1530] = {.lex_state = 65, .external_lex_state = 3}, - [1531] = {.lex_state = 65, .external_lex_state = 2}, - [1532] = {.lex_state = 65, .external_lex_state = 3}, - [1533] = {.lex_state = 65, .external_lex_state = 3}, - [1534] = {.lex_state = 65, .external_lex_state = 3}, - [1535] = {.lex_state = 65, .external_lex_state = 3}, - [1536] = {.lex_state = 65, .external_lex_state = 3}, - [1537] = {.lex_state = 65, .external_lex_state = 3}, - [1538] = {.lex_state = 65, .external_lex_state = 3}, - [1539] = {.lex_state = 65, .external_lex_state = 3}, - [1540] = {.lex_state = 65, .external_lex_state = 3}, - [1541] = {.lex_state = 65, .external_lex_state = 3}, - [1542] = {.lex_state = 65, .external_lex_state = 3}, - [1543] = {.lex_state = 65, .external_lex_state = 3}, - [1544] = {.lex_state = 65, .external_lex_state = 3}, - [1545] = {.lex_state = 65, .external_lex_state = 3}, - [1546] = {.lex_state = 65, .external_lex_state = 3}, - [1547] = {.lex_state = 65, .external_lex_state = 3}, - [1548] = {.lex_state = 65, .external_lex_state = 3}, - [1549] = {.lex_state = 65, .external_lex_state = 3}, - [1550] = {.lex_state = 65, .external_lex_state = 2}, - [1551] = {.lex_state = 65, .external_lex_state = 3}, - [1552] = {.lex_state = 65, .external_lex_state = 2}, - [1553] = {.lex_state = 65, .external_lex_state = 2}, - [1554] = {.lex_state = 65, .external_lex_state = 2}, - [1555] = {.lex_state = 65, .external_lex_state = 3}, - [1556] = {.lex_state = 65, .external_lex_state = 3}, - [1557] = {.lex_state = 65, .external_lex_state = 2}, - [1558] = {.lex_state = 65, .external_lex_state = 3}, - [1559] = {.lex_state = 65, .external_lex_state = 3}, - [1560] = {.lex_state = 66}, - [1561] = {.lex_state = 8, .external_lex_state = 2}, - [1562] = {.lex_state = 66, .external_lex_state = 4}, - [1563] = {.lex_state = 8, .external_lex_state = 2}, - [1564] = {.lex_state = 66}, - [1565] = {.lex_state = 8, .external_lex_state = 2}, - [1566] = {.lex_state = 8, .external_lex_state = 2}, - [1567] = {.lex_state = 66}, - [1568] = {.lex_state = 8, .external_lex_state = 2}, - [1569] = {.lex_state = 8, .external_lex_state = 2}, - [1570] = {.lex_state = 8, .external_lex_state = 2}, - [1571] = {.lex_state = 8, .external_lex_state = 2}, - [1572] = {.lex_state = 8, .external_lex_state = 2}, - [1573] = {.lex_state = 8, .external_lex_state = 2}, - [1574] = {.lex_state = 8, .external_lex_state = 2}, - [1575] = {.lex_state = 8, .external_lex_state = 2}, - [1576] = {.lex_state = 8, .external_lex_state = 2}, - [1577] = {.lex_state = 8, .external_lex_state = 2}, - [1578] = {.lex_state = 66}, - [1579] = {.lex_state = 65, .external_lex_state = 2}, - [1580] = {.lex_state = 8, .external_lex_state = 2}, - [1581] = {.lex_state = 8, .external_lex_state = 2}, - [1582] = {.lex_state = 65, .external_lex_state = 2}, - [1583] = {.lex_state = 66}, - [1584] = {.lex_state = 8, .external_lex_state = 2}, - [1585] = {.lex_state = 8, .external_lex_state = 2}, - [1586] = {.lex_state = 8, .external_lex_state = 2}, - [1587] = {.lex_state = 8, .external_lex_state = 2}, - [1588] = {.lex_state = 8, .external_lex_state = 2}, - [1589] = {.lex_state = 8, .external_lex_state = 2}, - [1590] = {.lex_state = 8, .external_lex_state = 2}, - [1591] = {.lex_state = 8, .external_lex_state = 2}, - [1592] = {.lex_state = 66, .external_lex_state = 4}, - [1593] = {.lex_state = 8, .external_lex_state = 2}, - [1594] = {.lex_state = 8, .external_lex_state = 2}, - [1595] = {.lex_state = 8, .external_lex_state = 2}, - [1596] = {.lex_state = 65, .external_lex_state = 3}, - [1597] = {.lex_state = 8, .external_lex_state = 2}, - [1598] = {.lex_state = 8, .external_lex_state = 2}, - [1599] = {.lex_state = 65, .external_lex_state = 3}, - [1600] = {.lex_state = 8, .external_lex_state = 2}, - [1601] = {.lex_state = 8, .external_lex_state = 2}, - [1602] = {.lex_state = 8, .external_lex_state = 2}, - [1603] = {.lex_state = 8, .external_lex_state = 2}, - [1604] = {.lex_state = 8, .external_lex_state = 2}, - [1605] = {.lex_state = 8, .external_lex_state = 2}, - [1606] = {.lex_state = 8, .external_lex_state = 2}, - [1607] = {.lex_state = 8, .external_lex_state = 2}, - [1608] = {.lex_state = 8, .external_lex_state = 2}, - [1609] = {.lex_state = 8, .external_lex_state = 2}, - [1610] = {.lex_state = 8, .external_lex_state = 2}, - [1611] = {.lex_state = 8, .external_lex_state = 2}, - [1612] = {.lex_state = 8, .external_lex_state = 2}, - [1613] = {.lex_state = 8, .external_lex_state = 2}, - [1614] = {.lex_state = 8, .external_lex_state = 2}, - [1615] = {.lex_state = 66}, - [1616] = {.lex_state = 8, .external_lex_state = 2}, - [1617] = {.lex_state = 8, .external_lex_state = 2}, - [1618] = {.lex_state = 8, .external_lex_state = 2}, - [1619] = {.lex_state = 8, .external_lex_state = 2}, - [1620] = {.lex_state = 8, .external_lex_state = 2}, - [1621] = {.lex_state = 8, .external_lex_state = 2}, - [1622] = {.lex_state = 8, .external_lex_state = 2}, - [1623] = {.lex_state = 8, .external_lex_state = 2}, - [1624] = {.lex_state = 66}, - [1625] = {.lex_state = 66}, - [1626] = {.lex_state = 8, .external_lex_state = 2}, - [1627] = {.lex_state = 8, .external_lex_state = 2}, - [1628] = {.lex_state = 8, .external_lex_state = 2}, - [1629] = {.lex_state = 8, .external_lex_state = 2}, - [1630] = {.lex_state = 8, .external_lex_state = 2}, - [1631] = {.lex_state = 65, .external_lex_state = 2}, - [1632] = {.lex_state = 66}, - [1633] = {.lex_state = 8, .external_lex_state = 2}, - [1634] = {.lex_state = 66}, - [1635] = {.lex_state = 8, .external_lex_state = 2}, - [1636] = {.lex_state = 8, .external_lex_state = 2}, - [1637] = {.lex_state = 8, .external_lex_state = 2}, - [1638] = {.lex_state = 8, .external_lex_state = 2}, - [1639] = {.lex_state = 8, .external_lex_state = 2}, - [1640] = {.lex_state = 8, .external_lex_state = 2}, - [1641] = {.lex_state = 66, .external_lex_state = 4}, - [1642] = {.lex_state = 66, .external_lex_state = 4}, - [1643] = {.lex_state = 8, .external_lex_state = 2}, - [1644] = {.lex_state = 8, .external_lex_state = 2}, - [1645] = {.lex_state = 66, .external_lex_state = 4}, - [1646] = {.lex_state = 8, .external_lex_state = 2}, - [1647] = {.lex_state = 66, .external_lex_state = 4}, - [1648] = {.lex_state = 8, .external_lex_state = 2}, - [1649] = {.lex_state = 66, .external_lex_state = 4}, - [1650] = {.lex_state = 65, .external_lex_state = 2}, - [1651] = {.lex_state = 66, .external_lex_state = 4}, - [1652] = {.lex_state = 8, .external_lex_state = 2}, - [1653] = {.lex_state = 8, .external_lex_state = 2}, - [1654] = {.lex_state = 8, .external_lex_state = 2}, - [1655] = {.lex_state = 8, .external_lex_state = 2}, - [1656] = {.lex_state = 8, .external_lex_state = 2}, - [1657] = {.lex_state = 8, .external_lex_state = 2}, - [1658] = {.lex_state = 8, .external_lex_state = 2}, - [1659] = {.lex_state = 66}, - [1660] = {.lex_state = 66}, - [1661] = {.lex_state = 8, .external_lex_state = 2}, - [1662] = {.lex_state = 8, .external_lex_state = 2}, - [1663] = {.lex_state = 65, .external_lex_state = 2}, - [1664] = {.lex_state = 8, .external_lex_state = 2}, - [1665] = {.lex_state = 8, .external_lex_state = 2}, - [1666] = {.lex_state = 66}, - [1667] = {.lex_state = 8, .external_lex_state = 2}, - [1668] = {.lex_state = 8, .external_lex_state = 2}, - [1669] = {.lex_state = 66}, - [1670] = {.lex_state = 65, .external_lex_state = 3}, - [1671] = {.lex_state = 8, .external_lex_state = 2}, - [1672] = {.lex_state = 8, .external_lex_state = 2}, - [1673] = {.lex_state = 8, .external_lex_state = 2}, - [1674] = {.lex_state = 8, .external_lex_state = 2}, - [1675] = {.lex_state = 8, .external_lex_state = 2}, - [1676] = {.lex_state = 8, .external_lex_state = 2}, - [1677] = {.lex_state = 8, .external_lex_state = 2}, - [1678] = {.lex_state = 8, .external_lex_state = 2}, - [1679] = {.lex_state = 8, .external_lex_state = 2}, - [1680] = {.lex_state = 65, .external_lex_state = 2}, - [1681] = {.lex_state = 66, .external_lex_state = 4}, - [1682] = {.lex_state = 66, .external_lex_state = 4}, - [1683] = {.lex_state = 8, .external_lex_state = 2}, - [1684] = {.lex_state = 8, .external_lex_state = 2}, - [1685] = {.lex_state = 8, .external_lex_state = 2}, - [1686] = {.lex_state = 8, .external_lex_state = 2}, - [1687] = {.lex_state = 8, .external_lex_state = 2}, - [1688] = {.lex_state = 8, .external_lex_state = 2}, - [1689] = {.lex_state = 66, .external_lex_state = 4}, - [1690] = {.lex_state = 65, .external_lex_state = 3}, - [1691] = {.lex_state = 8, .external_lex_state = 2}, - [1692] = {.lex_state = 8, .external_lex_state = 2}, - [1693] = {.lex_state = 66, .external_lex_state = 4}, - [1694] = {.lex_state = 8, .external_lex_state = 2}, - [1695] = {.lex_state = 8, .external_lex_state = 2}, - [1696] = {.lex_state = 8, .external_lex_state = 2}, - [1697] = {.lex_state = 8, .external_lex_state = 2}, - [1698] = {.lex_state = 8, .external_lex_state = 2}, - [1699] = {.lex_state = 8, .external_lex_state = 2}, - [1700] = {.lex_state = 66, .external_lex_state = 4}, - [1701] = {.lex_state = 66, .external_lex_state = 4}, - [1702] = {.lex_state = 65, .external_lex_state = 2}, - [1703] = {.lex_state = 65, .external_lex_state = 2}, - [1704] = {.lex_state = 65, .external_lex_state = 2}, - [1705] = {.lex_state = 65, .external_lex_state = 2}, - [1706] = {.lex_state = 66, .external_lex_state = 4}, - [1707] = {.lex_state = 66, .external_lex_state = 4}, - [1708] = {.lex_state = 66, .external_lex_state = 4}, - [1709] = {.lex_state = 65, .external_lex_state = 2}, - [1710] = {.lex_state = 66, .external_lex_state = 4}, - [1711] = {.lex_state = 65, .external_lex_state = 2}, - [1712] = {.lex_state = 65, .external_lex_state = 2}, - [1713] = {.lex_state = 66, .external_lex_state = 4}, - [1714] = {.lex_state = 66, .external_lex_state = 4}, - [1715] = {.lex_state = 66, .external_lex_state = 4}, - [1716] = {.lex_state = 66, .external_lex_state = 4}, - [1717] = {.lex_state = 66, .external_lex_state = 4}, - [1718] = {.lex_state = 66, .external_lex_state = 4}, - [1719] = {.lex_state = 66, .external_lex_state = 4}, - [1720] = {.lex_state = 66, .external_lex_state = 4}, - [1721] = {.lex_state = 66, .external_lex_state = 4}, - [1722] = {.lex_state = 66, .external_lex_state = 4}, - [1723] = {.lex_state = 66, .external_lex_state = 4}, - [1724] = {.lex_state = 66, .external_lex_state = 4}, - [1725] = {.lex_state = 66, .external_lex_state = 4}, - [1726] = {.lex_state = 66, .external_lex_state = 4}, - [1727] = {.lex_state = 66, .external_lex_state = 4}, - [1728] = {.lex_state = 66, .external_lex_state = 4}, - [1729] = {.lex_state = 66, .external_lex_state = 4}, - [1730] = {.lex_state = 66, .external_lex_state = 4}, - [1731] = {.lex_state = 66, .external_lex_state = 4}, - [1732] = {.lex_state = 66, .external_lex_state = 4}, - [1733] = {.lex_state = 66, .external_lex_state = 4}, - [1734] = {.lex_state = 66, .external_lex_state = 4}, - [1735] = {.lex_state = 66, .external_lex_state = 4}, - [1736] = {.lex_state = 66, .external_lex_state = 4}, - [1737] = {.lex_state = 66, .external_lex_state = 4}, - [1738] = {.lex_state = 66, .external_lex_state = 4}, - [1739] = {.lex_state = 66, .external_lex_state = 4}, - [1740] = {.lex_state = 66, .external_lex_state = 4}, - [1741] = {.lex_state = 66}, - [1742] = {.lex_state = 66}, - [1743] = {.lex_state = 66, .external_lex_state = 4}, - [1744] = {.lex_state = 66, .external_lex_state = 4}, - [1745] = {.lex_state = 66, .external_lex_state = 4}, - [1746] = {.lex_state = 66}, - [1747] = {.lex_state = 66}, - [1748] = {.lex_state = 66}, - [1749] = {.lex_state = 66}, - [1750] = {.lex_state = 66, .external_lex_state = 4}, - [1751] = {.lex_state = 66, .external_lex_state = 4}, - [1752] = {.lex_state = 66, .external_lex_state = 4}, - [1753] = {.lex_state = 66, .external_lex_state = 4}, - [1754] = {.lex_state = 66}, - [1755] = {.lex_state = 66, .external_lex_state = 4}, - [1756] = {.lex_state = 66, .external_lex_state = 4}, - [1757] = {.lex_state = 66, .external_lex_state = 4}, - [1758] = {.lex_state = 66, .external_lex_state = 4}, - [1759] = {.lex_state = 66, .external_lex_state = 4}, - [1760] = {.lex_state = 66}, - [1761] = {.lex_state = 66, .external_lex_state = 4}, - [1762] = {.lex_state = 66}, - [1763] = {.lex_state = 66}, - [1764] = {.lex_state = 66, .external_lex_state = 4}, - [1765] = {.lex_state = 66}, - [1766] = {.lex_state = 66}, - [1767] = {.lex_state = 66, .external_lex_state = 4}, - [1768] = {.lex_state = 66, .external_lex_state = 4}, - [1769] = {.lex_state = 66}, - [1770] = {.lex_state = 66}, - [1771] = {.lex_state = 66}, - [1772] = {.lex_state = 66, .external_lex_state = 4}, - [1773] = {.lex_state = 66, .external_lex_state = 4}, - [1774] = {.lex_state = 66, .external_lex_state = 4}, - [1775] = {.lex_state = 66}, - [1776] = {.lex_state = 66}, - [1777] = {.lex_state = 66}, - [1778] = {.lex_state = 66}, - [1779] = {.lex_state = 66}, - [1780] = {.lex_state = 66}, - [1781] = {.lex_state = 66}, - [1782] = {.lex_state = 66}, - [1783] = {.lex_state = 66}, - [1784] = {.lex_state = 66}, - [1785] = {.lex_state = 66}, - [1786] = {.lex_state = 66, .external_lex_state = 4}, - [1787] = {.lex_state = 66}, - [1788] = {.lex_state = 66}, - [1789] = {.lex_state = 66}, - [1790] = {.lex_state = 66}, - [1791] = {.lex_state = 66}, - [1792] = {.lex_state = 66}, - [1793] = {.lex_state = 66}, - [1794] = {.lex_state = 66}, - [1795] = {.lex_state = 66}, - [1796] = {.lex_state = 66}, - [1797] = {.lex_state = 66}, - [1798] = {.lex_state = 66}, - [1799] = {.lex_state = 66}, - [1800] = {.lex_state = 66}, - [1801] = {.lex_state = 66}, - [1802] = {.lex_state = 66}, - [1803] = {.lex_state = 66}, - [1804] = {.lex_state = 66}, - [1805] = {.lex_state = 66}, - [1806] = {.lex_state = 66}, - [1807] = {.lex_state = 66}, - [1808] = {.lex_state = 66}, - [1809] = {.lex_state = 66}, - [1810] = {.lex_state = 66}, - [1811] = {.lex_state = 66}, - [1812] = {.lex_state = 66}, - [1813] = {.lex_state = 66}, - [1814] = {.lex_state = 66}, - [1815] = {.lex_state = 66}, - [1816] = {.lex_state = 66}, - [1817] = {.lex_state = 66}, - [1818] = {.lex_state = 66}, - [1819] = {.lex_state = 66}, - [1820] = {.lex_state = 66}, - [1821] = {.lex_state = 66}, - [1822] = {.lex_state = 66}, - [1823] = {.lex_state = 66}, - [1824] = {.lex_state = 66}, - [1825] = {.lex_state = 66}, - [1826] = {.lex_state = 66}, - [1827] = {.lex_state = 66, .external_lex_state = 4}, - [1828] = {.lex_state = 66}, - [1829] = {.lex_state = 66}, - [1830] = {.lex_state = 66, .external_lex_state = 4}, - [1831] = {.lex_state = 66}, - [1832] = {.lex_state = 66, .external_lex_state = 4}, - [1833] = {.lex_state = 66}, - [1834] = {.lex_state = 66}, - [1835] = {.lex_state = 66, .external_lex_state = 4}, - [1836] = {.lex_state = 66}, - [1837] = {.lex_state = 66}, - [1838] = {.lex_state = 66}, - [1839] = {.lex_state = 66, .external_lex_state = 4}, - [1840] = {.lex_state = 66}, - [1841] = {.lex_state = 66, .external_lex_state = 4}, - [1842] = {.lex_state = 66, .external_lex_state = 4}, - [1843] = {.lex_state = 66}, - [1844] = {.lex_state = 66, .external_lex_state = 4}, - [1845] = {.lex_state = 66}, - [1846] = {.lex_state = 66}, - [1847] = {.lex_state = 66, .external_lex_state = 4}, - [1848] = {.lex_state = 66, .external_lex_state = 4}, - [1849] = {.lex_state = 66, .external_lex_state = 4}, - [1850] = {.lex_state = 66, .external_lex_state = 4}, - [1851] = {.lex_state = 66}, - [1852] = {.lex_state = 66}, - [1853] = {.lex_state = 66, .external_lex_state = 4}, - [1854] = {.lex_state = 66, .external_lex_state = 4}, - [1855] = {.lex_state = 66}, - [1856] = {.lex_state = 66, .external_lex_state = 4}, - [1857] = {.lex_state = 66}, - [1858] = {.lex_state = 66, .external_lex_state = 4}, - [1859] = {.lex_state = 66}, - [1860] = {.lex_state = 66, .external_lex_state = 4}, - [1861] = {.lex_state = 66}, - [1862] = {.lex_state = 66}, - [1863] = {.lex_state = 66}, - [1864] = {.lex_state = 66}, - [1865] = {.lex_state = 66}, - [1866] = {.lex_state = 66}, - [1867] = {.lex_state = 66}, - [1868] = {.lex_state = 66}, - [1869] = {.lex_state = 66}, - [1870] = {.lex_state = 66}, - [1871] = {.lex_state = 66}, - [1872] = {.lex_state = 66}, - [1873] = {.lex_state = 66}, - [1874] = {.lex_state = 66}, - [1875] = {.lex_state = 66}, - [1876] = {.lex_state = 66}, - [1877] = {.lex_state = 66}, - [1878] = {.lex_state = 66}, - [1879] = {.lex_state = 66}, - [1880] = {.lex_state = 66}, - [1881] = {.lex_state = 66}, - [1882] = {.lex_state = 66}, - [1883] = {.lex_state = 66}, - [1884] = {.lex_state = 66}, - [1885] = {.lex_state = 66}, - [1886] = {.lex_state = 66}, - [1887] = {.lex_state = 66}, - [1888] = {.lex_state = 66}, - [1889] = {.lex_state = 66}, - [1890] = {.lex_state = 66}, - [1891] = {.lex_state = 66}, - [1892] = {.lex_state = 66}, - [1893] = {.lex_state = 66}, - [1894] = {.lex_state = 66}, - [1895] = {.lex_state = 66}, - [1896] = {.lex_state = 66}, - [1897] = {.lex_state = 66}, - [1898] = {.lex_state = 66}, - [1899] = {.lex_state = 66}, - [1900] = {.lex_state = 66}, - [1901] = {.lex_state = 66}, - [1902] = {.lex_state = 66}, - [1903] = {.lex_state = 21}, - [1904] = {.lex_state = 21}, - [1905] = {.lex_state = 21}, - [1906] = {.lex_state = 21}, - [1907] = {.lex_state = 21}, - [1908] = {.lex_state = 66, .external_lex_state = 4}, - [1909] = {.lex_state = 66, .external_lex_state = 4}, - [1910] = {.lex_state = 21}, - [1911] = {.lex_state = 66}, - [1912] = {.lex_state = 21}, - [1913] = {.lex_state = 66}, - [1914] = {.lex_state = 66, .external_lex_state = 4}, - [1915] = {.lex_state = 66, .external_lex_state = 4}, - [1916] = {.lex_state = 66, .external_lex_state = 4}, - [1917] = {.lex_state = 66, .external_lex_state = 4}, - [1918] = {.lex_state = 66, .external_lex_state = 4}, - [1919] = {.lex_state = 66}, - [1920] = {.lex_state = 66, .external_lex_state = 4}, - [1921] = {.lex_state = 66, .external_lex_state = 4}, - [1922] = {.lex_state = 21}, - [1923] = {.lex_state = 66}, - [1924] = {.lex_state = 66, .external_lex_state = 4}, - [1925] = {.lex_state = 21}, - [1926] = {.lex_state = 66, .external_lex_state = 4}, - [1927] = {.lex_state = 21}, - [1928] = {.lex_state = 66, .external_lex_state = 4}, - [1929] = {.lex_state = 66, .external_lex_state = 4}, - [1930] = {.lex_state = 66, .external_lex_state = 4}, - [1931] = {.lex_state = 66, .external_lex_state = 4}, - [1932] = {.lex_state = 66}, - [1933] = {.lex_state = 66, .external_lex_state = 4}, - [1934] = {.lex_state = 66, .external_lex_state = 4}, - [1935] = {.lex_state = 66, .external_lex_state = 4}, - [1936] = {.lex_state = 21}, - [1937] = {.lex_state = 66, .external_lex_state = 4}, - [1938] = {.lex_state = 66, .external_lex_state = 4}, - [1939] = {.lex_state = 66, .external_lex_state = 4}, - [1940] = {.lex_state = 66, .external_lex_state = 4}, - [1941] = {.lex_state = 66}, - [1942] = {.lex_state = 66, .external_lex_state = 4}, - [1943] = {.lex_state = 21}, - [1944] = {.lex_state = 66, .external_lex_state = 4}, - [1945] = {.lex_state = 66, .external_lex_state = 4}, - [1946] = {.lex_state = 66, .external_lex_state = 4}, - [1947] = {.lex_state = 66, .external_lex_state = 4}, - [1948] = {.lex_state = 21}, - [1949] = {.lex_state = 21}, - [1950] = {.lex_state = 66, .external_lex_state = 4}, - [1951] = {.lex_state = 66, .external_lex_state = 4}, - [1952] = {.lex_state = 66, .external_lex_state = 4}, - [1953] = {.lex_state = 66, .external_lex_state = 4}, - [1954] = {.lex_state = 66, .external_lex_state = 4}, - [1955] = {.lex_state = 66, .external_lex_state = 4}, - [1956] = {.lex_state = 66}, - [1957] = {.lex_state = 21}, - [1958] = {.lex_state = 66, .external_lex_state = 4}, - [1959] = {.lex_state = 66, .external_lex_state = 4}, - [1960] = {.lex_state = 66}, - [1961] = {.lex_state = 66, .external_lex_state = 4}, - [1962] = {.lex_state = 66}, - [1963] = {.lex_state = 66, .external_lex_state = 4}, - [1964] = {.lex_state = 66}, - [1965] = {.lex_state = 66}, - [1966] = {.lex_state = 66, .external_lex_state = 4}, - [1967] = {.lex_state = 66, .external_lex_state = 4}, - [1968] = {.lex_state = 66, .external_lex_state = 4}, - [1969] = {.lex_state = 66, .external_lex_state = 4}, - [1970] = {.lex_state = 66}, - [1971] = {.lex_state = 66, .external_lex_state = 4}, - [1972] = {.lex_state = 66, .external_lex_state = 4}, - [1973] = {.lex_state = 66, .external_lex_state = 4}, - [1974] = {.lex_state = 66}, - [1975] = {.lex_state = 66}, - [1976] = {.lex_state = 66, .external_lex_state = 4}, - [1977] = {.lex_state = 66, .external_lex_state = 4}, - [1978] = {.lex_state = 21}, - [1979] = {.lex_state = 66, .external_lex_state = 4}, - [1980] = {.lex_state = 21}, - [1981] = {.lex_state = 66, .external_lex_state = 4}, - [1982] = {.lex_state = 21}, - [1983] = {.lex_state = 21}, - [1984] = {.lex_state = 66, .external_lex_state = 4}, - [1985] = {.lex_state = 66, .external_lex_state = 4}, - [1986] = {.lex_state = 66}, - [1987] = {.lex_state = 66, .external_lex_state = 4}, - [1988] = {.lex_state = 66}, - [1989] = {.lex_state = 66}, - [1990] = {.lex_state = 66, .external_lex_state = 4}, - [1991] = {.lex_state = 66, .external_lex_state = 4}, - [1992] = {.lex_state = 66, .external_lex_state = 4}, - [1993] = {.lex_state = 66}, - [1994] = {.lex_state = 66, .external_lex_state = 4}, - [1995] = {.lex_state = 66, .external_lex_state = 4}, - [1996] = {.lex_state = 66, .external_lex_state = 4}, - [1997] = {.lex_state = 66}, - [1998] = {.lex_state = 66, .external_lex_state = 4}, - [1999] = {.lex_state = 66, .external_lex_state = 4}, - [2000] = {.lex_state = 66}, - [2001] = {.lex_state = 66}, - [2002] = {.lex_state = 66, .external_lex_state = 4}, - [2003] = {.lex_state = 66}, - [2004] = {.lex_state = 66, .external_lex_state = 4}, - [2005] = {.lex_state = 66, .external_lex_state = 4}, - [2006] = {.lex_state = 66, .external_lex_state = 4}, - [2007] = {.lex_state = 66, .external_lex_state = 4}, - [2008] = {.lex_state = 66, .external_lex_state = 4}, - [2009] = {.lex_state = 66}, - [2010] = {.lex_state = 66, .external_lex_state = 4}, - [2011] = {.lex_state = 66, .external_lex_state = 4}, - [2012] = {.lex_state = 66, .external_lex_state = 4}, - [2013] = {.lex_state = 21}, - [2014] = {.lex_state = 66, .external_lex_state = 4}, - [2015] = {.lex_state = 66, .external_lex_state = 4}, - [2016] = {.lex_state = 66, .external_lex_state = 4}, - [2017] = {.lex_state = 66, .external_lex_state = 4}, - [2018] = {.lex_state = 66, .external_lex_state = 4}, - [2019] = {.lex_state = 66, .external_lex_state = 4}, - [2020] = {.lex_state = 66}, - [2021] = {.lex_state = 66, .external_lex_state = 4}, - [2022] = {.lex_state = 66}, - [2023] = {.lex_state = 66, .external_lex_state = 4}, - [2024] = {.lex_state = 66, .external_lex_state = 4}, - [2025] = {.lex_state = 66}, - [2026] = {.lex_state = 66}, - [2027] = {.lex_state = 66}, - [2028] = {.lex_state = 66, .external_lex_state = 4}, - [2029] = {.lex_state = 66}, - [2030] = {.lex_state = 29}, - [2031] = {.lex_state = 29}, - [2032] = {.lex_state = 29}, - [2033] = {.lex_state = 66}, - [2034] = {.lex_state = 66}, - [2035] = {.lex_state = 66}, - [2036] = {.lex_state = 21}, - [2037] = {.lex_state = 29}, - [2038] = {.lex_state = 66, .external_lex_state = 4}, - [2039] = {.lex_state = 21}, - [2040] = {.lex_state = 66, .external_lex_state = 4}, - [2041] = {.lex_state = 66}, - [2042] = {.lex_state = 21}, - [2043] = {.lex_state = 66}, - [2044] = {.lex_state = 66, .external_lex_state = 4}, - [2045] = {.lex_state = 29}, - [2046] = {.lex_state = 21}, - [2047] = {.lex_state = 66}, - [2048] = {.lex_state = 66}, - [2049] = {.lex_state = 21}, - [2050] = {.lex_state = 21}, - [2051] = {.lex_state = 66}, - [2052] = {.lex_state = 29}, - [2053] = {.lex_state = 21}, - [2054] = {.lex_state = 29}, - [2055] = {.lex_state = 21}, - [2056] = {.lex_state = 66}, - [2057] = {.lex_state = 29}, - [2058] = {.lex_state = 66}, - [2059] = {.lex_state = 66}, - [2060] = {.lex_state = 66}, - [2061] = {.lex_state = 21}, - [2062] = {.lex_state = 66}, - [2063] = {.lex_state = 29}, - [2064] = {.lex_state = 29}, - [2065] = {.lex_state = 66}, - [2066] = {.lex_state = 21}, - [2067] = {.lex_state = 21}, - [2068] = {.lex_state = 29}, - [2069] = {.lex_state = 66}, - [2070] = {.lex_state = 29}, - [2071] = {.lex_state = 29}, - [2072] = {.lex_state = 66, .external_lex_state = 4}, - [2073] = {.lex_state = 66}, - [2074] = {.lex_state = 21}, - [2075] = {.lex_state = 29}, - [2076] = {.lex_state = 66}, - [2077] = {.lex_state = 29}, - [2078] = {.lex_state = 66}, - [2079] = {.lex_state = 66, .external_lex_state = 4}, - [2080] = {.lex_state = 29}, - [2081] = {.lex_state = 29}, - [2082] = {.lex_state = 29}, - [2083] = {.lex_state = 66}, - [2084] = {.lex_state = 66}, - [2085] = {.lex_state = 66}, - [2086] = {.lex_state = 21}, - [2087] = {.lex_state = 66}, - [2088] = {.lex_state = 66}, - [2089] = {.lex_state = 66, .external_lex_state = 4}, - [2090] = {.lex_state = 29}, - [2091] = {.lex_state = 66}, - [2092] = {.lex_state = 66}, - [2093] = {.lex_state = 66}, - [2094] = {.lex_state = 66}, - [2095] = {.lex_state = 66}, - [2096] = {.lex_state = 66}, - [2097] = {.lex_state = 66}, - [2098] = {.lex_state = 0, .external_lex_state = 4}, - [2099] = {.lex_state = 66}, - [2100] = {.lex_state = 0, .external_lex_state = 4}, - [2101] = {.lex_state = 66, .external_lex_state = 4}, - [2102] = {.lex_state = 66, .external_lex_state = 4}, - [2103] = {.lex_state = 66, .external_lex_state = 4}, - [2104] = {.lex_state = 0, .external_lex_state = 4}, - [2105] = {.lex_state = 66, .external_lex_state = 4}, - [2106] = {.lex_state = 66, .external_lex_state = 4}, - [2107] = {.lex_state = 66, .external_lex_state = 4}, - [2108] = {.lex_state = 66, .external_lex_state = 4}, - [2109] = {.lex_state = 66, .external_lex_state = 4}, - [2110] = {.lex_state = 66, .external_lex_state = 4}, - [2111] = {.lex_state = 0, .external_lex_state = 4}, - [2112] = {.lex_state = 66, .external_lex_state = 4}, - [2113] = {.lex_state = 66, .external_lex_state = 4}, - [2114] = {.lex_state = 66, .external_lex_state = 4}, - [2115] = {.lex_state = 66}, - [2116] = {.lex_state = 66}, - [2117] = {.lex_state = 66}, - [2118] = {.lex_state = 66}, - [2119] = {.lex_state = 66}, - [2120] = {.lex_state = 66}, - [2121] = {.lex_state = 66}, - [2122] = {.lex_state = 66}, - [2123] = {.lex_state = 21}, - [2124] = {.lex_state = 66}, - [2125] = {.lex_state = 14}, - [2126] = {.lex_state = 66, .external_lex_state = 4}, - [2127] = {.lex_state = 66}, - [2128] = {.lex_state = 66}, - [2129] = {.lex_state = 66}, - [2130] = {.lex_state = 66}, - [2131] = {.lex_state = 66, .external_lex_state = 4}, - [2132] = {.lex_state = 66, .external_lex_state = 4}, - [2133] = {.lex_state = 66}, - [2134] = {.lex_state = 66}, - [2135] = {.lex_state = 66, .external_lex_state = 4}, - [2136] = {.lex_state = 66}, - [2137] = {.lex_state = 0, .external_lex_state = 4}, - [2138] = {.lex_state = 0, .external_lex_state = 4}, - [2139] = {.lex_state = 66}, - [2140] = {.lex_state = 66}, - [2141] = {.lex_state = 66}, - [2142] = {.lex_state = 66, .external_lex_state = 4}, - [2143] = {.lex_state = 66}, - [2144] = {.lex_state = 66}, - [2145] = {.lex_state = 66}, - [2146] = {.lex_state = 0, .external_lex_state = 4}, - [2147] = {.lex_state = 66}, - [2148] = {.lex_state = 66}, - [2149] = {.lex_state = 14}, - [2150] = {.lex_state = 66}, - [2151] = {.lex_state = 66}, - [2152] = {.lex_state = 66}, - [2153] = {.lex_state = 0, .external_lex_state = 4}, - [2154] = {.lex_state = 66, .external_lex_state = 4}, - [2155] = {.lex_state = 66}, - [2156] = {.lex_state = 66}, - [2157] = {.lex_state = 66, .external_lex_state = 4}, - [2158] = {.lex_state = 66}, - [2159] = {.lex_state = 66, .external_lex_state = 4}, - [2160] = {.lex_state = 66}, - [2161] = {.lex_state = 66}, - [2162] = {.lex_state = 66}, - [2163] = {.lex_state = 66}, - [2164] = {.lex_state = 66}, - [2165] = {.lex_state = 66}, - [2166] = {.lex_state = 66}, - [2167] = {.lex_state = 66}, - [2168] = {.lex_state = 66}, - [2169] = {.lex_state = 0, .external_lex_state = 4}, - [2170] = {.lex_state = 66}, - [2171] = {.lex_state = 0, .external_lex_state = 4}, - [2172] = {.lex_state = 66}, - [2173] = {.lex_state = 66}, - [2174] = {.lex_state = 66}, - [2175] = {.lex_state = 66}, - [2176] = {.lex_state = 66}, - [2177] = {.lex_state = 17}, - [2178] = {.lex_state = 66}, - [2179] = {.lex_state = 19, .external_lex_state = 5}, - [2180] = {.lex_state = 66}, - [2181] = {.lex_state = 19, .external_lex_state = 5}, - [2182] = {.lex_state = 19, .external_lex_state = 5}, - [2183] = {.lex_state = 66}, - [2184] = {.lex_state = 66}, - [2185] = {.lex_state = 66}, - [2186] = {.lex_state = 66}, - [2187] = {.lex_state = 66}, - [2188] = {.lex_state = 0, .external_lex_state = 4}, - [2189] = {.lex_state = 66}, - [2190] = {.lex_state = 17}, - [2191] = {.lex_state = 66}, - [2192] = {.lex_state = 66}, - [2193] = {.lex_state = 17}, - [2194] = {.lex_state = 66}, - [2195] = {.lex_state = 66}, - [2196] = {.lex_state = 66}, - [2197] = {.lex_state = 66}, - [2198] = {.lex_state = 0, .external_lex_state = 4}, - [2199] = {.lex_state = 66}, - [2200] = {.lex_state = 19, .external_lex_state = 5}, - [2201] = {.lex_state = 66}, - [2202] = {.lex_state = 66}, - [2203] = {.lex_state = 66}, - [2204] = {.lex_state = 19, .external_lex_state = 5}, - [2205] = {.lex_state = 0, .external_lex_state = 4}, - [2206] = {.lex_state = 66}, - [2207] = {.lex_state = 0, .external_lex_state = 4}, - [2208] = {.lex_state = 19, .external_lex_state = 5}, - [2209] = {.lex_state = 66}, - [2210] = {.lex_state = 0, .external_lex_state = 4}, - [2211] = {.lex_state = 66}, - [2212] = {.lex_state = 66}, - [2213] = {.lex_state = 66}, - [2214] = {.lex_state = 0, .external_lex_state = 4}, - [2215] = {.lex_state = 66}, - [2216] = {.lex_state = 66}, - [2217] = {.lex_state = 0, .external_lex_state = 4}, - [2218] = {.lex_state = 66}, - [2219] = {.lex_state = 21}, - [2220] = {.lex_state = 66}, - [2221] = {.lex_state = 21}, - [2222] = {.lex_state = 66}, - [2223] = {.lex_state = 0, .external_lex_state = 4}, - [2224] = {.lex_state = 66}, + [1] = {.lex_state = 70}, + [2] = {.lex_state = 70}, + [3] = {.lex_state = 70}, + [4] = {.lex_state = 70}, + [5] = {.lex_state = 70}, + [6] = {.lex_state = 70}, + [7] = {.lex_state = 70}, + [8] = {.lex_state = 70}, + [9] = {.lex_state = 70}, + [10] = {.lex_state = 70}, + [11] = {.lex_state = 70}, + [12] = {.lex_state = 70}, + [13] = {.lex_state = 70}, + [14] = {.lex_state = 70}, + [15] = {.lex_state = 70}, + [16] = {.lex_state = 70}, + [17] = {.lex_state = 70}, + [18] = {.lex_state = 70}, + [19] = {.lex_state = 70}, + [20] = {.lex_state = 70}, + [21] = {.lex_state = 70}, + [22] = {.lex_state = 70}, + [23] = {.lex_state = 70}, + [24] = {.lex_state = 70}, + [25] = {.lex_state = 70}, + [26] = {.lex_state = 70}, + [27] = {.lex_state = 70}, + [28] = {.lex_state = 70}, + [29] = {.lex_state = 70}, + [30] = {.lex_state = 70}, + [31] = {.lex_state = 70}, + [32] = {.lex_state = 70}, + [33] = {.lex_state = 70}, + [34] = {.lex_state = 70}, + [35] = {.lex_state = 70}, + [36] = {.lex_state = 70}, + [37] = {.lex_state = 70}, + [38] = {.lex_state = 70}, + [39] = {.lex_state = 70}, + [40] = {.lex_state = 70}, + [41] = {.lex_state = 70}, + [42] = {.lex_state = 70}, + [43] = {.lex_state = 70}, + [44] = {.lex_state = 70}, + [45] = {.lex_state = 70}, + [46] = {.lex_state = 70}, + [47] = {.lex_state = 70}, + [48] = {.lex_state = 70}, + [49] = {.lex_state = 70}, + [50] = {.lex_state = 70}, + [51] = {.lex_state = 70}, + [52] = {.lex_state = 70}, + [53] = {.lex_state = 70}, + [54] = {.lex_state = 70}, + [55] = {.lex_state = 70}, + [56] = {.lex_state = 70}, + [57] = {.lex_state = 18}, + [58] = {.lex_state = 18}, + [59] = {.lex_state = 18}, + [60] = {.lex_state = 18}, + [61] = {.lex_state = 18}, + [62] = {.lex_state = 18}, + [63] = {.lex_state = 18}, + [64] = {.lex_state = 18}, + [65] = {.lex_state = 18}, + [66] = {.lex_state = 69, .external_lex_state = 2}, + [67] = {.lex_state = 69, .external_lex_state = 3}, + [68] = {.lex_state = 18}, + [69] = {.lex_state = 18}, + [70] = {.lex_state = 18}, + [71] = {.lex_state = 18}, + [72] = {.lex_state = 18}, + [73] = {.lex_state = 18}, + [74] = {.lex_state = 18}, + [75] = {.lex_state = 69, .external_lex_state = 2}, + [76] = {.lex_state = 69, .external_lex_state = 2}, + [77] = {.lex_state = 69, .external_lex_state = 3}, + [78] = {.lex_state = 12, .external_lex_state = 2}, + [79] = {.lex_state = 69, .external_lex_state = 3}, + [80] = {.lex_state = 69, .external_lex_state = 3}, + [81] = {.lex_state = 69, .external_lex_state = 3}, + [82] = {.lex_state = 69, .external_lex_state = 3}, + [83] = {.lex_state = 69, .external_lex_state = 3}, + [84] = {.lex_state = 69, .external_lex_state = 3}, + [85] = {.lex_state = 69, .external_lex_state = 3}, + [86] = {.lex_state = 69, .external_lex_state = 3}, + [87] = {.lex_state = 69, .external_lex_state = 3}, + [88] = {.lex_state = 69, .external_lex_state = 3}, + [89] = {.lex_state = 69, .external_lex_state = 3}, + [90] = {.lex_state = 69, .external_lex_state = 3}, + [91] = {.lex_state = 69, .external_lex_state = 3}, + [92] = {.lex_state = 69, .external_lex_state = 3}, + [93] = {.lex_state = 69, .external_lex_state = 3}, + [94] = {.lex_state = 69, .external_lex_state = 3}, + [95] = {.lex_state = 69, .external_lex_state = 3}, + [96] = {.lex_state = 69, .external_lex_state = 3}, + [97] = {.lex_state = 69, .external_lex_state = 3}, + [98] = {.lex_state = 69, .external_lex_state = 3}, + [99] = {.lex_state = 69, .external_lex_state = 3}, + [100] = {.lex_state = 69, .external_lex_state = 3}, + [101] = {.lex_state = 69, .external_lex_state = 3}, + [102] = {.lex_state = 69, .external_lex_state = 3}, + [103] = {.lex_state = 69, .external_lex_state = 3}, + [104] = {.lex_state = 69, .external_lex_state = 3}, + [105] = {.lex_state = 69, .external_lex_state = 3}, + [106] = {.lex_state = 70}, + [107] = {.lex_state = 70}, + [108] = {.lex_state = 70}, + [109] = {.lex_state = 70}, + [110] = {.lex_state = 70}, + [111] = {.lex_state = 70}, + [112] = {.lex_state = 70, .external_lex_state = 4}, + [113] = {.lex_state = 70}, + [114] = {.lex_state = 70}, + [115] = {.lex_state = 10, .external_lex_state = 3}, + [116] = {.lex_state = 10, .external_lex_state = 3}, + [117] = {.lex_state = 70}, + [118] = {.lex_state = 70}, + [119] = {.lex_state = 10, .external_lex_state = 3}, + [120] = {.lex_state = 70}, + [121] = {.lex_state = 70}, + [122] = {.lex_state = 70}, + [123] = {.lex_state = 70}, + [124] = {.lex_state = 70}, + [125] = {.lex_state = 70}, + [126] = {.lex_state = 70}, + [127] = {.lex_state = 70}, + [128] = {.lex_state = 70}, + [129] = {.lex_state = 70}, + [130] = {.lex_state = 70}, + [131] = {.lex_state = 70}, + [132] = {.lex_state = 70}, + [133] = {.lex_state = 70}, + [134] = {.lex_state = 10, .external_lex_state = 3}, + [135] = {.lex_state = 10, .external_lex_state = 3}, + [136] = {.lex_state = 70}, + [137] = {.lex_state = 70}, + [138] = {.lex_state = 70}, + [139] = {.lex_state = 10, .external_lex_state = 3}, + [140] = {.lex_state = 70}, + [141] = {.lex_state = 70}, + [142] = {.lex_state = 10, .external_lex_state = 3}, + [143] = {.lex_state = 10, .external_lex_state = 3}, + [144] = {.lex_state = 70}, + [145] = {.lex_state = 70}, + [146] = {.lex_state = 70}, + [147] = {.lex_state = 10, .external_lex_state = 3}, + [148] = {.lex_state = 70}, + [149] = {.lex_state = 70}, + [150] = {.lex_state = 70}, + [151] = {.lex_state = 70}, + [152] = {.lex_state = 70}, + [153] = {.lex_state = 70}, + [154] = {.lex_state = 70, .external_lex_state = 4}, + [155] = {.lex_state = 70}, + [156] = {.lex_state = 70}, + [157] = {.lex_state = 70}, + [158] = {.lex_state = 10, .external_lex_state = 3}, + [159] = {.lex_state = 10, .external_lex_state = 3}, + [160] = {.lex_state = 10, .external_lex_state = 3}, + [161] = {.lex_state = 70}, + [162] = {.lex_state = 70}, + [163] = {.lex_state = 70}, + [164] = {.lex_state = 70}, + [165] = {.lex_state = 70}, + [166] = {.lex_state = 70}, + [167] = {.lex_state = 70}, + [168] = {.lex_state = 70}, + [169] = {.lex_state = 70}, + [170] = {.lex_state = 70}, + [171] = {.lex_state = 70}, + [172] = {.lex_state = 70}, + [173] = {.lex_state = 70}, + [174] = {.lex_state = 70}, + [175] = {.lex_state = 70}, + [176] = {.lex_state = 70}, + [177] = {.lex_state = 70}, + [178] = {.lex_state = 70}, + [179] = {.lex_state = 70}, + [180] = {.lex_state = 70}, + [181] = {.lex_state = 70}, + [182] = {.lex_state = 70}, + [183] = {.lex_state = 70}, + [184] = {.lex_state = 70}, + [185] = {.lex_state = 70}, + [186] = {.lex_state = 70}, + [187] = {.lex_state = 70}, + [188] = {.lex_state = 70}, + [189] = {.lex_state = 70}, + [190] = {.lex_state = 70}, + [191] = {.lex_state = 70}, + [192] = {.lex_state = 70}, + [193] = {.lex_state = 70}, + [194] = {.lex_state = 70}, + [195] = {.lex_state = 70}, + [196] = {.lex_state = 70}, + [197] = {.lex_state = 70}, + [198] = {.lex_state = 70}, + [199] = {.lex_state = 70}, + [200] = {.lex_state = 70}, + [201] = {.lex_state = 70}, + [202] = {.lex_state = 70}, + [203] = {.lex_state = 70}, + [204] = {.lex_state = 70}, + [205] = {.lex_state = 70}, + [206] = {.lex_state = 70}, + [207] = {.lex_state = 70}, + [208] = {.lex_state = 70}, + [209] = {.lex_state = 70}, + [210] = {.lex_state = 70}, + [211] = {.lex_state = 70}, + [212] = {.lex_state = 70}, + [213] = {.lex_state = 70}, + [214] = {.lex_state = 70}, + [215] = {.lex_state = 70}, + [216] = {.lex_state = 70}, + [217] = {.lex_state = 70}, + [218] = {.lex_state = 70}, + [219] = {.lex_state = 70}, + [220] = {.lex_state = 70}, + [221] = {.lex_state = 70}, + [222] = {.lex_state = 70}, + [223] = {.lex_state = 70}, + [224] = {.lex_state = 70}, + [225] = {.lex_state = 70}, + [226] = {.lex_state = 70}, + [227] = {.lex_state = 70}, + [228] = {.lex_state = 70}, + [229] = {.lex_state = 70}, + [230] = {.lex_state = 70}, + [231] = {.lex_state = 70}, + [232] = {.lex_state = 70}, + [233] = {.lex_state = 70}, + [234] = {.lex_state = 70}, + [235] = {.lex_state = 70}, + [236] = {.lex_state = 70}, + [237] = {.lex_state = 70}, + [238] = {.lex_state = 70}, + [239] = {.lex_state = 70}, + [240] = {.lex_state = 70}, + [241] = {.lex_state = 70}, + [242] = {.lex_state = 70}, + [243] = {.lex_state = 70}, + [244] = {.lex_state = 70}, + [245] = {.lex_state = 70}, + [246] = {.lex_state = 70}, + [247] = {.lex_state = 70}, + [248] = {.lex_state = 70}, + [249] = {.lex_state = 70}, + [250] = {.lex_state = 70}, + [251] = {.lex_state = 70}, + [252] = {.lex_state = 70}, + [253] = {.lex_state = 70}, + [254] = {.lex_state = 10, .external_lex_state = 3}, + [255] = {.lex_state = 70}, + [256] = {.lex_state = 70}, + [257] = {.lex_state = 70}, + [258] = {.lex_state = 70}, + [259] = {.lex_state = 70}, + [260] = {.lex_state = 70}, + [261] = {.lex_state = 70}, + [262] = {.lex_state = 70}, + [263] = {.lex_state = 70}, + [264] = {.lex_state = 70}, + [265] = {.lex_state = 70}, + [266] = {.lex_state = 70}, + [267] = {.lex_state = 70}, + [268] = {.lex_state = 70}, + [269] = {.lex_state = 70}, + [270] = {.lex_state = 70}, + [271] = {.lex_state = 70}, + [272] = {.lex_state = 70}, + [273] = {.lex_state = 70}, + [274] = {.lex_state = 70}, + [275] = {.lex_state = 70}, + [276] = {.lex_state = 70}, + [277] = {.lex_state = 70}, + [278] = {.lex_state = 70}, + [279] = {.lex_state = 70}, + [280] = {.lex_state = 70}, + [281] = {.lex_state = 70}, + [282] = {.lex_state = 70}, + [283] = {.lex_state = 70}, + [284] = {.lex_state = 70}, + [285] = {.lex_state = 70}, + [286] = {.lex_state = 70}, + [287] = {.lex_state = 70}, + [288] = {.lex_state = 70}, + [289] = {.lex_state = 70}, + [290] = {.lex_state = 70}, + [291] = {.lex_state = 70}, + [292] = {.lex_state = 70}, + [293] = {.lex_state = 70}, + [294] = {.lex_state = 70}, + [295] = {.lex_state = 70}, + [296] = {.lex_state = 70}, + [297] = {.lex_state = 70}, + [298] = {.lex_state = 70}, + [299] = {.lex_state = 70}, + [300] = {.lex_state = 70}, + [301] = {.lex_state = 70}, + [302] = {.lex_state = 70}, + [303] = {.lex_state = 70}, + [304] = {.lex_state = 70}, + [305] = {.lex_state = 70}, + [306] = {.lex_state = 70}, + [307] = {.lex_state = 70}, + [308] = {.lex_state = 70}, + [309] = {.lex_state = 70}, + [310] = {.lex_state = 70}, + [311] = {.lex_state = 70}, + [312] = {.lex_state = 70}, + [313] = {.lex_state = 70}, + [314] = {.lex_state = 70}, + [315] = {.lex_state = 70}, + [316] = {.lex_state = 70}, + [317] = {.lex_state = 70}, + [318] = {.lex_state = 70}, + [319] = {.lex_state = 70}, + [320] = {.lex_state = 70}, + [321] = {.lex_state = 70}, + [322] = {.lex_state = 70}, + [323] = {.lex_state = 70}, + [324] = {.lex_state = 70}, + [325] = {.lex_state = 70}, + [326] = {.lex_state = 70}, + [327] = {.lex_state = 70}, + [328] = {.lex_state = 70}, + [329] = {.lex_state = 70}, + [330] = {.lex_state = 70}, + [331] = {.lex_state = 70}, + [332] = {.lex_state = 70}, + [333] = {.lex_state = 70}, + [334] = {.lex_state = 70}, + [335] = {.lex_state = 70}, + [336] = {.lex_state = 70}, + [337] = {.lex_state = 70}, + [338] = {.lex_state = 70}, + [339] = {.lex_state = 70}, + [340] = {.lex_state = 70}, + [341] = {.lex_state = 70}, + [342] = {.lex_state = 70}, + [343] = {.lex_state = 70}, + [344] = {.lex_state = 70}, + [345] = {.lex_state = 70}, + [346] = {.lex_state = 70}, + [347] = {.lex_state = 70}, + [348] = {.lex_state = 70}, + [349] = {.lex_state = 70}, + [350] = {.lex_state = 70}, + [351] = {.lex_state = 70}, + [352] = {.lex_state = 70}, + [353] = {.lex_state = 70}, + [354] = {.lex_state = 70}, + [355] = {.lex_state = 70}, + [356] = {.lex_state = 70}, + [357] = {.lex_state = 70}, + [358] = {.lex_state = 70}, + [359] = {.lex_state = 70}, + [360] = {.lex_state = 70}, + [361] = {.lex_state = 70}, + [362] = {.lex_state = 70}, + [363] = {.lex_state = 70}, + [364] = {.lex_state = 70}, + [365] = {.lex_state = 70}, + [366] = {.lex_state = 70}, + [367] = {.lex_state = 70}, + [368] = {.lex_state = 70}, + [369] = {.lex_state = 10, .external_lex_state = 3}, + [370] = {.lex_state = 70}, + [371] = {.lex_state = 70}, + [372] = {.lex_state = 70}, + [373] = {.lex_state = 70}, + [374] = {.lex_state = 70}, + [375] = {.lex_state = 70}, + [376] = {.lex_state = 70}, + [377] = {.lex_state = 70}, + [378] = {.lex_state = 70}, + [379] = {.lex_state = 70}, + [380] = {.lex_state = 70}, + [381] = {.lex_state = 70}, + [382] = {.lex_state = 70}, + [383] = {.lex_state = 70}, + [384] = {.lex_state = 70}, + [385] = {.lex_state = 70}, + [386] = {.lex_state = 70}, + [387] = {.lex_state = 70}, + [388] = {.lex_state = 70}, + [389] = {.lex_state = 70}, + [390] = {.lex_state = 70}, + [391] = {.lex_state = 70}, + [392] = {.lex_state = 70}, + [393] = {.lex_state = 70}, + [394] = {.lex_state = 70}, + [395] = {.lex_state = 70}, + [396] = {.lex_state = 70}, + [397] = {.lex_state = 70}, + [398] = {.lex_state = 70}, + [399] = {.lex_state = 70}, + [400] = {.lex_state = 70}, + [401] = {.lex_state = 70}, + [402] = {.lex_state = 10, .external_lex_state = 3}, + [403] = {.lex_state = 70}, + [404] = {.lex_state = 70}, + [405] = {.lex_state = 70}, + [406] = {.lex_state = 70}, + [407] = {.lex_state = 70}, + [408] = {.lex_state = 70}, + [409] = {.lex_state = 70}, + [410] = {.lex_state = 70}, + [411] = {.lex_state = 70}, + [412] = {.lex_state = 70}, + [413] = {.lex_state = 70}, + [414] = {.lex_state = 70}, + [415] = {.lex_state = 70}, + [416] = {.lex_state = 70}, + [417] = {.lex_state = 70}, + [418] = {.lex_state = 70}, + [419] = {.lex_state = 70}, + [420] = {.lex_state = 10, .external_lex_state = 3}, + [421] = {.lex_state = 10, .external_lex_state = 3}, + [422] = {.lex_state = 10, .external_lex_state = 3}, + [423] = {.lex_state = 10, .external_lex_state = 3}, + [424] = {.lex_state = 10, .external_lex_state = 3}, + [425] = {.lex_state = 10, .external_lex_state = 3}, + [426] = {.lex_state = 70}, + [427] = {.lex_state = 10, .external_lex_state = 3}, + [428] = {.lex_state = 10, .external_lex_state = 3}, + [429] = {.lex_state = 70}, + [430] = {.lex_state = 10, .external_lex_state = 3}, + [431] = {.lex_state = 70}, + [432] = {.lex_state = 70}, + [433] = {.lex_state = 70}, + [434] = {.lex_state = 70}, + [435] = {.lex_state = 70}, + [436] = {.lex_state = 70}, + [437] = {.lex_state = 70}, + [438] = {.lex_state = 70}, + [439] = {.lex_state = 70}, + [440] = {.lex_state = 70}, + [441] = {.lex_state = 70}, + [442] = {.lex_state = 70}, + [443] = {.lex_state = 70}, + [444] = {.lex_state = 70}, + [445] = {.lex_state = 70}, + [446] = {.lex_state = 70}, + [447] = {.lex_state = 70}, + [448] = {.lex_state = 70}, + [449] = {.lex_state = 70}, + [450] = {.lex_state = 10, .external_lex_state = 2}, + [451] = {.lex_state = 70}, + [452] = {.lex_state = 70}, + [453] = {.lex_state = 10, .external_lex_state = 3}, + [454] = {.lex_state = 10, .external_lex_state = 3}, + [455] = {.lex_state = 10, .external_lex_state = 2}, + [456] = {.lex_state = 10, .external_lex_state = 3}, + [457] = {.lex_state = 10, .external_lex_state = 2}, + [458] = {.lex_state = 10, .external_lex_state = 3}, + [459] = {.lex_state = 10, .external_lex_state = 2}, + [460] = {.lex_state = 11, .external_lex_state = 2}, + [461] = {.lex_state = 10, .external_lex_state = 3}, + [462] = {.lex_state = 10, .external_lex_state = 3}, + [463] = {.lex_state = 10, .external_lex_state = 3}, + [464] = {.lex_state = 70}, + [465] = {.lex_state = 10, .external_lex_state = 3}, + [466] = {.lex_state = 10, .external_lex_state = 3}, + [467] = {.lex_state = 10, .external_lex_state = 3}, + [468] = {.lex_state = 10, .external_lex_state = 2}, + [469] = {.lex_state = 70}, + [470] = {.lex_state = 10, .external_lex_state = 2}, + [471] = {.lex_state = 70, .external_lex_state = 4}, + [472] = {.lex_state = 10, .external_lex_state = 2}, + [473] = {.lex_state = 10, .external_lex_state = 2}, + [474] = {.lex_state = 70}, + [475] = {.lex_state = 70}, + [476] = {.lex_state = 70, .external_lex_state = 4}, + [477] = {.lex_state = 10, .external_lex_state = 2}, + [478] = {.lex_state = 10, .external_lex_state = 2}, + [479] = {.lex_state = 70}, + [480] = {.lex_state = 11, .external_lex_state = 2}, + [481] = {.lex_state = 10, .external_lex_state = 2}, + [482] = {.lex_state = 70}, + [483] = {.lex_state = 70, .external_lex_state = 4}, + [484] = {.lex_state = 19}, + [485] = {.lex_state = 70}, + [486] = {.lex_state = 19}, + [487] = {.lex_state = 19}, + [488] = {.lex_state = 10, .external_lex_state = 3}, + [489] = {.lex_state = 10, .external_lex_state = 2}, + [490] = {.lex_state = 70}, + [491] = {.lex_state = 70, .external_lex_state = 4}, + [492] = {.lex_state = 70}, + [493] = {.lex_state = 19}, + [494] = {.lex_state = 19}, + [495] = {.lex_state = 70}, + [496] = {.lex_state = 70, .external_lex_state = 4}, + [497] = {.lex_state = 70}, + [498] = {.lex_state = 70, .external_lex_state = 4}, + [499] = {.lex_state = 70, .external_lex_state = 4}, + [500] = {.lex_state = 70, .external_lex_state = 4}, + [501] = {.lex_state = 70}, + [502] = {.lex_state = 70}, + [503] = {.lex_state = 10, .external_lex_state = 2}, + [504] = {.lex_state = 10, .external_lex_state = 2}, + [505] = {.lex_state = 10, .external_lex_state = 2}, + [506] = {.lex_state = 10, .external_lex_state = 2}, + [507] = {.lex_state = 70}, + [508] = {.lex_state = 70}, + [509] = {.lex_state = 70}, + [510] = {.lex_state = 70}, + [511] = {.lex_state = 70}, + [512] = {.lex_state = 70}, + [513] = {.lex_state = 70}, + [514] = {.lex_state = 70, .external_lex_state = 4}, + [515] = {.lex_state = 70, .external_lex_state = 4}, + [516] = {.lex_state = 70}, + [517] = {.lex_state = 70}, + [518] = {.lex_state = 70}, + [519] = {.lex_state = 70, .external_lex_state = 4}, + [520] = {.lex_state = 70, .external_lex_state = 4}, + [521] = {.lex_state = 70}, + [522] = {.lex_state = 70, .external_lex_state = 4}, + [523] = {.lex_state = 70, .external_lex_state = 4}, + [524] = {.lex_state = 70, .external_lex_state = 4}, + [525] = {.lex_state = 70}, + [526] = {.lex_state = 70}, + [527] = {.lex_state = 70, .external_lex_state = 4}, + [528] = {.lex_state = 70}, + [529] = {.lex_state = 70, .external_lex_state = 4}, + [530] = {.lex_state = 70, .external_lex_state = 4}, + [531] = {.lex_state = 70, .external_lex_state = 4}, + [532] = {.lex_state = 70, .external_lex_state = 4}, + [533] = {.lex_state = 70}, + [534] = {.lex_state = 70}, + [535] = {.lex_state = 70}, + [536] = {.lex_state = 70}, + [537] = {.lex_state = 70}, + [538] = {.lex_state = 70}, + [539] = {.lex_state = 70}, + [540] = {.lex_state = 70}, + [541] = {.lex_state = 70}, + [542] = {.lex_state = 70}, + [543] = {.lex_state = 70}, + [544] = {.lex_state = 70}, + [545] = {.lex_state = 70}, + [546] = {.lex_state = 70}, + [547] = {.lex_state = 70}, + [548] = {.lex_state = 70}, + [549] = {.lex_state = 70}, + [550] = {.lex_state = 70}, + [551] = {.lex_state = 70}, + [552] = {.lex_state = 70}, + [553] = {.lex_state = 70}, + [554] = {.lex_state = 70}, + [555] = {.lex_state = 70}, + [556] = {.lex_state = 70}, + [557] = {.lex_state = 70}, + [558] = {.lex_state = 70}, + [559] = {.lex_state = 70}, + [560] = {.lex_state = 70}, + [561] = {.lex_state = 70}, + [562] = {.lex_state = 70}, + [563] = {.lex_state = 70}, + [564] = {.lex_state = 70}, + [565] = {.lex_state = 70}, + [566] = {.lex_state = 70}, + [567] = {.lex_state = 70}, + [568] = {.lex_state = 70}, + [569] = {.lex_state = 70}, + [570] = {.lex_state = 70}, + [571] = {.lex_state = 70}, + [572] = {.lex_state = 70}, + [573] = {.lex_state = 70}, + [574] = {.lex_state = 70}, + [575] = {.lex_state = 70}, + [576] = {.lex_state = 70}, + [577] = {.lex_state = 70}, + [578] = {.lex_state = 70}, + [579] = {.lex_state = 70}, + [580] = {.lex_state = 70}, + [581] = {.lex_state = 70}, + [582] = {.lex_state = 70}, + [583] = {.lex_state = 70}, + [584] = {.lex_state = 70}, + [585] = {.lex_state = 70}, + [586] = {.lex_state = 70}, + [587] = {.lex_state = 70}, + [588] = {.lex_state = 70}, + [589] = {.lex_state = 70}, + [590] = {.lex_state = 70}, + [591] = {.lex_state = 70}, + [592] = {.lex_state = 70}, + [593] = {.lex_state = 70}, + [594] = {.lex_state = 70}, + [595] = {.lex_state = 70}, + [596] = {.lex_state = 70}, + [597] = {.lex_state = 70}, + [598] = {.lex_state = 70}, + [599] = {.lex_state = 70}, + [600] = {.lex_state = 70}, + [601] = {.lex_state = 70}, + [602] = {.lex_state = 70}, + [603] = {.lex_state = 70}, + [604] = {.lex_state = 70}, + [605] = {.lex_state = 70}, + [606] = {.lex_state = 70}, + [607] = {.lex_state = 70}, + [608] = {.lex_state = 70}, + [609] = {.lex_state = 70}, + [610] = {.lex_state = 70}, + [611] = {.lex_state = 70}, + [612] = {.lex_state = 70}, + [613] = {.lex_state = 70}, + [614] = {.lex_state = 70}, + [615] = {.lex_state = 70}, + [616] = {.lex_state = 70}, + [617] = {.lex_state = 70}, + [618] = {.lex_state = 70}, + [619] = {.lex_state = 10, .external_lex_state = 2}, + [620] = {.lex_state = 10, .external_lex_state = 3}, + [621] = {.lex_state = 10, .external_lex_state = 3}, + [622] = {.lex_state = 10, .external_lex_state = 3}, + [623] = {.lex_state = 10, .external_lex_state = 3}, + [624] = {.lex_state = 10, .external_lex_state = 3}, + [625] = {.lex_state = 10, .external_lex_state = 3}, + [626] = {.lex_state = 10, .external_lex_state = 3}, + [627] = {.lex_state = 10, .external_lex_state = 2}, + [628] = {.lex_state = 10, .external_lex_state = 2}, + [629] = {.lex_state = 11, .external_lex_state = 2}, + [630] = {.lex_state = 10, .external_lex_state = 2}, + [631] = {.lex_state = 10, .external_lex_state = 3}, + [632] = {.lex_state = 10, .external_lex_state = 3}, + [633] = {.lex_state = 10, .external_lex_state = 3}, + [634] = {.lex_state = 10, .external_lex_state = 3}, + [635] = {.lex_state = 10, .external_lex_state = 3}, + [636] = {.lex_state = 10, .external_lex_state = 3}, + [637] = {.lex_state = 10, .external_lex_state = 3}, + [638] = {.lex_state = 10, .external_lex_state = 3}, + [639] = {.lex_state = 10, .external_lex_state = 3}, + [640] = {.lex_state = 11, .external_lex_state = 2}, + [641] = {.lex_state = 10, .external_lex_state = 2}, + [642] = {.lex_state = 10, .external_lex_state = 2}, + [643] = {.lex_state = 10, .external_lex_state = 2}, + [644] = {.lex_state = 10, .external_lex_state = 2}, + [645] = {.lex_state = 10, .external_lex_state = 2}, + [646] = {.lex_state = 10, .external_lex_state = 2}, + [647] = {.lex_state = 10, .external_lex_state = 2}, + [648] = {.lex_state = 10, .external_lex_state = 3}, + [649] = {.lex_state = 10, .external_lex_state = 2}, + [650] = {.lex_state = 10, .external_lex_state = 2}, + [651] = {.lex_state = 10, .external_lex_state = 3}, + [652] = {.lex_state = 10, .external_lex_state = 2}, + [653] = {.lex_state = 10, .external_lex_state = 3}, + [654] = {.lex_state = 10, .external_lex_state = 3}, + [655] = {.lex_state = 10, .external_lex_state = 2}, + [656] = {.lex_state = 10, .external_lex_state = 3}, + [657] = {.lex_state = 10, .external_lex_state = 3}, + [658] = {.lex_state = 10, .external_lex_state = 2}, + [659] = {.lex_state = 10, .external_lex_state = 2}, + [660] = {.lex_state = 10, .external_lex_state = 2}, + [661] = {.lex_state = 10, .external_lex_state = 2}, + [662] = {.lex_state = 10, .external_lex_state = 2}, + [663] = {.lex_state = 10, .external_lex_state = 2}, + [664] = {.lex_state = 10, .external_lex_state = 2}, + [665] = {.lex_state = 10, .external_lex_state = 2}, + [666] = {.lex_state = 10, .external_lex_state = 2}, + [667] = {.lex_state = 10, .external_lex_state = 3}, + [668] = {.lex_state = 10, .external_lex_state = 3}, + [669] = {.lex_state = 10, .external_lex_state = 3}, + [670] = {.lex_state = 10, .external_lex_state = 2}, + [671] = {.lex_state = 10, .external_lex_state = 3}, + [672] = {.lex_state = 10, .external_lex_state = 2}, + [673] = {.lex_state = 10, .external_lex_state = 3}, + [674] = {.lex_state = 10, .external_lex_state = 2}, + [675] = {.lex_state = 10, .external_lex_state = 3}, + [676] = {.lex_state = 10, .external_lex_state = 3}, + [677] = {.lex_state = 10, .external_lex_state = 3}, + [678] = {.lex_state = 10, .external_lex_state = 3}, + [679] = {.lex_state = 10, .external_lex_state = 2}, + [680] = {.lex_state = 11, .external_lex_state = 2}, + [681] = {.lex_state = 10, .external_lex_state = 2}, + [682] = {.lex_state = 10, .external_lex_state = 2}, + [683] = {.lex_state = 10, .external_lex_state = 2}, + [684] = {.lex_state = 10, .external_lex_state = 2}, + [685] = {.lex_state = 10, .external_lex_state = 3}, + [686] = {.lex_state = 11, .external_lex_state = 2}, + [687] = {.lex_state = 10, .external_lex_state = 2}, + [688] = {.lex_state = 10, .external_lex_state = 3}, + [689] = {.lex_state = 10, .external_lex_state = 2}, + [690] = {.lex_state = 10, .external_lex_state = 3}, + [691] = {.lex_state = 11, .external_lex_state = 2}, + [692] = {.lex_state = 10, .external_lex_state = 2}, + [693] = {.lex_state = 10, .external_lex_state = 3}, + [694] = {.lex_state = 10, .external_lex_state = 3}, + [695] = {.lex_state = 10, .external_lex_state = 3}, + [696] = {.lex_state = 10, .external_lex_state = 3}, + [697] = {.lex_state = 10, .external_lex_state = 2}, + [698] = {.lex_state = 11, .external_lex_state = 2}, + [699] = {.lex_state = 10, .external_lex_state = 2}, + [700] = {.lex_state = 10, .external_lex_state = 2}, + [701] = {.lex_state = 10, .external_lex_state = 3}, + [702] = {.lex_state = 10, .external_lex_state = 3}, + [703] = {.lex_state = 10, .external_lex_state = 3}, + [704] = {.lex_state = 10, .external_lex_state = 3}, + [705] = {.lex_state = 10, .external_lex_state = 3}, + [706] = {.lex_state = 10, .external_lex_state = 2}, + [707] = {.lex_state = 10, .external_lex_state = 3}, + [708] = {.lex_state = 10, .external_lex_state = 3}, + [709] = {.lex_state = 10, .external_lex_state = 3}, + [710] = {.lex_state = 10, .external_lex_state = 3}, + [711] = {.lex_state = 10, .external_lex_state = 3}, + [712] = {.lex_state = 70}, + [713] = {.lex_state = 70}, + [714] = {.lex_state = 10, .external_lex_state = 3}, + [715] = {.lex_state = 10, .external_lex_state = 3}, + [716] = {.lex_state = 10, .external_lex_state = 3}, + [717] = {.lex_state = 70}, + [718] = {.lex_state = 10, .external_lex_state = 2}, + [719] = {.lex_state = 10, .external_lex_state = 3}, + [720] = {.lex_state = 10, .external_lex_state = 3}, + [721] = {.lex_state = 10, .external_lex_state = 3}, + [722] = {.lex_state = 10, .external_lex_state = 3}, + [723] = {.lex_state = 70}, + [724] = {.lex_state = 10, .external_lex_state = 3}, + [725] = {.lex_state = 10, .external_lex_state = 3}, + [726] = {.lex_state = 70}, + [727] = {.lex_state = 10, .external_lex_state = 2}, + [728] = {.lex_state = 10, .external_lex_state = 3}, + [729] = {.lex_state = 10, .external_lex_state = 3}, + [730] = {.lex_state = 10, .external_lex_state = 2}, + [731] = {.lex_state = 11, .external_lex_state = 2}, + [732] = {.lex_state = 70}, + [733] = {.lex_state = 10, .external_lex_state = 2}, + [734] = {.lex_state = 10, .external_lex_state = 2}, + [735] = {.lex_state = 11, .external_lex_state = 2}, + [736] = {.lex_state = 10, .external_lex_state = 3}, + [737] = {.lex_state = 10, .external_lex_state = 3}, + [738] = {.lex_state = 10, .external_lex_state = 3}, + [739] = {.lex_state = 70}, + [740] = {.lex_state = 10, .external_lex_state = 3}, + [741] = {.lex_state = 10, .external_lex_state = 3}, + [742] = {.lex_state = 10, .external_lex_state = 3}, + [743] = {.lex_state = 10, .external_lex_state = 2}, + [744] = {.lex_state = 10, .external_lex_state = 2}, + [745] = {.lex_state = 10, .external_lex_state = 2}, + [746] = {.lex_state = 10, .external_lex_state = 3}, + [747] = {.lex_state = 11, .external_lex_state = 2}, + [748] = {.lex_state = 10, .external_lex_state = 2}, + [749] = {.lex_state = 11, .external_lex_state = 2}, + [750] = {.lex_state = 10, .external_lex_state = 3}, + [751] = {.lex_state = 10, .external_lex_state = 2}, + [752] = {.lex_state = 10, .external_lex_state = 3}, + [753] = {.lex_state = 10, .external_lex_state = 2}, + [754] = {.lex_state = 11, .external_lex_state = 2}, + [755] = {.lex_state = 10, .external_lex_state = 2}, + [756] = {.lex_state = 10, .external_lex_state = 2}, + [757] = {.lex_state = 10, .external_lex_state = 2}, + [758] = {.lex_state = 10, .external_lex_state = 2}, + [759] = {.lex_state = 11, .external_lex_state = 2}, + [760] = {.lex_state = 10, .external_lex_state = 2}, + [761] = {.lex_state = 10, .external_lex_state = 2}, + [762] = {.lex_state = 10, .external_lex_state = 2}, + [763] = {.lex_state = 10, .external_lex_state = 2}, + [764] = {.lex_state = 10, .external_lex_state = 2}, + [765] = {.lex_state = 10, .external_lex_state = 3}, + [766] = {.lex_state = 10, .external_lex_state = 3}, + [767] = {.lex_state = 10, .external_lex_state = 2}, + [768] = {.lex_state = 11, .external_lex_state = 2}, + [769] = {.lex_state = 10, .external_lex_state = 2}, + [770] = {.lex_state = 10, .external_lex_state = 2}, + [771] = {.lex_state = 10, .external_lex_state = 3}, + [772] = {.lex_state = 11, .external_lex_state = 2}, + [773] = {.lex_state = 10, .external_lex_state = 3}, + [774] = {.lex_state = 10, .external_lex_state = 2}, + [775] = {.lex_state = 11, .external_lex_state = 2}, + [776] = {.lex_state = 11, .external_lex_state = 2}, + [777] = {.lex_state = 19}, + [778] = {.lex_state = 10, .external_lex_state = 3}, + [779] = {.lex_state = 10, .external_lex_state = 2}, + [780] = {.lex_state = 10, .external_lex_state = 2}, + [781] = {.lex_state = 10, .external_lex_state = 3}, + [782] = {.lex_state = 11, .external_lex_state = 2}, + [783] = {.lex_state = 10, .external_lex_state = 2}, + [784] = {.lex_state = 11, .external_lex_state = 2}, + [785] = {.lex_state = 10, .external_lex_state = 2}, + [786] = {.lex_state = 11, .external_lex_state = 2}, + [787] = {.lex_state = 11, .external_lex_state = 2}, + [788] = {.lex_state = 10, .external_lex_state = 3}, + [789] = {.lex_state = 10, .external_lex_state = 2}, + [790] = {.lex_state = 10, .external_lex_state = 2}, + [791] = {.lex_state = 11, .external_lex_state = 2}, + [792] = {.lex_state = 19}, + [793] = {.lex_state = 11, .external_lex_state = 2}, + [794] = {.lex_state = 11, .external_lex_state = 2}, + [795] = {.lex_state = 10, .external_lex_state = 2}, + [796] = {.lex_state = 11, .external_lex_state = 2}, + [797] = {.lex_state = 10, .external_lex_state = 2}, + [798] = {.lex_state = 19}, + [799] = {.lex_state = 19}, + [800] = {.lex_state = 19}, + [801] = {.lex_state = 19}, + [802] = {.lex_state = 70}, + [803] = {.lex_state = 10, .external_lex_state = 2}, + [804] = {.lex_state = 19}, + [805] = {.lex_state = 19}, + [806] = {.lex_state = 19}, + [807] = {.lex_state = 19}, + [808] = {.lex_state = 19}, + [809] = {.lex_state = 19}, + [810] = {.lex_state = 19}, + [811] = {.lex_state = 19}, + [812] = {.lex_state = 19}, + [813] = {.lex_state = 19}, + [814] = {.lex_state = 19}, + [815] = {.lex_state = 19}, + [816] = {.lex_state = 19}, + [817] = {.lex_state = 19}, + [818] = {.lex_state = 21}, + [819] = {.lex_state = 19}, + [820] = {.lex_state = 19}, + [821] = {.lex_state = 19}, + [822] = {.lex_state = 19}, + [823] = {.lex_state = 10, .external_lex_state = 3}, + [824] = {.lex_state = 10, .external_lex_state = 2}, + [825] = {.lex_state = 10, .external_lex_state = 2}, + [826] = {.lex_state = 10, .external_lex_state = 2}, + [827] = {.lex_state = 10, .external_lex_state = 2}, + [828] = {.lex_state = 70}, + [829] = {.lex_state = 10, .external_lex_state = 2}, + [830] = {.lex_state = 19}, + [831] = {.lex_state = 19}, + [832] = {.lex_state = 19}, + [833] = {.lex_state = 10, .external_lex_state = 2}, + [834] = {.lex_state = 19}, + [835] = {.lex_state = 19}, + [836] = {.lex_state = 19}, + [837] = {.lex_state = 19}, + [838] = {.lex_state = 19}, + [839] = {.lex_state = 19}, + [840] = {.lex_state = 19}, + [841] = {.lex_state = 19}, + [842] = {.lex_state = 19}, + [843] = {.lex_state = 19}, + [844] = {.lex_state = 19}, + [845] = {.lex_state = 19}, + [846] = {.lex_state = 19}, + [847] = {.lex_state = 19}, + [848] = {.lex_state = 19}, + [849] = {.lex_state = 19}, + [850] = {.lex_state = 19}, + [851] = {.lex_state = 19}, + [852] = {.lex_state = 19}, + [853] = {.lex_state = 19}, + [854] = {.lex_state = 19}, + [855] = {.lex_state = 19}, + [856] = {.lex_state = 10, .external_lex_state = 2}, + [857] = {.lex_state = 19}, + [858] = {.lex_state = 19}, + [859] = {.lex_state = 19}, + [860] = {.lex_state = 19}, + [861] = {.lex_state = 19}, + [862] = {.lex_state = 19}, + [863] = {.lex_state = 19}, + [864] = {.lex_state = 19}, + [865] = {.lex_state = 19}, + [866] = {.lex_state = 19}, + [867] = {.lex_state = 19}, + [868] = {.lex_state = 19}, + [869] = {.lex_state = 19}, + [870] = {.lex_state = 19}, + [871] = {.lex_state = 19}, + [872] = {.lex_state = 19}, + [873] = {.lex_state = 19}, + [874] = {.lex_state = 19}, + [875] = {.lex_state = 19}, + [876] = {.lex_state = 19}, + [877] = {.lex_state = 19}, + [878] = {.lex_state = 19}, + [879] = {.lex_state = 19}, + [880] = {.lex_state = 19}, + [881] = {.lex_state = 19}, + [882] = {.lex_state = 19}, + [883] = {.lex_state = 19}, + [884] = {.lex_state = 19}, + [885] = {.lex_state = 19}, + [886] = {.lex_state = 19}, + [887] = {.lex_state = 19}, + [888] = {.lex_state = 19}, + [889] = {.lex_state = 19}, + [890] = {.lex_state = 19}, + [891] = {.lex_state = 19}, + [892] = {.lex_state = 19}, + [893] = {.lex_state = 19}, + [894] = {.lex_state = 19}, + [895] = {.lex_state = 19}, + [896] = {.lex_state = 19}, + [897] = {.lex_state = 19}, + [898] = {.lex_state = 19}, + [899] = {.lex_state = 19}, + [900] = {.lex_state = 19}, + [901] = {.lex_state = 19}, + [902] = {.lex_state = 19}, + [903] = {.lex_state = 19}, + [904] = {.lex_state = 19}, + [905] = {.lex_state = 19}, + [906] = {.lex_state = 19}, + [907] = {.lex_state = 19}, + [908] = {.lex_state = 19}, + [909] = {.lex_state = 19}, + [910] = {.lex_state = 19}, + [911] = {.lex_state = 19}, + [912] = {.lex_state = 19}, + [913] = {.lex_state = 19}, + [914] = {.lex_state = 19}, + [915] = {.lex_state = 19}, + [916] = {.lex_state = 19}, + [917] = {.lex_state = 19}, + [918] = {.lex_state = 19}, + [919] = {.lex_state = 19}, + [920] = {.lex_state = 19}, + [921] = {.lex_state = 19}, + [922] = {.lex_state = 19}, + [923] = {.lex_state = 19}, + [924] = {.lex_state = 19}, + [925] = {.lex_state = 19}, + [926] = {.lex_state = 19}, + [927] = {.lex_state = 19}, + [928] = {.lex_state = 19}, + [929] = {.lex_state = 19}, + [930] = {.lex_state = 19}, + [931] = {.lex_state = 19}, + [932] = {.lex_state = 19}, + [933] = {.lex_state = 19}, + [934] = {.lex_state = 19}, + [935] = {.lex_state = 19}, + [936] = {.lex_state = 19}, + [937] = {.lex_state = 19}, + [938] = {.lex_state = 19}, + [939] = {.lex_state = 69, .external_lex_state = 3}, + [940] = {.lex_state = 70, .external_lex_state = 4}, + [941] = {.lex_state = 70, .external_lex_state = 4}, + [942] = {.lex_state = 70, .external_lex_state = 4}, + [943] = {.lex_state = 70, .external_lex_state = 4}, + [944] = {.lex_state = 70, .external_lex_state = 4}, + [945] = {.lex_state = 70}, + [946] = {.lex_state = 70}, + [947] = {.lex_state = 70}, + [948] = {.lex_state = 70}, + [949] = {.lex_state = 70, .external_lex_state = 4}, + [950] = {.lex_state = 70}, + [951] = {.lex_state = 70}, + [952] = {.lex_state = 70}, + [953] = {.lex_state = 70}, + [954] = {.lex_state = 70}, + [955] = {.lex_state = 70}, + [956] = {.lex_state = 70}, + [957] = {.lex_state = 70}, + [958] = {.lex_state = 70}, + [959] = {.lex_state = 70}, + [960] = {.lex_state = 70}, + [961] = {.lex_state = 69, .external_lex_state = 2}, + [962] = {.lex_state = 69, .external_lex_state = 2}, + [963] = {.lex_state = 69, .external_lex_state = 2}, + [964] = {.lex_state = 70}, + [965] = {.lex_state = 70}, + [966] = {.lex_state = 70}, + [967] = {.lex_state = 70}, + [968] = {.lex_state = 70}, + [969] = {.lex_state = 69, .external_lex_state = 2}, + [970] = {.lex_state = 69, .external_lex_state = 2}, + [971] = {.lex_state = 69, .external_lex_state = 2}, + [972] = {.lex_state = 69, .external_lex_state = 2}, + [973] = {.lex_state = 69, .external_lex_state = 2}, + [974] = {.lex_state = 69, .external_lex_state = 2}, + [975] = {.lex_state = 69, .external_lex_state = 3}, + [976] = {.lex_state = 69, .external_lex_state = 3}, + [977] = {.lex_state = 69, .external_lex_state = 3}, + [978] = {.lex_state = 69, .external_lex_state = 2}, + [979] = {.lex_state = 69, .external_lex_state = 2}, + [980] = {.lex_state = 69, .external_lex_state = 2}, + [981] = {.lex_state = 69, .external_lex_state = 2}, + [982] = {.lex_state = 69, .external_lex_state = 2}, + [983] = {.lex_state = 70}, + [984] = {.lex_state = 69, .external_lex_state = 2}, + [985] = {.lex_state = 69, .external_lex_state = 2}, + [986] = {.lex_state = 69, .external_lex_state = 2}, + [987] = {.lex_state = 69, .external_lex_state = 2}, + [988] = {.lex_state = 69, .external_lex_state = 2}, + [989] = {.lex_state = 69, .external_lex_state = 2}, + [990] = {.lex_state = 69, .external_lex_state = 2}, + [991] = {.lex_state = 69, .external_lex_state = 2}, + [992] = {.lex_state = 69, .external_lex_state = 2}, + [993] = {.lex_state = 69, .external_lex_state = 2}, + [994] = {.lex_state = 69, .external_lex_state = 2}, + [995] = {.lex_state = 69, .external_lex_state = 2}, + [996] = {.lex_state = 69, .external_lex_state = 2}, + [997] = {.lex_state = 69, .external_lex_state = 2}, + [998] = {.lex_state = 69, .external_lex_state = 2}, + [999] = {.lex_state = 69, .external_lex_state = 2}, + [1000] = {.lex_state = 69, .external_lex_state = 2}, + [1001] = {.lex_state = 69, .external_lex_state = 2}, + [1002] = {.lex_state = 69, .external_lex_state = 2}, + [1003] = {.lex_state = 69, .external_lex_state = 2}, + [1004] = {.lex_state = 69, .external_lex_state = 2}, + [1005] = {.lex_state = 69, .external_lex_state = 2}, + [1006] = {.lex_state = 69, .external_lex_state = 2}, + [1007] = {.lex_state = 69, .external_lex_state = 2}, + [1008] = {.lex_state = 69, .external_lex_state = 2}, + [1009] = {.lex_state = 69, .external_lex_state = 3}, + [1010] = {.lex_state = 69, .external_lex_state = 3}, + [1011] = {.lex_state = 69, .external_lex_state = 3}, + [1012] = {.lex_state = 69, .external_lex_state = 3}, + [1013] = {.lex_state = 69, .external_lex_state = 2}, + [1014] = {.lex_state = 70}, + [1015] = {.lex_state = 69, .external_lex_state = 2}, + [1016] = {.lex_state = 69, .external_lex_state = 2}, + [1017] = {.lex_state = 69, .external_lex_state = 2}, + [1018] = {.lex_state = 69, .external_lex_state = 2}, + [1019] = {.lex_state = 69, .external_lex_state = 2}, + [1020] = {.lex_state = 69, .external_lex_state = 3}, + [1021] = {.lex_state = 69, .external_lex_state = 2}, + [1022] = {.lex_state = 69, .external_lex_state = 2}, + [1023] = {.lex_state = 70}, + [1024] = {.lex_state = 69, .external_lex_state = 2}, + [1025] = {.lex_state = 69, .external_lex_state = 3}, + [1026] = {.lex_state = 70}, + [1027] = {.lex_state = 70}, + [1028] = {.lex_state = 70}, + [1029] = {.lex_state = 69, .external_lex_state = 2}, + [1030] = {.lex_state = 69, .external_lex_state = 2}, + [1031] = {.lex_state = 69, .external_lex_state = 2}, + [1032] = {.lex_state = 69, .external_lex_state = 2}, + [1033] = {.lex_state = 69, .external_lex_state = 2}, + [1034] = {.lex_state = 69, .external_lex_state = 2}, + [1035] = {.lex_state = 69, .external_lex_state = 2}, + [1036] = {.lex_state = 69, .external_lex_state = 3}, + [1037] = {.lex_state = 69, .external_lex_state = 3}, + [1038] = {.lex_state = 69, .external_lex_state = 2}, + [1039] = {.lex_state = 69, .external_lex_state = 2}, + [1040] = {.lex_state = 69, .external_lex_state = 2}, + [1041] = {.lex_state = 69, .external_lex_state = 3}, + [1042] = {.lex_state = 69, .external_lex_state = 2}, + [1043] = {.lex_state = 69, .external_lex_state = 2}, + [1044] = {.lex_state = 69, .external_lex_state = 3}, + [1045] = {.lex_state = 69, .external_lex_state = 2}, + [1046] = {.lex_state = 69, .external_lex_state = 3}, + [1047] = {.lex_state = 69, .external_lex_state = 2}, + [1048] = {.lex_state = 69, .external_lex_state = 2}, + [1049] = {.lex_state = 69, .external_lex_state = 2}, + [1050] = {.lex_state = 69, .external_lex_state = 2}, + [1051] = {.lex_state = 69, .external_lex_state = 2}, + [1052] = {.lex_state = 69, .external_lex_state = 2}, + [1053] = {.lex_state = 69, .external_lex_state = 2}, + [1054] = {.lex_state = 69, .external_lex_state = 2}, + [1055] = {.lex_state = 69, .external_lex_state = 2}, + [1056] = {.lex_state = 69, .external_lex_state = 2}, + [1057] = {.lex_state = 69, .external_lex_state = 2}, + [1058] = {.lex_state = 69, .external_lex_state = 2}, + [1059] = {.lex_state = 69, .external_lex_state = 2}, + [1060] = {.lex_state = 69, .external_lex_state = 2}, + [1061] = {.lex_state = 69, .external_lex_state = 2}, + [1062] = {.lex_state = 69, .external_lex_state = 3}, + [1063] = {.lex_state = 69, .external_lex_state = 2}, + [1064] = {.lex_state = 69, .external_lex_state = 2}, + [1065] = {.lex_state = 69, .external_lex_state = 2}, + [1066] = {.lex_state = 69, .external_lex_state = 2}, + [1067] = {.lex_state = 69, .external_lex_state = 2}, + [1068] = {.lex_state = 69, .external_lex_state = 3}, + [1069] = {.lex_state = 69, .external_lex_state = 2}, + [1070] = {.lex_state = 69, .external_lex_state = 2}, + [1071] = {.lex_state = 69, .external_lex_state = 2}, + [1072] = {.lex_state = 69, .external_lex_state = 2}, + [1073] = {.lex_state = 69, .external_lex_state = 2}, + [1074] = {.lex_state = 69, .external_lex_state = 2}, + [1075] = {.lex_state = 69, .external_lex_state = 3}, + [1076] = {.lex_state = 69, .external_lex_state = 2}, + [1077] = {.lex_state = 69, .external_lex_state = 3}, + [1078] = {.lex_state = 69, .external_lex_state = 3}, + [1079] = {.lex_state = 69, .external_lex_state = 3}, + [1080] = {.lex_state = 69, .external_lex_state = 2}, + [1081] = {.lex_state = 69, .external_lex_state = 2}, + [1082] = {.lex_state = 69, .external_lex_state = 3}, + [1083] = {.lex_state = 69, .external_lex_state = 2}, + [1084] = {.lex_state = 69, .external_lex_state = 2}, + [1085] = {.lex_state = 69, .external_lex_state = 2}, + [1086] = {.lex_state = 69, .external_lex_state = 2}, + [1087] = {.lex_state = 69, .external_lex_state = 2}, + [1088] = {.lex_state = 69, .external_lex_state = 2}, + [1089] = {.lex_state = 69, .external_lex_state = 2}, + [1090] = {.lex_state = 69, .external_lex_state = 3}, + [1091] = {.lex_state = 69, .external_lex_state = 2}, + [1092] = {.lex_state = 69, .external_lex_state = 3}, + [1093] = {.lex_state = 69, .external_lex_state = 3}, + [1094] = {.lex_state = 69, .external_lex_state = 2}, + [1095] = {.lex_state = 69, .external_lex_state = 2}, + [1096] = {.lex_state = 69, .external_lex_state = 2}, + [1097] = {.lex_state = 69, .external_lex_state = 2}, + [1098] = {.lex_state = 69, .external_lex_state = 2}, + [1099] = {.lex_state = 69, .external_lex_state = 2}, + [1100] = {.lex_state = 69, .external_lex_state = 2}, + [1101] = {.lex_state = 69, .external_lex_state = 2}, + [1102] = {.lex_state = 69, .external_lex_state = 2}, + [1103] = {.lex_state = 69, .external_lex_state = 2}, + [1104] = {.lex_state = 69, .external_lex_state = 2}, + [1105] = {.lex_state = 69, .external_lex_state = 2}, + [1106] = {.lex_state = 69, .external_lex_state = 2}, + [1107] = {.lex_state = 69, .external_lex_state = 2}, + [1108] = {.lex_state = 69, .external_lex_state = 3}, + [1109] = {.lex_state = 69, .external_lex_state = 2}, + [1110] = {.lex_state = 69, .external_lex_state = 3}, + [1111] = {.lex_state = 69, .external_lex_state = 2}, + [1112] = {.lex_state = 69, .external_lex_state = 2}, + [1113] = {.lex_state = 69, .external_lex_state = 3}, + [1114] = {.lex_state = 69, .external_lex_state = 2}, + [1115] = {.lex_state = 69, .external_lex_state = 2}, + [1116] = {.lex_state = 69, .external_lex_state = 3}, + [1117] = {.lex_state = 69, .external_lex_state = 3}, + [1118] = {.lex_state = 69, .external_lex_state = 3}, + [1119] = {.lex_state = 69, .external_lex_state = 2}, + [1120] = {.lex_state = 69, .external_lex_state = 2}, + [1121] = {.lex_state = 69, .external_lex_state = 2}, + [1122] = {.lex_state = 69, .external_lex_state = 2}, + [1123] = {.lex_state = 69, .external_lex_state = 2}, + [1124] = {.lex_state = 69, .external_lex_state = 3}, + [1125] = {.lex_state = 69, .external_lex_state = 2}, + [1126] = {.lex_state = 69, .external_lex_state = 2}, + [1127] = {.lex_state = 69, .external_lex_state = 2}, + [1128] = {.lex_state = 69, .external_lex_state = 2}, + [1129] = {.lex_state = 69, .external_lex_state = 2}, + [1130] = {.lex_state = 69, .external_lex_state = 2}, + [1131] = {.lex_state = 69, .external_lex_state = 2}, + [1132] = {.lex_state = 69, .external_lex_state = 2}, + [1133] = {.lex_state = 69, .external_lex_state = 2}, + [1134] = {.lex_state = 69, .external_lex_state = 2}, + [1135] = {.lex_state = 69, .external_lex_state = 2}, + [1136] = {.lex_state = 69, .external_lex_state = 2}, + [1137] = {.lex_state = 69, .external_lex_state = 2}, + [1138] = {.lex_state = 69, .external_lex_state = 2}, + [1139] = {.lex_state = 69, .external_lex_state = 2}, + [1140] = {.lex_state = 69, .external_lex_state = 2}, + [1141] = {.lex_state = 69, .external_lex_state = 2}, + [1142] = {.lex_state = 12, .external_lex_state = 2}, + [1143] = {.lex_state = 69, .external_lex_state = 2}, + [1144] = {.lex_state = 69, .external_lex_state = 2}, + [1145] = {.lex_state = 69, .external_lex_state = 2}, + [1146] = {.lex_state = 69, .external_lex_state = 2}, + [1147] = {.lex_state = 69, .external_lex_state = 2}, + [1148] = {.lex_state = 69, .external_lex_state = 3}, + [1149] = {.lex_state = 69, .external_lex_state = 3}, + [1150] = {.lex_state = 69, .external_lex_state = 3}, + [1151] = {.lex_state = 69, .external_lex_state = 3}, + [1152] = {.lex_state = 69, .external_lex_state = 2}, + [1153] = {.lex_state = 69, .external_lex_state = 2}, + [1154] = {.lex_state = 69, .external_lex_state = 2}, + [1155] = {.lex_state = 69, .external_lex_state = 3}, + [1156] = {.lex_state = 69, .external_lex_state = 2}, + [1157] = {.lex_state = 69, .external_lex_state = 2}, + [1158] = {.lex_state = 69, .external_lex_state = 3}, + [1159] = {.lex_state = 69, .external_lex_state = 3}, + [1160] = {.lex_state = 69, .external_lex_state = 2}, + [1161] = {.lex_state = 69, .external_lex_state = 2}, + [1162] = {.lex_state = 69, .external_lex_state = 3}, + [1163] = {.lex_state = 69, .external_lex_state = 2}, + [1164] = {.lex_state = 69, .external_lex_state = 3}, + [1165] = {.lex_state = 69, .external_lex_state = 3}, + [1166] = {.lex_state = 69, .external_lex_state = 3}, + [1167] = {.lex_state = 69, .external_lex_state = 3}, + [1168] = {.lex_state = 69, .external_lex_state = 3}, + [1169] = {.lex_state = 69, .external_lex_state = 2}, + [1170] = {.lex_state = 69, .external_lex_state = 3}, + [1171] = {.lex_state = 69, .external_lex_state = 3}, + [1172] = {.lex_state = 69, .external_lex_state = 3}, + [1173] = {.lex_state = 69, .external_lex_state = 2}, + [1174] = {.lex_state = 69, .external_lex_state = 2}, + [1175] = {.lex_state = 69, .external_lex_state = 3}, + [1176] = {.lex_state = 69, .external_lex_state = 3}, + [1177] = {.lex_state = 69, .external_lex_state = 2}, + [1178] = {.lex_state = 69, .external_lex_state = 2}, + [1179] = {.lex_state = 69, .external_lex_state = 2}, + [1180] = {.lex_state = 69, .external_lex_state = 3}, + [1181] = {.lex_state = 69, .external_lex_state = 2}, + [1182] = {.lex_state = 69, .external_lex_state = 2}, + [1183] = {.lex_state = 69, .external_lex_state = 3}, + [1184] = {.lex_state = 12, .external_lex_state = 2}, + [1185] = {.lex_state = 12, .external_lex_state = 2}, + [1186] = {.lex_state = 69, .external_lex_state = 3}, + [1187] = {.lex_state = 19}, + [1188] = {.lex_state = 12, .external_lex_state = 2}, + [1189] = {.lex_state = 69, .external_lex_state = 2}, + [1190] = {.lex_state = 69, .external_lex_state = 2}, + [1191] = {.lex_state = 69, .external_lex_state = 2}, + [1192] = {.lex_state = 12, .external_lex_state = 2}, + [1193] = {.lex_state = 12, .external_lex_state = 2}, + [1194] = {.lex_state = 12, .external_lex_state = 2}, + [1195] = {.lex_state = 12, .external_lex_state = 2}, + [1196] = {.lex_state = 69, .external_lex_state = 2}, + [1197] = {.lex_state = 12, .external_lex_state = 2}, + [1198] = {.lex_state = 69, .external_lex_state = 3}, + [1199] = {.lex_state = 69, .external_lex_state = 2}, + [1200] = {.lex_state = 12, .external_lex_state = 2}, + [1201] = {.lex_state = 69, .external_lex_state = 2}, + [1202] = {.lex_state = 69, .external_lex_state = 2}, + [1203] = {.lex_state = 69, .external_lex_state = 3}, + [1204] = {.lex_state = 69, .external_lex_state = 2}, + [1205] = {.lex_state = 69, .external_lex_state = 2}, + [1206] = {.lex_state = 69, .external_lex_state = 2}, + [1207] = {.lex_state = 69, .external_lex_state = 2}, + [1208] = {.lex_state = 12, .external_lex_state = 2}, + [1209] = {.lex_state = 69, .external_lex_state = 2}, + [1210] = {.lex_state = 12, .external_lex_state = 2}, + [1211] = {.lex_state = 69, .external_lex_state = 2}, + [1212] = {.lex_state = 19}, + [1213] = {.lex_state = 69, .external_lex_state = 3}, + [1214] = {.lex_state = 69, .external_lex_state = 2}, + [1215] = {.lex_state = 69, .external_lex_state = 2}, + [1216] = {.lex_state = 69, .external_lex_state = 2}, + [1217] = {.lex_state = 12, .external_lex_state = 2}, + [1218] = {.lex_state = 12, .external_lex_state = 2}, + [1219] = {.lex_state = 69, .external_lex_state = 2}, + [1220] = {.lex_state = 69, .external_lex_state = 2}, + [1221] = {.lex_state = 12, .external_lex_state = 2}, + [1222] = {.lex_state = 12, .external_lex_state = 2}, + [1223] = {.lex_state = 69, .external_lex_state = 2}, + [1224] = {.lex_state = 12, .external_lex_state = 2}, + [1225] = {.lex_state = 12, .external_lex_state = 2}, + [1226] = {.lex_state = 69, .external_lex_state = 2}, + [1227] = {.lex_state = 19}, + [1228] = {.lex_state = 69, .external_lex_state = 2}, + [1229] = {.lex_state = 69, .external_lex_state = 2}, + [1230] = {.lex_state = 69, .external_lex_state = 2}, + [1231] = {.lex_state = 69, .external_lex_state = 3}, + [1232] = {.lex_state = 69, .external_lex_state = 2}, + [1233] = {.lex_state = 69, .external_lex_state = 3}, + [1234] = {.lex_state = 69, .external_lex_state = 2}, + [1235] = {.lex_state = 12, .external_lex_state = 2}, + [1236] = {.lex_state = 69, .external_lex_state = 3}, + [1237] = {.lex_state = 69, .external_lex_state = 2}, + [1238] = {.lex_state = 12, .external_lex_state = 2}, + [1239] = {.lex_state = 69, .external_lex_state = 2}, + [1240] = {.lex_state = 69, .external_lex_state = 2}, + [1241] = {.lex_state = 69, .external_lex_state = 2}, + [1242] = {.lex_state = 12, .external_lex_state = 2}, + [1243] = {.lex_state = 12, .external_lex_state = 2}, + [1244] = {.lex_state = 12, .external_lex_state = 2}, + [1245] = {.lex_state = 69, .external_lex_state = 3}, + [1246] = {.lex_state = 69, .external_lex_state = 2}, + [1247] = {.lex_state = 69, .external_lex_state = 3}, + [1248] = {.lex_state = 13, .external_lex_state = 2}, + [1249] = {.lex_state = 12, .external_lex_state = 2}, + [1250] = {.lex_state = 12, .external_lex_state = 2}, + [1251] = {.lex_state = 69, .external_lex_state = 2}, + [1252] = {.lex_state = 12, .external_lex_state = 2}, + [1253] = {.lex_state = 69, .external_lex_state = 2}, + [1254] = {.lex_state = 69, .external_lex_state = 3}, + [1255] = {.lex_state = 12, .external_lex_state = 2}, + [1256] = {.lex_state = 12, .external_lex_state = 2}, + [1257] = {.lex_state = 69, .external_lex_state = 2}, + [1258] = {.lex_state = 12, .external_lex_state = 2}, + [1259] = {.lex_state = 19}, + [1260] = {.lex_state = 69, .external_lex_state = 3}, + [1261] = {.lex_state = 69, .external_lex_state = 3}, + [1262] = {.lex_state = 69, .external_lex_state = 3}, + [1263] = {.lex_state = 69, .external_lex_state = 3}, + [1264] = {.lex_state = 12, .external_lex_state = 2}, + [1265] = {.lex_state = 69, .external_lex_state = 3}, + [1266] = {.lex_state = 69, .external_lex_state = 3}, + [1267] = {.lex_state = 69, .external_lex_state = 3}, + [1268] = {.lex_state = 69, .external_lex_state = 3}, + [1269] = {.lex_state = 12, .external_lex_state = 2}, + [1270] = {.lex_state = 69, .external_lex_state = 2}, + [1271] = {.lex_state = 69, .external_lex_state = 2}, + [1272] = {.lex_state = 69, .external_lex_state = 3}, + [1273] = {.lex_state = 19}, + [1274] = {.lex_state = 69, .external_lex_state = 2}, + [1275] = {.lex_state = 69, .external_lex_state = 2}, + [1276] = {.lex_state = 69, .external_lex_state = 3}, + [1277] = {.lex_state = 69, .external_lex_state = 2}, + [1278] = {.lex_state = 69, .external_lex_state = 2}, + [1279] = {.lex_state = 19}, + [1280] = {.lex_state = 69, .external_lex_state = 2}, + [1281] = {.lex_state = 69, .external_lex_state = 2}, + [1282] = {.lex_state = 19}, + [1283] = {.lex_state = 69, .external_lex_state = 2}, + [1284] = {.lex_state = 69, .external_lex_state = 2}, + [1285] = {.lex_state = 69, .external_lex_state = 2}, + [1286] = {.lex_state = 69, .external_lex_state = 2}, + [1287] = {.lex_state = 69, .external_lex_state = 2}, + [1288] = {.lex_state = 69, .external_lex_state = 2}, + [1289] = {.lex_state = 69, .external_lex_state = 2}, + [1290] = {.lex_state = 69, .external_lex_state = 2}, + [1291] = {.lex_state = 69, .external_lex_state = 2}, + [1292] = {.lex_state = 69, .external_lex_state = 2}, + [1293] = {.lex_state = 69, .external_lex_state = 2}, + [1294] = {.lex_state = 69, .external_lex_state = 2}, + [1295] = {.lex_state = 69, .external_lex_state = 2}, + [1296] = {.lex_state = 69, .external_lex_state = 2}, + [1297] = {.lex_state = 69, .external_lex_state = 2}, + [1298] = {.lex_state = 69, .external_lex_state = 2}, + [1299] = {.lex_state = 69, .external_lex_state = 2}, + [1300] = {.lex_state = 69, .external_lex_state = 2}, + [1301] = {.lex_state = 69, .external_lex_state = 3}, + [1302] = {.lex_state = 69, .external_lex_state = 2}, + [1303] = {.lex_state = 69, .external_lex_state = 2}, + [1304] = {.lex_state = 69, .external_lex_state = 2}, + [1305] = {.lex_state = 69, .external_lex_state = 2}, + [1306] = {.lex_state = 69, .external_lex_state = 2}, + [1307] = {.lex_state = 69, .external_lex_state = 2}, + [1308] = {.lex_state = 69, .external_lex_state = 2}, + [1309] = {.lex_state = 69, .external_lex_state = 2}, + [1310] = {.lex_state = 19}, + [1311] = {.lex_state = 69, .external_lex_state = 2}, + [1312] = {.lex_state = 69, .external_lex_state = 2}, + [1313] = {.lex_state = 69, .external_lex_state = 2}, + [1314] = {.lex_state = 69, .external_lex_state = 2}, + [1315] = {.lex_state = 69, .external_lex_state = 3}, + [1316] = {.lex_state = 69, .external_lex_state = 3}, + [1317] = {.lex_state = 69, .external_lex_state = 3}, + [1318] = {.lex_state = 69, .external_lex_state = 3}, + [1319] = {.lex_state = 12, .external_lex_state = 2}, + [1320] = {.lex_state = 12, .external_lex_state = 3}, + [1321] = {.lex_state = 69, .external_lex_state = 2}, + [1322] = {.lex_state = 69, .external_lex_state = 3}, + [1323] = {.lex_state = 69, .external_lex_state = 2}, + [1324] = {.lex_state = 69, .external_lex_state = 3}, + [1325] = {.lex_state = 69, .external_lex_state = 3}, + [1326] = {.lex_state = 69, .external_lex_state = 3}, + [1327] = {.lex_state = 69, .external_lex_state = 3}, + [1328] = {.lex_state = 69, .external_lex_state = 2}, + [1329] = {.lex_state = 69, .external_lex_state = 3}, + [1330] = {.lex_state = 69, .external_lex_state = 2}, + [1331] = {.lex_state = 69, .external_lex_state = 3}, + [1332] = {.lex_state = 13, .external_lex_state = 3}, + [1333] = {.lex_state = 69, .external_lex_state = 3}, + [1334] = {.lex_state = 69, .external_lex_state = 3}, + [1335] = {.lex_state = 69, .external_lex_state = 3}, + [1336] = {.lex_state = 69, .external_lex_state = 3}, + [1337] = {.lex_state = 69, .external_lex_state = 3}, + [1338] = {.lex_state = 69, .external_lex_state = 2}, + [1339] = {.lex_state = 69, .external_lex_state = 3}, + [1340] = {.lex_state = 69, .external_lex_state = 3}, + [1341] = {.lex_state = 69, .external_lex_state = 2}, + [1342] = {.lex_state = 69, .external_lex_state = 3}, + [1343] = {.lex_state = 69, .external_lex_state = 3}, + [1344] = {.lex_state = 69, .external_lex_state = 3}, + [1345] = {.lex_state = 69, .external_lex_state = 3}, + [1346] = {.lex_state = 69, .external_lex_state = 3}, + [1347] = {.lex_state = 69, .external_lex_state = 2}, + [1348] = {.lex_state = 69, .external_lex_state = 3}, + [1349] = {.lex_state = 69, .external_lex_state = 3}, + [1350] = {.lex_state = 69, .external_lex_state = 2}, + [1351] = {.lex_state = 69, .external_lex_state = 2}, + [1352] = {.lex_state = 69, .external_lex_state = 3}, + [1353] = {.lex_state = 69, .external_lex_state = 2}, + [1354] = {.lex_state = 12, .external_lex_state = 2}, + [1355] = {.lex_state = 69, .external_lex_state = 3}, + [1356] = {.lex_state = 69, .external_lex_state = 3}, + [1357] = {.lex_state = 69, .external_lex_state = 3}, + [1358] = {.lex_state = 69, .external_lex_state = 3}, + [1359] = {.lex_state = 69, .external_lex_state = 3}, + [1360] = {.lex_state = 69, .external_lex_state = 3}, + [1361] = {.lex_state = 69, .external_lex_state = 2}, + [1362] = {.lex_state = 69, .external_lex_state = 2}, + [1363] = {.lex_state = 69, .external_lex_state = 2}, + [1364] = {.lex_state = 69, .external_lex_state = 3}, + [1365] = {.lex_state = 69, .external_lex_state = 2}, + [1366] = {.lex_state = 69, .external_lex_state = 3}, + [1367] = {.lex_state = 69, .external_lex_state = 2}, + [1368] = {.lex_state = 69, .external_lex_state = 3}, + [1369] = {.lex_state = 69, .external_lex_state = 2}, + [1370] = {.lex_state = 69, .external_lex_state = 2}, + [1371] = {.lex_state = 69, .external_lex_state = 2}, + [1372] = {.lex_state = 69, .external_lex_state = 3}, + [1373] = {.lex_state = 69, .external_lex_state = 2}, + [1374] = {.lex_state = 69, .external_lex_state = 2}, + [1375] = {.lex_state = 69, .external_lex_state = 2}, + [1376] = {.lex_state = 69, .external_lex_state = 3}, + [1377] = {.lex_state = 69, .external_lex_state = 2}, + [1378] = {.lex_state = 69, .external_lex_state = 2}, + [1379] = {.lex_state = 69, .external_lex_state = 3}, + [1380] = {.lex_state = 69, .external_lex_state = 3}, + [1381] = {.lex_state = 69, .external_lex_state = 2}, + [1382] = {.lex_state = 69, .external_lex_state = 3}, + [1383] = {.lex_state = 69, .external_lex_state = 3}, + [1384] = {.lex_state = 69, .external_lex_state = 3}, + [1385] = {.lex_state = 69, .external_lex_state = 3}, + [1386] = {.lex_state = 69, .external_lex_state = 2}, + [1387] = {.lex_state = 69, .external_lex_state = 3}, + [1388] = {.lex_state = 69, .external_lex_state = 3}, + [1389] = {.lex_state = 69, .external_lex_state = 3}, + [1390] = {.lex_state = 69, .external_lex_state = 3}, + [1391] = {.lex_state = 69, .external_lex_state = 3}, + [1392] = {.lex_state = 69, .external_lex_state = 3}, + [1393] = {.lex_state = 69, .external_lex_state = 2}, + [1394] = {.lex_state = 69, .external_lex_state = 3}, + [1395] = {.lex_state = 69, .external_lex_state = 3}, + [1396] = {.lex_state = 69, .external_lex_state = 3}, + [1397] = {.lex_state = 69, .external_lex_state = 2}, + [1398] = {.lex_state = 69, .external_lex_state = 2}, + [1399] = {.lex_state = 69, .external_lex_state = 3}, + [1400] = {.lex_state = 69, .external_lex_state = 2}, + [1401] = {.lex_state = 69, .external_lex_state = 2}, + [1402] = {.lex_state = 69, .external_lex_state = 2}, + [1403] = {.lex_state = 69, .external_lex_state = 3}, + [1404] = {.lex_state = 12, .external_lex_state = 2}, + [1405] = {.lex_state = 69, .external_lex_state = 3}, + [1406] = {.lex_state = 69, .external_lex_state = 3}, + [1407] = {.lex_state = 69, .external_lex_state = 3}, + [1408] = {.lex_state = 69, .external_lex_state = 2}, + [1409] = {.lex_state = 69, .external_lex_state = 2}, + [1410] = {.lex_state = 69, .external_lex_state = 3}, + [1411] = {.lex_state = 69, .external_lex_state = 3}, + [1412] = {.lex_state = 69, .external_lex_state = 3}, + [1413] = {.lex_state = 69, .external_lex_state = 3}, + [1414] = {.lex_state = 69, .external_lex_state = 3}, + [1415] = {.lex_state = 69, .external_lex_state = 3}, + [1416] = {.lex_state = 69, .external_lex_state = 3}, + [1417] = {.lex_state = 69, .external_lex_state = 3}, + [1418] = {.lex_state = 69, .external_lex_state = 3}, + [1419] = {.lex_state = 69, .external_lex_state = 3}, + [1420] = {.lex_state = 70}, + [1421] = {.lex_state = 69, .external_lex_state = 3}, + [1422] = {.lex_state = 69, .external_lex_state = 3}, + [1423] = {.lex_state = 69, .external_lex_state = 3}, + [1424] = {.lex_state = 69, .external_lex_state = 3}, + [1425] = {.lex_state = 69, .external_lex_state = 3}, + [1426] = {.lex_state = 69, .external_lex_state = 3}, + [1427] = {.lex_state = 69, .external_lex_state = 3}, + [1428] = {.lex_state = 69, .external_lex_state = 3}, + [1429] = {.lex_state = 69, .external_lex_state = 2}, + [1430] = {.lex_state = 69, .external_lex_state = 3}, + [1431] = {.lex_state = 69, .external_lex_state = 3}, + [1432] = {.lex_state = 12, .external_lex_state = 2}, + [1433] = {.lex_state = 12, .external_lex_state = 2}, + [1434] = {.lex_state = 69, .external_lex_state = 3}, + [1435] = {.lex_state = 69, .external_lex_state = 3}, + [1436] = {.lex_state = 69, .external_lex_state = 3}, + [1437] = {.lex_state = 69, .external_lex_state = 3}, + [1438] = {.lex_state = 69, .external_lex_state = 3}, + [1439] = {.lex_state = 69, .external_lex_state = 2}, + [1440] = {.lex_state = 69, .external_lex_state = 3}, + [1441] = {.lex_state = 69, .external_lex_state = 3}, + [1442] = {.lex_state = 69, .external_lex_state = 3}, + [1443] = {.lex_state = 69, .external_lex_state = 3}, + [1444] = {.lex_state = 13, .external_lex_state = 2}, + [1445] = {.lex_state = 69, .external_lex_state = 3}, + [1446] = {.lex_state = 69, .external_lex_state = 3}, + [1447] = {.lex_state = 12, .external_lex_state = 2}, + [1448] = {.lex_state = 69, .external_lex_state = 2}, + [1449] = {.lex_state = 69, .external_lex_state = 3}, + [1450] = {.lex_state = 69, .external_lex_state = 3}, + [1451] = {.lex_state = 12, .external_lex_state = 2}, + [1452] = {.lex_state = 69, .external_lex_state = 3}, + [1453] = {.lex_state = 69, .external_lex_state = 3}, + [1454] = {.lex_state = 69, .external_lex_state = 3}, + [1455] = {.lex_state = 69, .external_lex_state = 3}, + [1456] = {.lex_state = 69, .external_lex_state = 3}, + [1457] = {.lex_state = 69, .external_lex_state = 3}, + [1458] = {.lex_state = 69, .external_lex_state = 2}, + [1459] = {.lex_state = 12, .external_lex_state = 2}, + [1460] = {.lex_state = 69, .external_lex_state = 3}, + [1461] = {.lex_state = 69, .external_lex_state = 2}, + [1462] = {.lex_state = 69, .external_lex_state = 3}, + [1463] = {.lex_state = 12, .external_lex_state = 3}, + [1464] = {.lex_state = 69, .external_lex_state = 2}, + [1465] = {.lex_state = 69, .external_lex_state = 3}, + [1466] = {.lex_state = 69, .external_lex_state = 2}, + [1467] = {.lex_state = 69, .external_lex_state = 2}, + [1468] = {.lex_state = 69, .external_lex_state = 2}, + [1469] = {.lex_state = 69, .external_lex_state = 3}, + [1470] = {.lex_state = 69, .external_lex_state = 2}, + [1471] = {.lex_state = 69, .external_lex_state = 3}, + [1472] = {.lex_state = 69, .external_lex_state = 3}, + [1473] = {.lex_state = 69, .external_lex_state = 3}, + [1474] = {.lex_state = 69, .external_lex_state = 2}, + [1475] = {.lex_state = 69, .external_lex_state = 3}, + [1476] = {.lex_state = 69, .external_lex_state = 2}, + [1477] = {.lex_state = 69, .external_lex_state = 2}, + [1478] = {.lex_state = 69, .external_lex_state = 3}, + [1479] = {.lex_state = 69, .external_lex_state = 3}, + [1480] = {.lex_state = 69, .external_lex_state = 3}, + [1481] = {.lex_state = 69, .external_lex_state = 2}, + [1482] = {.lex_state = 12, .external_lex_state = 2}, + [1483] = {.lex_state = 70}, + [1484] = {.lex_state = 12, .external_lex_state = 2}, + [1485] = {.lex_state = 69, .external_lex_state = 3}, + [1486] = {.lex_state = 69, .external_lex_state = 3}, + [1487] = {.lex_state = 69, .external_lex_state = 3}, + [1488] = {.lex_state = 12, .external_lex_state = 2}, + [1489] = {.lex_state = 69, .external_lex_state = 3}, + [1490] = {.lex_state = 69, .external_lex_state = 3}, + [1491] = {.lex_state = 69, .external_lex_state = 3}, + [1492] = {.lex_state = 69, .external_lex_state = 3}, + [1493] = {.lex_state = 69, .external_lex_state = 3}, + [1494] = {.lex_state = 69, .external_lex_state = 3}, + [1495] = {.lex_state = 69, .external_lex_state = 3}, + [1496] = {.lex_state = 69, .external_lex_state = 3}, + [1497] = {.lex_state = 69, .external_lex_state = 3}, + [1498] = {.lex_state = 69, .external_lex_state = 3}, + [1499] = {.lex_state = 70}, + [1500] = {.lex_state = 69, .external_lex_state = 3}, + [1501] = {.lex_state = 69, .external_lex_state = 3}, + [1502] = {.lex_state = 69, .external_lex_state = 3}, + [1503] = {.lex_state = 69, .external_lex_state = 3}, + [1504] = {.lex_state = 69, .external_lex_state = 2}, + [1505] = {.lex_state = 69, .external_lex_state = 3}, + [1506] = {.lex_state = 69, .external_lex_state = 3}, + [1507] = {.lex_state = 69, .external_lex_state = 3}, + [1508] = {.lex_state = 69, .external_lex_state = 3}, + [1509] = {.lex_state = 69, .external_lex_state = 3}, + [1510] = {.lex_state = 69, .external_lex_state = 3}, + [1511] = {.lex_state = 69, .external_lex_state = 3}, + [1512] = {.lex_state = 69, .external_lex_state = 2}, + [1513] = {.lex_state = 69, .external_lex_state = 3}, + [1514] = {.lex_state = 69, .external_lex_state = 3}, + [1515] = {.lex_state = 69, .external_lex_state = 3}, + [1516] = {.lex_state = 69, .external_lex_state = 3}, + [1517] = {.lex_state = 69, .external_lex_state = 3}, + [1518] = {.lex_state = 12, .external_lex_state = 2}, + [1519] = {.lex_state = 69, .external_lex_state = 3}, + [1520] = {.lex_state = 69, .external_lex_state = 2}, + [1521] = {.lex_state = 12, .external_lex_state = 2}, + [1522] = {.lex_state = 12, .external_lex_state = 2}, + [1523] = {.lex_state = 69, .external_lex_state = 3}, + [1524] = {.lex_state = 69, .external_lex_state = 3}, + [1525] = {.lex_state = 12, .external_lex_state = 2}, + [1526] = {.lex_state = 69, .external_lex_state = 3}, + [1527] = {.lex_state = 69, .external_lex_state = 3}, + [1528] = {.lex_state = 69, .external_lex_state = 3}, + [1529] = {.lex_state = 69, .external_lex_state = 3}, + [1530] = {.lex_state = 69, .external_lex_state = 3}, + [1531] = {.lex_state = 15, .external_lex_state = 2}, + [1532] = {.lex_state = 69, .external_lex_state = 3}, + [1533] = {.lex_state = 69, .external_lex_state = 2}, + [1534] = {.lex_state = 69, .external_lex_state = 2}, + [1535] = {.lex_state = 69, .external_lex_state = 2}, + [1536] = {.lex_state = 69, .external_lex_state = 3}, + [1537] = {.lex_state = 70}, + [1538] = {.lex_state = 12, .external_lex_state = 2}, + [1539] = {.lex_state = 69, .external_lex_state = 3}, + [1540] = {.lex_state = 12, .external_lex_state = 3}, + [1541] = {.lex_state = 70}, + [1542] = {.lex_state = 12, .external_lex_state = 2}, + [1543] = {.lex_state = 12, .external_lex_state = 2}, + [1544] = {.lex_state = 69, .external_lex_state = 3}, + [1545] = {.lex_state = 69, .external_lex_state = 3}, + [1546] = {.lex_state = 69, .external_lex_state = 3}, + [1547] = {.lex_state = 69, .external_lex_state = 3}, + [1548] = {.lex_state = 69, .external_lex_state = 3}, + [1549] = {.lex_state = 69, .external_lex_state = 3}, + [1550] = {.lex_state = 69, .external_lex_state = 3}, + [1551] = {.lex_state = 12, .external_lex_state = 2}, + [1552] = {.lex_state = 12, .external_lex_state = 2}, + [1553] = {.lex_state = 69, .external_lex_state = 3}, + [1554] = {.lex_state = 69, .external_lex_state = 2}, + [1555] = {.lex_state = 69, .external_lex_state = 3}, + [1556] = {.lex_state = 12, .external_lex_state = 2}, + [1557] = {.lex_state = 69, .external_lex_state = 2}, + [1558] = {.lex_state = 69, .external_lex_state = 2}, + [1559] = {.lex_state = 69, .external_lex_state = 2}, + [1560] = {.lex_state = 12, .external_lex_state = 2}, + [1561] = {.lex_state = 12, .external_lex_state = 2}, + [1562] = {.lex_state = 12, .external_lex_state = 2}, + [1563] = {.lex_state = 12, .external_lex_state = 2}, + [1564] = {.lex_state = 12, .external_lex_state = 2}, + [1565] = {.lex_state = 69, .external_lex_state = 2}, + [1566] = {.lex_state = 12, .external_lex_state = 2}, + [1567] = {.lex_state = 70, .external_lex_state = 4}, + [1568] = {.lex_state = 12, .external_lex_state = 2}, + [1569] = {.lex_state = 70}, + [1570] = {.lex_state = 12, .external_lex_state = 2}, + [1571] = {.lex_state = 12, .external_lex_state = 2}, + [1572] = {.lex_state = 70}, + [1573] = {.lex_state = 12, .external_lex_state = 2}, + [1574] = {.lex_state = 70}, + [1575] = {.lex_state = 12, .external_lex_state = 2}, + [1576] = {.lex_state = 12, .external_lex_state = 2}, + [1577] = {.lex_state = 12, .external_lex_state = 2}, + [1578] = {.lex_state = 12, .external_lex_state = 2}, + [1579] = {.lex_state = 12, .external_lex_state = 2}, + [1580] = {.lex_state = 12, .external_lex_state = 2}, + [1581] = {.lex_state = 12, .external_lex_state = 2}, + [1582] = {.lex_state = 12, .external_lex_state = 2}, + [1583] = {.lex_state = 12, .external_lex_state = 2}, + [1584] = {.lex_state = 70}, + [1585] = {.lex_state = 12, .external_lex_state = 2}, + [1586] = {.lex_state = 12, .external_lex_state = 2}, + [1587] = {.lex_state = 12, .external_lex_state = 2}, + [1588] = {.lex_state = 12, .external_lex_state = 2}, + [1589] = {.lex_state = 12, .external_lex_state = 2}, + [1590] = {.lex_state = 70, .external_lex_state = 4}, + [1591] = {.lex_state = 70}, + [1592] = {.lex_state = 69, .external_lex_state = 3}, + [1593] = {.lex_state = 70, .external_lex_state = 4}, + [1594] = {.lex_state = 70}, + [1595] = {.lex_state = 12, .external_lex_state = 2}, + [1596] = {.lex_state = 69, .external_lex_state = 2}, + [1597] = {.lex_state = 12, .external_lex_state = 2}, + [1598] = {.lex_state = 12, .external_lex_state = 2}, + [1599] = {.lex_state = 12, .external_lex_state = 2}, + [1600] = {.lex_state = 70}, + [1601] = {.lex_state = 70}, + [1602] = {.lex_state = 12, .external_lex_state = 2}, + [1603] = {.lex_state = 12, .external_lex_state = 2}, + [1604] = {.lex_state = 12, .external_lex_state = 2}, + [1605] = {.lex_state = 12, .external_lex_state = 2}, + [1606] = {.lex_state = 12, .external_lex_state = 2}, + [1607] = {.lex_state = 12, .external_lex_state = 2}, + [1608] = {.lex_state = 70}, + [1609] = {.lex_state = 12, .external_lex_state = 2}, + [1610] = {.lex_state = 12, .external_lex_state = 2}, + [1611] = {.lex_state = 70, .external_lex_state = 4}, + [1612] = {.lex_state = 12, .external_lex_state = 2}, + [1613] = {.lex_state = 12, .external_lex_state = 2}, + [1614] = {.lex_state = 12, .external_lex_state = 2}, + [1615] = {.lex_state = 70, .external_lex_state = 4}, + [1616] = {.lex_state = 12, .external_lex_state = 2}, + [1617] = {.lex_state = 12, .external_lex_state = 2}, + [1618] = {.lex_state = 70}, + [1619] = {.lex_state = 12, .external_lex_state = 2}, + [1620] = {.lex_state = 12, .external_lex_state = 2}, + [1621] = {.lex_state = 12, .external_lex_state = 2}, + [1622] = {.lex_state = 12, .external_lex_state = 2}, + [1623] = {.lex_state = 70, .external_lex_state = 4}, + [1624] = {.lex_state = 12, .external_lex_state = 2}, + [1625] = {.lex_state = 12, .external_lex_state = 2}, + [1626] = {.lex_state = 12, .external_lex_state = 2}, + [1627] = {.lex_state = 12, .external_lex_state = 2}, + [1628] = {.lex_state = 12, .external_lex_state = 2}, + [1629] = {.lex_state = 69, .external_lex_state = 2}, + [1630] = {.lex_state = 12, .external_lex_state = 2}, + [1631] = {.lex_state = 12, .external_lex_state = 2}, + [1632] = {.lex_state = 12, .external_lex_state = 2}, + [1633] = {.lex_state = 12, .external_lex_state = 2}, + [1634] = {.lex_state = 12, .external_lex_state = 2}, + [1635] = {.lex_state = 12, .external_lex_state = 2}, + [1636] = {.lex_state = 12, .external_lex_state = 2}, + [1637] = {.lex_state = 12, .external_lex_state = 2}, + [1638] = {.lex_state = 12, .external_lex_state = 2}, + [1639] = {.lex_state = 12, .external_lex_state = 2}, + [1640] = {.lex_state = 12, .external_lex_state = 2}, + [1641] = {.lex_state = 12, .external_lex_state = 2}, + [1642] = {.lex_state = 69, .external_lex_state = 2}, + [1643] = {.lex_state = 70}, + [1644] = {.lex_state = 12, .external_lex_state = 2}, + [1645] = {.lex_state = 12, .external_lex_state = 2}, + [1646] = {.lex_state = 12, .external_lex_state = 2}, + [1647] = {.lex_state = 12, .external_lex_state = 2}, + [1648] = {.lex_state = 12, .external_lex_state = 2}, + [1649] = {.lex_state = 12, .external_lex_state = 2}, + [1650] = {.lex_state = 12, .external_lex_state = 2}, + [1651] = {.lex_state = 69, .external_lex_state = 3}, + [1652] = {.lex_state = 12, .external_lex_state = 2}, + [1653] = {.lex_state = 12, .external_lex_state = 2}, + [1654] = {.lex_state = 12, .external_lex_state = 2}, + [1655] = {.lex_state = 12, .external_lex_state = 2}, + [1656] = {.lex_state = 12, .external_lex_state = 2}, + [1657] = {.lex_state = 69, .external_lex_state = 2}, + [1658] = {.lex_state = 12, .external_lex_state = 2}, + [1659] = {.lex_state = 12, .external_lex_state = 2}, + [1660] = {.lex_state = 12, .external_lex_state = 2}, + [1661] = {.lex_state = 70}, + [1662] = {.lex_state = 12, .external_lex_state = 2}, + [1663] = {.lex_state = 12, .external_lex_state = 2}, + [1664] = {.lex_state = 12, .external_lex_state = 2}, + [1665] = {.lex_state = 12, .external_lex_state = 2}, + [1666] = {.lex_state = 69, .external_lex_state = 3}, + [1667] = {.lex_state = 12, .external_lex_state = 2}, + [1668] = {.lex_state = 70, .external_lex_state = 4}, + [1669] = {.lex_state = 12, .external_lex_state = 2}, + [1670] = {.lex_state = 69, .external_lex_state = 3}, + [1671] = {.lex_state = 12, .external_lex_state = 2}, + [1672] = {.lex_state = 70, .external_lex_state = 4}, + [1673] = {.lex_state = 70, .external_lex_state = 4}, + [1674] = {.lex_state = 70, .external_lex_state = 4}, + [1675] = {.lex_state = 12, .external_lex_state = 2}, + [1676] = {.lex_state = 12, .external_lex_state = 2}, + [1677] = {.lex_state = 70}, + [1678] = {.lex_state = 70, .external_lex_state = 4}, + [1679] = {.lex_state = 12, .external_lex_state = 2}, + [1680] = {.lex_state = 12, .external_lex_state = 2}, + [1681] = {.lex_state = 12, .external_lex_state = 2}, + [1682] = {.lex_state = 70, .external_lex_state = 4}, + [1683] = {.lex_state = 12, .external_lex_state = 2}, + [1684] = {.lex_state = 12, .external_lex_state = 2}, + [1685] = {.lex_state = 12, .external_lex_state = 2}, + [1686] = {.lex_state = 12, .external_lex_state = 2}, + [1687] = {.lex_state = 12, .external_lex_state = 2}, + [1688] = {.lex_state = 12, .external_lex_state = 2}, + [1689] = {.lex_state = 12, .external_lex_state = 2}, + [1690] = {.lex_state = 12, .external_lex_state = 2}, + [1691] = {.lex_state = 12, .external_lex_state = 2}, + [1692] = {.lex_state = 12, .external_lex_state = 2}, + [1693] = {.lex_state = 12, .external_lex_state = 2}, + [1694] = {.lex_state = 12, .external_lex_state = 2}, + [1695] = {.lex_state = 70}, + [1696] = {.lex_state = 12, .external_lex_state = 2}, + [1697] = {.lex_state = 12, .external_lex_state = 2}, + [1698] = {.lex_state = 12, .external_lex_state = 2}, + [1699] = {.lex_state = 69, .external_lex_state = 2}, + [1700] = {.lex_state = 70, .external_lex_state = 4}, + [1701] = {.lex_state = 69, .external_lex_state = 2}, + [1702] = {.lex_state = 69, .external_lex_state = 2}, + [1703] = {.lex_state = 70, .external_lex_state = 4}, + [1704] = {.lex_state = 70, .external_lex_state = 4}, + [1705] = {.lex_state = 70, .external_lex_state = 4}, + [1706] = {.lex_state = 70, .external_lex_state = 4}, + [1707] = {.lex_state = 70, .external_lex_state = 4}, + [1708] = {.lex_state = 70, .external_lex_state = 4}, + [1709] = {.lex_state = 69, .external_lex_state = 2}, + [1710] = {.lex_state = 69, .external_lex_state = 2}, + [1711] = {.lex_state = 70, .external_lex_state = 4}, + [1712] = {.lex_state = 70, .external_lex_state = 4}, + [1713] = {.lex_state = 69, .external_lex_state = 2}, + [1714] = {.lex_state = 69, .external_lex_state = 2}, + [1715] = {.lex_state = 69, .external_lex_state = 2}, + [1716] = {.lex_state = 70, .external_lex_state = 4}, + [1717] = {.lex_state = 70, .external_lex_state = 4}, + [1718] = {.lex_state = 70, .external_lex_state = 4}, + [1719] = {.lex_state = 70, .external_lex_state = 4}, + [1720] = {.lex_state = 70, .external_lex_state = 4}, + [1721] = {.lex_state = 70, .external_lex_state = 4}, + [1722] = {.lex_state = 70, .external_lex_state = 4}, + [1723] = {.lex_state = 70, .external_lex_state = 4}, + [1724] = {.lex_state = 70, .external_lex_state = 4}, + [1725] = {.lex_state = 70, .external_lex_state = 4}, + [1726] = {.lex_state = 70, .external_lex_state = 4}, + [1727] = {.lex_state = 70, .external_lex_state = 4}, + [1728] = {.lex_state = 70, .external_lex_state = 4}, + [1729] = {.lex_state = 70, .external_lex_state = 4}, + [1730] = {.lex_state = 70, .external_lex_state = 4}, + [1731] = {.lex_state = 70, .external_lex_state = 4}, + [1732] = {.lex_state = 70, .external_lex_state = 4}, + [1733] = {.lex_state = 70, .external_lex_state = 4}, + [1734] = {.lex_state = 70, .external_lex_state = 4}, + [1735] = {.lex_state = 70, .external_lex_state = 4}, + [1736] = {.lex_state = 70, .external_lex_state = 4}, + [1737] = {.lex_state = 70, .external_lex_state = 4}, + [1738] = {.lex_state = 70, .external_lex_state = 4}, + [1739] = {.lex_state = 70, .external_lex_state = 4}, + [1740] = {.lex_state = 70, .external_lex_state = 4}, + [1741] = {.lex_state = 70, .external_lex_state = 4}, + [1742] = {.lex_state = 70, .external_lex_state = 4}, + [1743] = {.lex_state = 70}, + [1744] = {.lex_state = 70, .external_lex_state = 4}, + [1745] = {.lex_state = 70, .external_lex_state = 4}, + [1746] = {.lex_state = 70, .external_lex_state = 4}, + [1747] = {.lex_state = 70}, + [1748] = {.lex_state = 70, .external_lex_state = 4}, + [1749] = {.lex_state = 70, .external_lex_state = 4}, + [1750] = {.lex_state = 70}, + [1751] = {.lex_state = 70, .external_lex_state = 4}, + [1752] = {.lex_state = 70, .external_lex_state = 4}, + [1753] = {.lex_state = 70, .external_lex_state = 4}, + [1754] = {.lex_state = 70}, + [1755] = {.lex_state = 70, .external_lex_state = 4}, + [1756] = {.lex_state = 70, .external_lex_state = 4}, + [1757] = {.lex_state = 70}, + [1758] = {.lex_state = 70}, + [1759] = {.lex_state = 70}, + [1760] = {.lex_state = 70, .external_lex_state = 4}, + [1761] = {.lex_state = 70}, + [1762] = {.lex_state = 70, .external_lex_state = 4}, + [1763] = {.lex_state = 70, .external_lex_state = 4}, + [1764] = {.lex_state = 70}, + [1765] = {.lex_state = 70}, + [1766] = {.lex_state = 70, .external_lex_state = 4}, + [1767] = {.lex_state = 70}, + [1768] = {.lex_state = 70, .external_lex_state = 4}, + [1769] = {.lex_state = 70, .external_lex_state = 4}, + [1770] = {.lex_state = 70}, + [1771] = {.lex_state = 70}, + [1772] = {.lex_state = 70, .external_lex_state = 4}, + [1773] = {.lex_state = 70}, + [1774] = {.lex_state = 70}, + [1775] = {.lex_state = 70}, + [1776] = {.lex_state = 70}, + [1777] = {.lex_state = 70}, + [1778] = {.lex_state = 70}, + [1779] = {.lex_state = 70}, + [1780] = {.lex_state = 70}, + [1781] = {.lex_state = 70}, + [1782] = {.lex_state = 70}, + [1783] = {.lex_state = 70}, + [1784] = {.lex_state = 70}, + [1785] = {.lex_state = 70, .external_lex_state = 4}, + [1786] = {.lex_state = 70}, + [1787] = {.lex_state = 70}, + [1788] = {.lex_state = 70}, + [1789] = {.lex_state = 70}, + [1790] = {.lex_state = 70}, + [1791] = {.lex_state = 70}, + [1792] = {.lex_state = 70}, + [1793] = {.lex_state = 70}, + [1794] = {.lex_state = 70}, + [1795] = {.lex_state = 70}, + [1796] = {.lex_state = 70}, + [1797] = {.lex_state = 70}, + [1798] = {.lex_state = 70}, + [1799] = {.lex_state = 70}, + [1800] = {.lex_state = 70}, + [1801] = {.lex_state = 70}, + [1802] = {.lex_state = 70}, + [1803] = {.lex_state = 70}, + [1804] = {.lex_state = 70}, + [1805] = {.lex_state = 70}, + [1806] = {.lex_state = 70}, + [1807] = {.lex_state = 70}, + [1808] = {.lex_state = 70}, + [1809] = {.lex_state = 70}, + [1810] = {.lex_state = 70}, + [1811] = {.lex_state = 70}, + [1812] = {.lex_state = 70}, + [1813] = {.lex_state = 70}, + [1814] = {.lex_state = 70}, + [1815] = {.lex_state = 70}, + [1816] = {.lex_state = 70}, + [1817] = {.lex_state = 70}, + [1818] = {.lex_state = 70}, + [1819] = {.lex_state = 70}, + [1820] = {.lex_state = 70}, + [1821] = {.lex_state = 70}, + [1822] = {.lex_state = 70}, + [1823] = {.lex_state = 70}, + [1824] = {.lex_state = 70}, + [1825] = {.lex_state = 70}, + [1826] = {.lex_state = 70}, + [1827] = {.lex_state = 70, .external_lex_state = 4}, + [1828] = {.lex_state = 70, .external_lex_state = 4}, + [1829] = {.lex_state = 70, .external_lex_state = 4}, + [1830] = {.lex_state = 70}, + [1831] = {.lex_state = 70, .external_lex_state = 4}, + [1832] = {.lex_state = 70}, + [1833] = {.lex_state = 70, .external_lex_state = 4}, + [1834] = {.lex_state = 70, .external_lex_state = 4}, + [1835] = {.lex_state = 70}, + [1836] = {.lex_state = 70, .external_lex_state = 4}, + [1837] = {.lex_state = 70, .external_lex_state = 4}, + [1838] = {.lex_state = 70}, + [1839] = {.lex_state = 70}, + [1840] = {.lex_state = 70}, + [1841] = {.lex_state = 70}, + [1842] = {.lex_state = 70}, + [1843] = {.lex_state = 70}, + [1844] = {.lex_state = 70, .external_lex_state = 4}, + [1845] = {.lex_state = 70}, + [1846] = {.lex_state = 70, .external_lex_state = 4}, + [1847] = {.lex_state = 70, .external_lex_state = 4}, + [1848] = {.lex_state = 70}, + [1849] = {.lex_state = 70}, + [1850] = {.lex_state = 70, .external_lex_state = 4}, + [1851] = {.lex_state = 70, .external_lex_state = 4}, + [1852] = {.lex_state = 70}, + [1853] = {.lex_state = 70}, + [1854] = {.lex_state = 70, .external_lex_state = 4}, + [1855] = {.lex_state = 70, .external_lex_state = 4}, + [1856] = {.lex_state = 70, .external_lex_state = 4}, + [1857] = {.lex_state = 70, .external_lex_state = 4}, + [1858] = {.lex_state = 70}, + [1859] = {.lex_state = 70}, + [1860] = {.lex_state = 70}, + [1861] = {.lex_state = 70}, + [1862] = {.lex_state = 70}, + [1863] = {.lex_state = 70}, + [1864] = {.lex_state = 70}, + [1865] = {.lex_state = 70}, + [1866] = {.lex_state = 70}, + [1867] = {.lex_state = 70}, + [1868] = {.lex_state = 70}, + [1869] = {.lex_state = 70}, + [1870] = {.lex_state = 70}, + [1871] = {.lex_state = 70}, + [1872] = {.lex_state = 70}, + [1873] = {.lex_state = 70}, + [1874] = {.lex_state = 70}, + [1875] = {.lex_state = 70}, + [1876] = {.lex_state = 70}, + [1877] = {.lex_state = 70}, + [1878] = {.lex_state = 70}, + [1879] = {.lex_state = 70}, + [1880] = {.lex_state = 70}, + [1881] = {.lex_state = 70}, + [1882] = {.lex_state = 70}, + [1883] = {.lex_state = 70}, + [1884] = {.lex_state = 70}, + [1885] = {.lex_state = 70}, + [1886] = {.lex_state = 70}, + [1887] = {.lex_state = 70}, + [1888] = {.lex_state = 70}, + [1889] = {.lex_state = 70}, + [1890] = {.lex_state = 70}, + [1891] = {.lex_state = 70}, + [1892] = {.lex_state = 70}, + [1893] = {.lex_state = 70}, + [1894] = {.lex_state = 70}, + [1895] = {.lex_state = 70}, + [1896] = {.lex_state = 70}, + [1897] = {.lex_state = 70}, + [1898] = {.lex_state = 70}, + [1899] = {.lex_state = 70}, + [1900] = {.lex_state = 70}, + [1901] = {.lex_state = 70}, + [1902] = {.lex_state = 70}, + [1903] = {.lex_state = 25}, + [1904] = {.lex_state = 25}, + [1905] = {.lex_state = 25}, + [1906] = {.lex_state = 25}, + [1907] = {.lex_state = 70, .external_lex_state = 4}, + [1908] = {.lex_state = 25}, + [1909] = {.lex_state = 70}, + [1910] = {.lex_state = 70, .external_lex_state = 4}, + [1911] = {.lex_state = 25}, + [1912] = {.lex_state = 25}, + [1913] = {.lex_state = 70, .external_lex_state = 4}, + [1914] = {.lex_state = 70}, + [1915] = {.lex_state = 70, .external_lex_state = 4}, + [1916] = {.lex_state = 70, .external_lex_state = 4}, + [1917] = {.lex_state = 70, .external_lex_state = 4}, + [1918] = {.lex_state = 70, .external_lex_state = 4}, + [1919] = {.lex_state = 70, .external_lex_state = 4}, + [1920] = {.lex_state = 70}, + [1921] = {.lex_state = 25}, + [1922] = {.lex_state = 70, .external_lex_state = 4}, + [1923] = {.lex_state = 70, .external_lex_state = 4}, + [1924] = {.lex_state = 70}, + [1925] = {.lex_state = 70, .external_lex_state = 4}, + [1926] = {.lex_state = 70, .external_lex_state = 4}, + [1927] = {.lex_state = 70, .external_lex_state = 4}, + [1928] = {.lex_state = 70, .external_lex_state = 4}, + [1929] = {.lex_state = 70, .external_lex_state = 4}, + [1930] = {.lex_state = 70, .external_lex_state = 4}, + [1931] = {.lex_state = 70, .external_lex_state = 4}, + [1932] = {.lex_state = 25}, + [1933] = {.lex_state = 70, .external_lex_state = 4}, + [1934] = {.lex_state = 70}, + [1935] = {.lex_state = 25}, + [1936] = {.lex_state = 70, .external_lex_state = 4}, + [1937] = {.lex_state = 25}, + [1938] = {.lex_state = 70}, + [1939] = {.lex_state = 25}, + [1940] = {.lex_state = 70, .external_lex_state = 4}, + [1941] = {.lex_state = 70, .external_lex_state = 4}, + [1942] = {.lex_state = 25}, + [1943] = {.lex_state = 70}, + [1944] = {.lex_state = 70, .external_lex_state = 4}, + [1945] = {.lex_state = 70, .external_lex_state = 4}, + [1946] = {.lex_state = 70, .external_lex_state = 4}, + [1947] = {.lex_state = 25}, + [1948] = {.lex_state = 70, .external_lex_state = 4}, + [1949] = {.lex_state = 70, .external_lex_state = 4}, + [1950] = {.lex_state = 70, .external_lex_state = 4}, + [1951] = {.lex_state = 70, .external_lex_state = 4}, + [1952] = {.lex_state = 70, .external_lex_state = 4}, + [1953] = {.lex_state = 25}, + [1954] = {.lex_state = 70, .external_lex_state = 4}, + [1955] = {.lex_state = 70, .external_lex_state = 4}, + [1956] = {.lex_state = 70, .external_lex_state = 4}, + [1957] = {.lex_state = 70, .external_lex_state = 4}, + [1958] = {.lex_state = 70, .external_lex_state = 4}, + [1959] = {.lex_state = 70, .external_lex_state = 4}, + [1960] = {.lex_state = 70, .external_lex_state = 4}, + [1961] = {.lex_state = 70, .external_lex_state = 4}, + [1962] = {.lex_state = 70}, + [1963] = {.lex_state = 70, .external_lex_state = 4}, + [1964] = {.lex_state = 70, .external_lex_state = 4}, + [1965] = {.lex_state = 70, .external_lex_state = 4}, + [1966] = {.lex_state = 70, .external_lex_state = 4}, + [1967] = {.lex_state = 70}, + [1968] = {.lex_state = 70}, + [1969] = {.lex_state = 70, .external_lex_state = 4}, + [1970] = {.lex_state = 70, .external_lex_state = 4}, + [1971] = {.lex_state = 70}, + [1972] = {.lex_state = 70}, + [1973] = {.lex_state = 70}, + [1974] = {.lex_state = 70, .external_lex_state = 4}, + [1975] = {.lex_state = 70, .external_lex_state = 4}, + [1976] = {.lex_state = 70}, + [1977] = {.lex_state = 70}, + [1978] = {.lex_state = 70}, + [1979] = {.lex_state = 70}, + [1980] = {.lex_state = 70, .external_lex_state = 4}, + [1981] = {.lex_state = 70}, + [1982] = {.lex_state = 70, .external_lex_state = 4}, + [1983] = {.lex_state = 70, .external_lex_state = 4}, + [1984] = {.lex_state = 70, .external_lex_state = 4}, + [1985] = {.lex_state = 70, .external_lex_state = 4}, + [1986] = {.lex_state = 70, .external_lex_state = 4}, + [1987] = {.lex_state = 70, .external_lex_state = 4}, + [1988] = {.lex_state = 70}, + [1989] = {.lex_state = 25}, + [1990] = {.lex_state = 70, .external_lex_state = 4}, + [1991] = {.lex_state = 70, .external_lex_state = 4}, + [1992] = {.lex_state = 70, .external_lex_state = 4}, + [1993] = {.lex_state = 25}, + [1994] = {.lex_state = 70, .external_lex_state = 4}, + [1995] = {.lex_state = 70}, + [1996] = {.lex_state = 70, .external_lex_state = 4}, + [1997] = {.lex_state = 70, .external_lex_state = 4}, + [1998] = {.lex_state = 70, .external_lex_state = 4}, + [1999] = {.lex_state = 70, .external_lex_state = 4}, + [2000] = {.lex_state = 25}, + [2001] = {.lex_state = 70}, + [2002] = {.lex_state = 70, .external_lex_state = 4}, + [2003] = {.lex_state = 70, .external_lex_state = 4}, + [2004] = {.lex_state = 70, .external_lex_state = 4}, + [2005] = {.lex_state = 70, .external_lex_state = 4}, + [2006] = {.lex_state = 70, .external_lex_state = 4}, + [2007] = {.lex_state = 70, .external_lex_state = 4}, + [2008] = {.lex_state = 70}, + [2009] = {.lex_state = 70}, + [2010] = {.lex_state = 70}, + [2011] = {.lex_state = 70, .external_lex_state = 4}, + [2012] = {.lex_state = 70, .external_lex_state = 4}, + [2013] = {.lex_state = 25}, + [2014] = {.lex_state = 70, .external_lex_state = 4}, + [2015] = {.lex_state = 70, .external_lex_state = 4}, + [2016] = {.lex_state = 70}, + [2017] = {.lex_state = 70, .external_lex_state = 4}, + [2018] = {.lex_state = 70, .external_lex_state = 4}, + [2019] = {.lex_state = 70, .external_lex_state = 4}, + [2020] = {.lex_state = 70, .external_lex_state = 4}, + [2021] = {.lex_state = 70, .external_lex_state = 4}, + [2022] = {.lex_state = 70, .external_lex_state = 4}, + [2023] = {.lex_state = 25}, + [2024] = {.lex_state = 25}, + [2025] = {.lex_state = 70}, + [2026] = {.lex_state = 70}, + [2027] = {.lex_state = 33}, + [2028] = {.lex_state = 25}, + [2029] = {.lex_state = 33}, + [2030] = {.lex_state = 70}, + [2031] = {.lex_state = 70}, + [2032] = {.lex_state = 70, .external_lex_state = 4}, + [2033] = {.lex_state = 70}, + [2034] = {.lex_state = 70}, + [2035] = {.lex_state = 25}, + [2036] = {.lex_state = 33}, + [2037] = {.lex_state = 70}, + [2038] = {.lex_state = 33}, + [2039] = {.lex_state = 25}, + [2040] = {.lex_state = 25}, + [2041] = {.lex_state = 70, .external_lex_state = 4}, + [2042] = {.lex_state = 25}, + [2043] = {.lex_state = 25}, + [2044] = {.lex_state = 70}, + [2045] = {.lex_state = 25}, + [2046] = {.lex_state = 33}, + [2047] = {.lex_state = 70}, + [2048] = {.lex_state = 70, .external_lex_state = 4}, + [2049] = {.lex_state = 70}, + [2050] = {.lex_state = 70}, + [2051] = {.lex_state = 25}, + [2052] = {.lex_state = 25}, + [2053] = {.lex_state = 33}, + [2054] = {.lex_state = 25}, + [2055] = {.lex_state = 70, .external_lex_state = 4}, + [2056] = {.lex_state = 33}, + [2057] = {.lex_state = 33}, + [2058] = {.lex_state = 70}, + [2059] = {.lex_state = 70, .external_lex_state = 4}, + [2060] = {.lex_state = 70}, + [2061] = {.lex_state = 70}, + [2062] = {.lex_state = 70}, + [2063] = {.lex_state = 33}, + [2064] = {.lex_state = 33}, + [2065] = {.lex_state = 70}, + [2066] = {.lex_state = 70}, + [2067] = {.lex_state = 70}, + [2068] = {.lex_state = 25}, + [2069] = {.lex_state = 70, .external_lex_state = 4}, + [2070] = {.lex_state = 33}, + [2071] = {.lex_state = 33}, + [2072] = {.lex_state = 70}, + [2073] = {.lex_state = 33}, + [2074] = {.lex_state = 70, .external_lex_state = 4}, + [2075] = {.lex_state = 33}, + [2076] = {.lex_state = 33}, + [2077] = {.lex_state = 70}, + [2078] = {.lex_state = 70}, + [2079] = {.lex_state = 25}, + [2080] = {.lex_state = 70}, + [2081] = {.lex_state = 70}, + [2082] = {.lex_state = 33}, + [2083] = {.lex_state = 33}, + [2084] = {.lex_state = 70}, + [2085] = {.lex_state = 33}, + [2086] = {.lex_state = 70}, + [2087] = {.lex_state = 70}, + [2088] = {.lex_state = 70, .external_lex_state = 4}, + [2089] = {.lex_state = 33}, + [2090] = {.lex_state = 70}, + [2091] = {.lex_state = 70, .external_lex_state = 4}, + [2092] = {.lex_state = 70}, + [2093] = {.lex_state = 70}, + [2094] = {.lex_state = 70}, + [2095] = {.lex_state = 18}, + [2096] = {.lex_state = 70}, + [2097] = {.lex_state = 70}, + [2098] = {.lex_state = 70}, + [2099] = {.lex_state = 70}, + [2100] = {.lex_state = 70}, + [2101] = {.lex_state = 0, .external_lex_state = 4}, + [2102] = {.lex_state = 0, .external_lex_state = 4}, + [2103] = {.lex_state = 70, .external_lex_state = 4}, + [2104] = {.lex_state = 70}, + [2105] = {.lex_state = 70}, + [2106] = {.lex_state = 0, .external_lex_state = 4}, + [2107] = {.lex_state = 70}, + [2108] = {.lex_state = 70}, + [2109] = {.lex_state = 70}, + [2110] = {.lex_state = 70}, + [2111] = {.lex_state = 70}, + [2112] = {.lex_state = 70}, + [2113] = {.lex_state = 0, .external_lex_state = 4}, + [2114] = {.lex_state = 70}, + [2115] = {.lex_state = 0, .external_lex_state = 4}, + [2116] = {.lex_state = 70}, + [2117] = {.lex_state = 70}, + [2118] = {.lex_state = 70}, + [2119] = {.lex_state = 70}, + [2120] = {.lex_state = 70, .external_lex_state = 4}, + [2121] = {.lex_state = 70}, + [2122] = {.lex_state = 70}, + [2123] = {.lex_state = 0, .external_lex_state = 4}, + [2124] = {.lex_state = 70, .external_lex_state = 4}, + [2125] = {.lex_state = 70}, + [2126] = {.lex_state = 70, .external_lex_state = 4}, + [2127] = {.lex_state = 18}, + [2128] = {.lex_state = 70}, + [2129] = {.lex_state = 70}, + [2130] = {.lex_state = 70}, + [2131] = {.lex_state = 70}, + [2132] = {.lex_state = 70}, + [2133] = {.lex_state = 70, .external_lex_state = 4}, + [2134] = {.lex_state = 70}, + [2135] = {.lex_state = 70}, + [2136] = {.lex_state = 70, .external_lex_state = 4}, + [2137] = {.lex_state = 25}, + [2138] = {.lex_state = 70}, + [2139] = {.lex_state = 70}, + [2140] = {.lex_state = 70}, + [2141] = {.lex_state = 70}, + [2142] = {.lex_state = 0, .external_lex_state = 4}, + [2143] = {.lex_state = 70}, + [2144] = {.lex_state = 70}, + [2145] = {.lex_state = 0, .external_lex_state = 4}, + [2146] = {.lex_state = 70}, + [2147] = {.lex_state = 70}, + [2148] = {.lex_state = 70}, + [2149] = {.lex_state = 70}, + [2150] = {.lex_state = 70, .external_lex_state = 4}, + [2151] = {.lex_state = 70, .external_lex_state = 4}, + [2152] = {.lex_state = 70}, + [2153] = {.lex_state = 70, .external_lex_state = 4}, + [2154] = {.lex_state = 70, .external_lex_state = 4}, + [2155] = {.lex_state = 70, .external_lex_state = 4}, + [2156] = {.lex_state = 70}, + [2157] = {.lex_state = 70, .external_lex_state = 4}, + [2158] = {.lex_state = 70}, + [2159] = {.lex_state = 70, .external_lex_state = 4}, + [2160] = {.lex_state = 70, .external_lex_state = 4}, + [2161] = {.lex_state = 70, .external_lex_state = 4}, + [2162] = {.lex_state = 70}, + [2163] = {.lex_state = 70, .external_lex_state = 4}, + [2164] = {.lex_state = 70, .external_lex_state = 4}, + [2165] = {.lex_state = 70, .external_lex_state = 4}, + [2166] = {.lex_state = 70}, + [2167] = {.lex_state = 70, .external_lex_state = 4}, + [2168] = {.lex_state = 70}, + [2169] = {.lex_state = 70}, + [2170] = {.lex_state = 70}, + [2171] = {.lex_state = 70}, + [2172] = {.lex_state = 0, .external_lex_state = 4}, + [2173] = {.lex_state = 0, .external_lex_state = 4}, + [2174] = {.lex_state = 0, .external_lex_state = 4}, + [2175] = {.lex_state = 0, .external_lex_state = 4}, + [2176] = {.lex_state = 70}, + [2177] = {.lex_state = 70}, + [2178] = {.lex_state = 70}, + [2179] = {.lex_state = 18}, + [2180] = {.lex_state = 70}, + [2181] = {.lex_state = 70}, + [2182] = {.lex_state = 21}, + [2183] = {.lex_state = 23, .external_lex_state = 5}, + [2184] = {.lex_state = 70}, + [2185] = {.lex_state = 70}, + [2186] = {.lex_state = 21}, + [2187] = {.lex_state = 70}, + [2188] = {.lex_state = 70}, + [2189] = {.lex_state = 70, .external_lex_state = 4}, + [2190] = {.lex_state = 70}, + [2191] = {.lex_state = 70, .external_lex_state = 4}, + [2192] = {.lex_state = 70}, + [2193] = {.lex_state = 70}, + [2194] = {.lex_state = 70}, + [2195] = {.lex_state = 23, .external_lex_state = 5}, + [2196] = {.lex_state = 70}, + [2197] = {.lex_state = 25}, + [2198] = {.lex_state = 25}, + [2199] = {.lex_state = 70}, + [2200] = {.lex_state = 70}, + [2201] = {.lex_state = 70}, + [2202] = {.lex_state = 0, .external_lex_state = 4}, + [2203] = {.lex_state = 0, .external_lex_state = 4}, + [2204] = {.lex_state = 70}, + [2205] = {.lex_state = 23, .external_lex_state = 5}, + [2206] = {.lex_state = 0, .external_lex_state = 4}, + [2207] = {.lex_state = 70}, + [2208] = {.lex_state = 0, .external_lex_state = 4}, + [2209] = {.lex_state = 70}, + [2210] = {.lex_state = 70}, + [2211] = {.lex_state = 0, .external_lex_state = 4}, + [2212] = {.lex_state = 70}, + [2213] = {.lex_state = 23, .external_lex_state = 5}, + [2214] = {.lex_state = 70}, + [2215] = {.lex_state = 70}, + [2216] = {.lex_state = 70}, + [2217] = {.lex_state = 70}, + [2218] = {.lex_state = 70}, + [2219] = {.lex_state = 70}, + [2220] = {.lex_state = 23, .external_lex_state = 5}, + [2221] = {.lex_state = 0, .external_lex_state = 4}, + [2222] = {.lex_state = 0, .external_lex_state = 4}, + [2223] = {.lex_state = 70}, + [2224] = {.lex_state = 70}, [2225] = {.lex_state = 0, .external_lex_state = 4}, - [2226] = {.lex_state = 0, .external_lex_state = 4}, - [2227] = {.lex_state = 66}, - [2228] = {.lex_state = 0, .external_lex_state = 4}, - [2229] = {.lex_state = 66}, - [2230] = {.lex_state = 0, .external_lex_state = 4}, - [2231] = {.lex_state = 66}, - [2232] = {.lex_state = 66}, - [2233] = {.lex_state = 0}, - [2234] = {.lex_state = 66}, - [2235] = {.lex_state = 66}, - [2236] = {.lex_state = 66}, - [2237] = {.lex_state = 66}, - [2238] = {.lex_state = 66}, - [2239] = {.lex_state = 66, .external_lex_state = 4}, - [2240] = {.lex_state = 0, .external_lex_state = 4}, - [2241] = {.lex_state = 66}, - [2242] = {.lex_state = 66}, - [2243] = {.lex_state = 0, .external_lex_state = 4}, - [2244] = {.lex_state = 66}, + [2226] = {.lex_state = 23, .external_lex_state = 5}, + [2227] = {.lex_state = 70}, + [2228] = {.lex_state = 70}, + [2229] = {.lex_state = 0, .external_lex_state = 4}, + [2230] = {.lex_state = 70}, + [2231] = {.lex_state = 0, .external_lex_state = 4}, + [2232] = {.lex_state = 70}, + [2233] = {.lex_state = 0, .external_lex_state = 4}, + [2234] = {.lex_state = 21}, + [2235] = {.lex_state = 0, .external_lex_state = 4}, + [2236] = {.lex_state = 70}, + [2237] = {.lex_state = 0, .external_lex_state = 4}, + [2238] = {.lex_state = 70}, + [2239] = {.lex_state = 70}, + [2240] = {.lex_state = 70}, + [2241] = {.lex_state = 70}, + [2242] = {.lex_state = 70}, + [2243] = {.lex_state = 70}, + [2244] = {.lex_state = 70}, [2245] = {.lex_state = 0, .external_lex_state = 4}, - [2246] = {.lex_state = 66, .external_lex_state = 4}, - [2247] = {.lex_state = 0, .external_lex_state = 4}, - [2248] = {.lex_state = 66}, - [2249] = {.lex_state = 0, .external_lex_state = 4}, - [2250] = {.lex_state = 66}, - [2251] = {.lex_state = 66}, - [2252] = {.lex_state = 66}, - [2253] = {.lex_state = 66}, - [2254] = {.lex_state = 0, .external_lex_state = 4}, - [2255] = {.lex_state = 66}, - [2256] = {.lex_state = 0, .external_lex_state = 4}, - [2257] = {.lex_state = 19, .external_lex_state = 5}, - [2258] = {.lex_state = 66}, - [2259] = {.lex_state = 66}, - [2260] = {.lex_state = 66}, - [2261] = {.lex_state = 14}, - [2262] = {.lex_state = 66}, - [2263] = {.lex_state = 0, .external_lex_state = 4}, - [2264] = {.lex_state = 66}, - [2265] = {.lex_state = 21}, - [2266] = {.lex_state = 21}, - [2267] = {.lex_state = 66}, - [2268] = {.lex_state = 66}, - [2269] = {.lex_state = 66}, - [2270] = {.lex_state = 0, .external_lex_state = 4}, - [2271] = {.lex_state = 66}, - [2272] = {.lex_state = 66, .external_lex_state = 4}, - [2273] = {.lex_state = 66}, - [2274] = {.lex_state = 66}, - [2275] = {.lex_state = 0, .external_lex_state = 4}, - [2276] = {.lex_state = 66}, - [2277] = {.lex_state = 0, .external_lex_state = 4}, + [2246] = {.lex_state = 70}, + [2247] = {.lex_state = 70}, + [2248] = {.lex_state = 70}, + [2249] = {.lex_state = 70}, + [2250] = {.lex_state = 70}, + [2251] = {.lex_state = 0, .external_lex_state = 4}, + [2252] = {.lex_state = 70}, + [2253] = {.lex_state = 70}, + [2254] = {.lex_state = 0}, + [2255] = {.lex_state = 70}, + [2256] = {.lex_state = 23, .external_lex_state = 5}, + [2257] = {.lex_state = 70}, + [2258] = {.lex_state = 0, .external_lex_state = 4}, + [2259] = {.lex_state = 70}, + [2260] = {.lex_state = 0, .external_lex_state = 4}, + [2261] = {.lex_state = 70}, + [2262] = {.lex_state = 70}, + [2263] = {.lex_state = 25}, + [2264] = {.lex_state = 70}, + [2265] = {.lex_state = 0, .external_lex_state = 4}, + [2266] = {.lex_state = 70}, + [2267] = {.lex_state = 70}, + [2268] = {.lex_state = 70}, + [2269] = {.lex_state = 70}, + [2270] = {.lex_state = 70}, + [2271] = {.lex_state = 70}, + [2272] = {.lex_state = 25}, + [2273] = {.lex_state = 70}, + [2274] = {.lex_state = 70}, + [2275] = {.lex_state = 18}, + [2276] = {.lex_state = 70}, + [2277] = {.lex_state = 70}, [2278] = {.lex_state = 21}, - [2279] = {.lex_state = 0, .external_lex_state = 4}, - [2280] = {.lex_state = 66}, - [2281] = {.lex_state = 66}, - [2282] = {.lex_state = 0, .external_lex_state = 4}, - [2283] = {.lex_state = 0, .external_lex_state = 4}, - [2284] = {.lex_state = 0, .external_lex_state = 4}, + [2279] = {.lex_state = 70}, + [2280] = {.lex_state = 0, .external_lex_state = 4}, + [2281] = {.lex_state = 70}, + [2282] = {.lex_state = 70}, + [2283] = {.lex_state = 70}, + [2284] = {.lex_state = 70}, [2285] = {.lex_state = 0, .external_lex_state = 4}, - [2286] = {.lex_state = 0, .external_lex_state = 4}, + [2286] = {.lex_state = 70}, [2287] = {.lex_state = 0, .external_lex_state = 4}, - [2288] = {.lex_state = 66}, - [2289] = {.lex_state = 66}, - [2290] = {.lex_state = 66, .external_lex_state = 4}, - [2291] = {.lex_state = 66}, - [2292] = {.lex_state = 0, .external_lex_state = 4}, - [2293] = {.lex_state = 0, .external_lex_state = 4}, - [2294] = {.lex_state = 0, .external_lex_state = 4}, - [2295] = {.lex_state = 0, .external_lex_state = 4}, - [2296] = {.lex_state = 66}, - [2297] = {.lex_state = 0, .external_lex_state = 4}, - [2298] = {.lex_state = 66}, + [2288] = {.lex_state = 70}, + [2289] = {.lex_state = 0, .external_lex_state = 4}, + [2290] = {.lex_state = 0, .external_lex_state = 4}, + [2291] = {.lex_state = 70}, + [2292] = {.lex_state = 70}, + [2293] = {.lex_state = 70}, + [2294] = {.lex_state = 70}, + [2295] = {.lex_state = 70}, + [2296] = {.lex_state = 0, .external_lex_state = 4}, + [2297] = {.lex_state = 70}, + [2298] = {.lex_state = 70}, [2299] = {.lex_state = 0, .external_lex_state = 4}, - [2300] = {.lex_state = 66}, - [2301] = {.lex_state = 66}, - [2302] = {.lex_state = 66}, - [2303] = {.lex_state = 17}, - [2304] = {.lex_state = 0, .external_lex_state = 4}, - [2305] = {.lex_state = 0, .external_lex_state = 4}, - [2306] = {.lex_state = 21}, - [2307] = {.lex_state = 66}, - [2308] = {.lex_state = 0, .external_lex_state = 4}, - [2309] = {.lex_state = 0, .external_lex_state = 4}, - [2310] = {.lex_state = 0, .external_lex_state = 4}, - [2311] = {.lex_state = 66}, - [2312] = {.lex_state = 21}, - [2313] = {.lex_state = 66}, - [2314] = {.lex_state = 66}, - [2315] = {.lex_state = 66}, - [2316] = {.lex_state = 0, .external_lex_state = 4}, - [2317] = {.lex_state = 66}, - [2318] = {.lex_state = 66}, - [2319] = {.lex_state = 66}, - [2320] = {.lex_state = 0, .external_lex_state = 4}, - [2321] = {.lex_state = 66}, - [2322] = {.lex_state = 66}, - [2323] = {.lex_state = 66}, + [2300] = {.lex_state = 70}, + [2301] = {.lex_state = 21}, + [2302] = {.lex_state = 25}, + [2303] = {.lex_state = 70}, + [2304] = {.lex_state = 70}, + [2305] = {.lex_state = 21}, + [2306] = {.lex_state = 70}, + [2307] = {.lex_state = 21}, + [2308] = {.lex_state = 70}, + [2309] = {.lex_state = 70}, + [2310] = {.lex_state = 70}, + [2311] = {.lex_state = 70}, + [2312] = {.lex_state = 0, .external_lex_state = 4}, + [2313] = {.lex_state = 0, .external_lex_state = 4}, + [2314] = {.lex_state = 0, .external_lex_state = 4}, + [2315] = {.lex_state = 70, .external_lex_state = 4}, + [2316] = {.lex_state = 70}, + [2317] = {.lex_state = 70}, + [2318] = {.lex_state = 0, .external_lex_state = 4}, + [2319] = {.lex_state = 0, .external_lex_state = 4}, + [2320] = {.lex_state = 25}, + [2321] = {.lex_state = 70}, + [2322] = {.lex_state = 70}, + [2323] = {.lex_state = 70}, [2324] = {.lex_state = 0, .external_lex_state = 4}, [2325] = {.lex_state = 0, .external_lex_state = 4}, - [2326] = {.lex_state = 66}, - [2327] = {.lex_state = 0, .external_lex_state = 4}, - [2328] = {.lex_state = 14}, - [2329] = {.lex_state = 0, .external_lex_state = 4}, - [2330] = {.lex_state = 66}, - [2331] = {.lex_state = 0, .external_lex_state = 4}, - [2332] = {.lex_state = 66}, - [2333] = {.lex_state = 66}, - [2334] = {.lex_state = 0, .external_lex_state = 4}, - [2335] = {.lex_state = 66}, - [2336] = {.lex_state = 0, .external_lex_state = 4}, - [2337] = {.lex_state = 66}, - [2338] = {.lex_state = 66}, - [2339] = {.lex_state = 0, .external_lex_state = 4}, - [2340] = {.lex_state = 0, .external_lex_state = 4}, - [2341] = {.lex_state = 66}, - [2342] = {.lex_state = 17}, - [2343] = {.lex_state = 0, .external_lex_state = 4}, - [2344] = {.lex_state = 0, .external_lex_state = 4}, - [2345] = {.lex_state = 66}, - [2346] = {.lex_state = 66}, - [2347] = {.lex_state = 0, .external_lex_state = 4}, - [2348] = {.lex_state = 0, .external_lex_state = 4}, - [2349] = {.lex_state = 0, .external_lex_state = 4}, - [2350] = {.lex_state = 14}, - [2351] = {.lex_state = 66}, - [2352] = {.lex_state = 21}, - [2353] = {.lex_state = 66}, + [2326] = {.lex_state = 70}, + [2327] = {.lex_state = 70}, + [2328] = {.lex_state = 70}, + [2329] = {.lex_state = 70, .external_lex_state = 4}, + [2330] = {.lex_state = 70}, + [2331] = {.lex_state = 70}, + [2332] = {.lex_state = 0, .external_lex_state = 4}, + [2333] = {.lex_state = 0, .external_lex_state = 4}, + [2334] = {.lex_state = 18}, + [2335] = {.lex_state = 70}, + [2336] = {.lex_state = 25}, + [2337] = {.lex_state = 70}, + [2338] = {.lex_state = 0, .external_lex_state = 4}, + [2339] = {.lex_state = 70}, + [2340] = {.lex_state = 70}, + [2341] = {.lex_state = 70}, + [2342] = {.lex_state = 70}, + [2343] = {.lex_state = 70}, + [2344] = {.lex_state = 70}, + [2345] = {.lex_state = 0, .external_lex_state = 4}, + [2346] = {.lex_state = 70}, + [2347] = {.lex_state = 70}, + [2348] = {.lex_state = 70}, + [2349] = {.lex_state = 70, .external_lex_state = 4}, + [2350] = {.lex_state = 70}, + [2351] = {.lex_state = 70}, + [2352] = {.lex_state = 70}, + [2353] = {.lex_state = 0, .external_lex_state = 4}, [2354] = {.lex_state = 0, .external_lex_state = 4}, - [2355] = {.lex_state = 66}, - [2356] = {.lex_state = 17}, - [2357] = {.lex_state = 0, .external_lex_state = 4}, - [2358] = {.lex_state = 0, .external_lex_state = 4}, - [2359] = {.lex_state = 66}, - [2360] = {.lex_state = 0, .external_lex_state = 4}, - [2361] = {.lex_state = 66, .external_lex_state = 4}, + [2355] = {.lex_state = 70}, + [2356] = {.lex_state = 70}, + [2357] = {.lex_state = 70}, + [2358] = {.lex_state = 21}, + [2359] = {.lex_state = 70}, + [2360] = {.lex_state = 70}, + [2361] = {.lex_state = 70}, [2362] = {.lex_state = 0, .external_lex_state = 4}, - [2363] = {.lex_state = 66}, - [2364] = {.lex_state = 0, .external_lex_state = 4}, - [2365] = {.lex_state = 66}, - [2366] = {.lex_state = 66}, - [2367] = {.lex_state = 21}, + [2363] = {.lex_state = 70}, + [2364] = {.lex_state = 21}, + [2365] = {.lex_state = 0, .external_lex_state = 4}, + [2366] = {.lex_state = 0, .external_lex_state = 4}, + [2367] = {.lex_state = 70}, [2368] = {.lex_state = 0, .external_lex_state = 4}, [2369] = {.lex_state = 0, .external_lex_state = 4}, - [2370] = {.lex_state = 66}, - [2371] = {.lex_state = 66}, - [2372] = {.lex_state = 66}, + [2370] = {.lex_state = 0, .external_lex_state = 4}, + [2371] = {.lex_state = 70}, + [2372] = {.lex_state = 0, .external_lex_state = 4}, [2373] = {.lex_state = 0, .external_lex_state = 4}, - [2374] = {.lex_state = 66}, - [2375] = {.lex_state = 0, .external_lex_state = 4}, - [2376] = {.lex_state = 0, .external_lex_state = 4}, - [2377] = {.lex_state = 66}, - [2378] = {.lex_state = 66, .external_lex_state = 4}, - [2379] = {.lex_state = 66}, - [2380] = {.lex_state = 0, .external_lex_state = 4}, - [2381] = {.lex_state = 66, .external_lex_state = 4}, - [2382] = {.lex_state = 0, .external_lex_state = 4}, + [2374] = {.lex_state = 70}, + [2375] = {.lex_state = 70}, + [2376] = {.lex_state = 70}, + [2377] = {.lex_state = 70}, + [2378] = {.lex_state = 21}, + [2379] = {.lex_state = 70}, + [2380] = {.lex_state = 70}, + [2381] = {.lex_state = 70}, + [2382] = {.lex_state = 70}, [2383] = {.lex_state = 0, .external_lex_state = 4}, - [2384] = {.lex_state = 66}, - [2385] = {.lex_state = 0, .external_lex_state = 4}, - [2386] = {.lex_state = 66, .external_lex_state = 4}, - [2387] = {.lex_state = 66}, - [2388] = {.lex_state = 17}, + [2384] = {.lex_state = 70}, + [2385] = {.lex_state = 70}, + [2386] = {.lex_state = 0, .external_lex_state = 4}, + [2387] = {.lex_state = 70}, + [2388] = {.lex_state = 0, .external_lex_state = 4}, [2389] = {.lex_state = 0, .external_lex_state = 4}, - [2390] = {.lex_state = 17}, - [2391] = {.lex_state = 0, .external_lex_state = 4}, - [2392] = {.lex_state = 66}, + [2390] = {.lex_state = 0, .external_lex_state = 4}, + [2391] = {.lex_state = 21}, + [2392] = {.lex_state = 70}, [2393] = {.lex_state = 0, .external_lex_state = 4}, - [2394] = {.lex_state = 66}, - [2395] = {.lex_state = 21}, - [2396] = {.lex_state = 0, .external_lex_state = 4}, - [2397] = {.lex_state = 21}, + [2394] = {.lex_state = 25}, + [2395] = {.lex_state = 70}, + [2396] = {.lex_state = 18}, + [2397] = {.lex_state = 70}, [2398] = {.lex_state = 0, .external_lex_state = 4}, - [2399] = {.lex_state = 0}, - [2400] = {.lex_state = 17}, - [2401] = {.lex_state = 66}, - [2402] = {.lex_state = 17}, + [2399] = {.lex_state = 21}, + [2400] = {.lex_state = 0, .external_lex_state = 4}, + [2401] = {.lex_state = 25}, + [2402] = {.lex_state = 70}, [2403] = {.lex_state = 0, .external_lex_state = 4}, - [2404] = {.lex_state = 66}, - [2405] = {.lex_state = 0, .external_lex_state = 4}, - [2406] = {.lex_state = 66}, - [2407] = {.lex_state = 66}, - [2408] = {.lex_state = 0, .external_lex_state = 4}, - [2409] = {.lex_state = 66}, - [2410] = {.lex_state = 66}, - [2411] = {.lex_state = 66}, - [2412] = {.lex_state = 66}, - [2413] = {.lex_state = 66}, - [2414] = {.lex_state = 17}, - [2415] = {.lex_state = 66, .external_lex_state = 4}, - [2416] = {.lex_state = 66}, - [2417] = {.lex_state = 66}, + [2404] = {.lex_state = 70}, + [2405] = {.lex_state = 0}, + [2406] = {.lex_state = 70}, + [2407] = {.lex_state = 70}, + [2408] = {.lex_state = 70}, + [2409] = {.lex_state = 70}, + [2410] = {.lex_state = 21}, + [2411] = {.lex_state = 70}, + [2412] = {.lex_state = 0, .external_lex_state = 4}, + [2413] = {.lex_state = 70}, + [2414] = {.lex_state = 70}, + [2415] = {.lex_state = 0, .external_lex_state = 4}, + [2416] = {.lex_state = 70}, + [2417] = {.lex_state = 0, .external_lex_state = 4}, [2418] = {.lex_state = 0, .external_lex_state = 4}, - [2419] = {.lex_state = 21}, + [2419] = {.lex_state = 0, .external_lex_state = 4}, [2420] = {.lex_state = 0, .external_lex_state = 4}, [2421] = {.lex_state = 0, .external_lex_state = 4}, - [2422] = {.lex_state = 66}, - [2423] = {.lex_state = 17}, - [2424] = {.lex_state = 66}, - [2425] = {.lex_state = 66, .external_lex_state = 4}, - [2426] = {.lex_state = 66}, + [2422] = {.lex_state = 0, .external_lex_state = 4}, + [2423] = {.lex_state = 0, .external_lex_state = 4}, + [2424] = {.lex_state = 70, .external_lex_state = 4}, + [2425] = {.lex_state = 0, .external_lex_state = 4}, + [2426] = {.lex_state = 0, .external_lex_state = 4}, [2427] = {.lex_state = 0, .external_lex_state = 4}, - [2428] = {.lex_state = 0, .external_lex_state = 4}, - [2429] = {.lex_state = 66}, - [2430] = {.lex_state = 66}, - [2431] = {.lex_state = 66}, - [2432] = {.lex_state = 0, .external_lex_state = 4}, + [2428] = {.lex_state = 70}, + [2429] = {.lex_state = 0, .external_lex_state = 4}, + [2430] = {.lex_state = 21}, + [2431] = {.lex_state = 70, .external_lex_state = 4}, + [2432] = {.lex_state = 70}, [2433] = {.lex_state = 0, .external_lex_state = 4}, - [2434] = {.lex_state = 21}, - [2435] = {.lex_state = 66}, - [2436] = {.lex_state = 0, .external_lex_state = 4}, + [2434] = {.lex_state = 0, .external_lex_state = 4}, + [2435] = {.lex_state = 70, .external_lex_state = 4}, + [2436] = {.lex_state = 70}, [2437] = {.lex_state = 0, .external_lex_state = 4}, - [2438] = {.lex_state = 66, .external_lex_state = 4}, + [2438] = {.lex_state = 70}, [2439] = {.lex_state = 0, .external_lex_state = 4}, - [2440] = {.lex_state = 0, .external_lex_state = 4}, - [2441] = {.lex_state = 66}, + [2440] = {.lex_state = 25}, + [2441] = {.lex_state = 70, .external_lex_state = 4}, [2442] = {.lex_state = 0, .external_lex_state = 4}, [2443] = {.lex_state = 0, .external_lex_state = 4}, - [2444] = {.lex_state = 66}, - [2445] = {.lex_state = 66}, - [2446] = {.lex_state = 66}, - [2447] = {.lex_state = 66, .external_lex_state = 4}, + [2444] = {.lex_state = 0, .external_lex_state = 4}, + [2445] = {.lex_state = 21}, + [2446] = {.lex_state = 0, .external_lex_state = 4}, + [2447] = {.lex_state = 21}, [2448] = {.lex_state = 0, .external_lex_state = 4}, - [2449] = {.lex_state = 66}, + [2449] = {.lex_state = 0, .external_lex_state = 4}, [2450] = {.lex_state = 0, .external_lex_state = 4}, - [2451] = {.lex_state = 0, .external_lex_state = 4}, + [2451] = {.lex_state = 70}, [2452] = {.lex_state = 0, .external_lex_state = 4}, - [2453] = {.lex_state = 66}, - [2454] = {.lex_state = 66}, - [2455] = {.lex_state = 66}, - [2456] = {.lex_state = 14}, - [2457] = {.lex_state = 21}, + [2453] = {.lex_state = 70}, + [2454] = {.lex_state = 0, .external_lex_state = 4}, + [2455] = {.lex_state = 70}, + [2456] = {.lex_state = 0, .external_lex_state = 4}, + [2457] = {.lex_state = 0, .external_lex_state = 4}, [2458] = {.lex_state = 0, .external_lex_state = 4}, - [2459] = {.lex_state = 0, .external_lex_state = 4}, - [2460] = {.lex_state = 0, .external_lex_state = 4}, + [2459] = {.lex_state = 70}, + [2460] = {.lex_state = 25}, [2461] = {.lex_state = 0, .external_lex_state = 4}, - [2462] = {.lex_state = 66}, - [2463] = {.lex_state = 66}, - [2464] = {.lex_state = 66}, - [2465] = {.lex_state = 66}, - [2466] = {.lex_state = 66}, - [2467] = {.lex_state = 66}, - [2468] = {.lex_state = 17}, - [2469] = {.lex_state = 66}, - [2470] = {.lex_state = 66}, - [2471] = {.lex_state = 66}, - [2472] = {.lex_state = 66}, - [2473] = {.lex_state = 66}, - [2474] = {.lex_state = 66}, - [2475] = {.lex_state = 0}, + [2462] = {.lex_state = 70}, + [2463] = {.lex_state = 25}, + [2464] = {.lex_state = 70}, + [2465] = {.lex_state = 70}, + [2466] = {.lex_state = 0}, + [2467] = {.lex_state = 0, .external_lex_state = 4}, + [2468] = {.lex_state = 70}, + [2469] = {.lex_state = 0, .external_lex_state = 4}, + [2470] = {.lex_state = 70}, + [2471] = {.lex_state = 0, .external_lex_state = 4}, + [2472] = {.lex_state = 70, .external_lex_state = 4}, + [2473] = {.lex_state = 70}, + [2474] = {.lex_state = 70, .external_lex_state = 4}, + [2475] = {.lex_state = 25}, [2476] = {.lex_state = 0, .external_lex_state = 4}, - [2477] = {.lex_state = 17}, - [2478] = {.lex_state = 21}, - [2479] = {.lex_state = 66, .external_lex_state = 4}, - [2480] = {.lex_state = 66}, - [2481] = {.lex_state = 66, .external_lex_state = 4}, + [2477] = {.lex_state = 0, .external_lex_state = 4}, + [2478] = {.lex_state = 0, .external_lex_state = 4}, + [2479] = {.lex_state = 0, .external_lex_state = 4}, + [2480] = {.lex_state = 0, .external_lex_state = 4}, + [2481] = {.lex_state = 0, .external_lex_state = 4}, [2482] = {.lex_state = 0, .external_lex_state = 4}, - [2483] = {.lex_state = 21}, - [2484] = {.lex_state = 66}, + [2483] = {.lex_state = 0, .external_lex_state = 4}, + [2484] = {.lex_state = 0, .external_lex_state = 4}, [2485] = {.lex_state = 0, .external_lex_state = 4}, [2486] = {.lex_state = 0, .external_lex_state = 4}, - [2487] = {.lex_state = 0, .external_lex_state = 4}, - [2488] = {.lex_state = 66}, - [2489] = {.lex_state = 0, .external_lex_state = 4}, - [2490] = {.lex_state = 17}, - [2491] = {.lex_state = 66}, + [2487] = {.lex_state = 70}, + [2488] = {.lex_state = 0, .external_lex_state = 4}, + [2489] = {.lex_state = 70, .external_lex_state = 4}, + [2490] = {.lex_state = 0, .external_lex_state = 4}, + [2491] = {.lex_state = 0, .external_lex_state = 4}, [2492] = {.lex_state = 0, .external_lex_state = 4}, - [2493] = {.lex_state = 66}, - [2494] = {.lex_state = 17}, - [2495] = {.lex_state = 66}, - [2496] = {.lex_state = 66}, + [2493] = {.lex_state = 0, .external_lex_state = 4}, + [2494] = {.lex_state = 0, .external_lex_state = 4}, + [2495] = {.lex_state = 0, .external_lex_state = 4}, + [2496] = {.lex_state = 21}, [2497] = {.lex_state = 0, .external_lex_state = 4}, - [2498] = {.lex_state = 66}, - [2499] = {.lex_state = 66}, - [2500] = {.lex_state = 66}, + [2498] = {.lex_state = 0, .external_lex_state = 4}, + [2499] = {.lex_state = 0, .external_lex_state = 4}, + [2500] = {.lex_state = 0, .external_lex_state = 4}, [2501] = {.lex_state = 0, .external_lex_state = 4}, - [2502] = {.lex_state = 66}, - [2503] = {.lex_state = 66}, - [2504] = {.lex_state = 66}, - [2505] = {.lex_state = 66}, - [2506] = {.lex_state = 66}, - [2507] = {.lex_state = 14}, - [2508] = {.lex_state = 0, .external_lex_state = 4}, - [2509] = {.lex_state = 66}, - [2510] = {.lex_state = 0, .external_lex_state = 4}, + [2502] = {.lex_state = 70, .external_lex_state = 4}, + [2503] = {.lex_state = 25}, + [2504] = {.lex_state = 25}, + [2505] = {.lex_state = 18}, + [2506] = {.lex_state = 70}, + [2507] = {.lex_state = 0, .external_lex_state = 4}, + [2508] = {.lex_state = 70}, + [2509] = {.lex_state = 0, .external_lex_state = 4}, + [2510] = {.lex_state = 70}, [2511] = {.lex_state = 0, .external_lex_state = 4}, - [2512] = {.lex_state = 66}, - [2513] = {.lex_state = 0, .external_lex_state = 4}, - [2514] = {.lex_state = 0, .external_lex_state = 4}, - [2515] = {.lex_state = 0, .external_lex_state = 4}, - [2516] = {.lex_state = 17}, - [2517] = {.lex_state = 1}, - [2518] = {.lex_state = 0}, - [2519] = {.lex_state = 66}, - [2520] = {.lex_state = 66}, - [2521] = {.lex_state = 1}, - [2522] = {.lex_state = 3}, - [2523] = {.lex_state = 1}, - [2524] = {.lex_state = 3}, - [2525] = {.lex_state = 0}, - [2526] = {.lex_state = 0}, - [2527] = {.lex_state = 66}, - [2528] = {.lex_state = 66}, - [2529] = {.lex_state = 0, .external_lex_state = 4}, - [2530] = {.lex_state = 0, .external_lex_state = 4}, - [2531] = {.lex_state = 66}, - [2532] = {.lex_state = 66}, - [2533] = {.lex_state = 66}, - [2534] = {.lex_state = 0, .external_lex_state = 4}, - [2535] = {.lex_state = 0, .external_lex_state = 4}, - [2536] = {.lex_state = 66}, - [2537] = {.lex_state = 3}, - [2538] = {.lex_state = 1}, - [2539] = {.lex_state = 3}, - [2540] = {.lex_state = 1}, - [2541] = {.lex_state = 0}, - [2542] = {.lex_state = 66, .external_lex_state = 4}, - [2543] = {.lex_state = 0, .external_lex_state = 4}, - [2544] = {.lex_state = 66}, - [2545] = {.lex_state = 66}, - [2546] = {.lex_state = 1}, - [2547] = {.lex_state = 3}, - [2548] = {.lex_state = 66}, - [2549] = {.lex_state = 3}, - [2550] = {.lex_state = 1}, - [2551] = {.lex_state = 3}, - [2552] = {.lex_state = 3}, - [2553] = {.lex_state = 1}, - [2554] = {.lex_state = 0}, - [2555] = {.lex_state = 1}, - [2556] = {.lex_state = 17}, - [2557] = {.lex_state = 3}, - [2558] = {.lex_state = 1}, - [2559] = {.lex_state = 17}, + [2512] = {.lex_state = 70}, + [2513] = {.lex_state = 70}, + [2514] = {.lex_state = 70, .external_lex_state = 4}, + [2515] = {.lex_state = 25}, + [2516] = {.lex_state = 70}, + [2517] = {.lex_state = 70, .external_lex_state = 4}, + [2518] = {.lex_state = 1}, + [2519] = {.lex_state = 70}, + [2520] = {.lex_state = 3}, + [2521] = {.lex_state = 5}, + [2522] = {.lex_state = 70}, + [2523] = {.lex_state = 70}, + [2524] = {.lex_state = 70}, + [2525] = {.lex_state = 70}, + [2526] = {.lex_state = 70, .external_lex_state = 4}, + [2527] = {.lex_state = 0}, + [2528] = {.lex_state = 0}, + [2529] = {.lex_state = 70}, + [2530] = {.lex_state = 70}, + [2531] = {.lex_state = 70}, + [2532] = {.lex_state = 3}, + [2533] = {.lex_state = 5}, + [2534] = {.lex_state = 23, .external_lex_state = 5}, + [2535] = {.lex_state = 7}, + [2536] = {.lex_state = 1}, + [2537] = {.lex_state = 0}, + [2538] = {.lex_state = 3}, + [2539] = {.lex_state = 70}, + [2540] = {.lex_state = 5}, + [2541] = {.lex_state = 21}, + [2542] = {.lex_state = 0}, + [2543] = {.lex_state = 0}, + [2544] = {.lex_state = 70}, + [2545] = {.lex_state = 70, .external_lex_state = 4}, + [2546] = {.lex_state = 70}, + [2547] = {.lex_state = 5}, + [2548] = {.lex_state = 0}, + [2549] = {.lex_state = 5}, + [2550] = {.lex_state = 0}, + [2551] = {.lex_state = 70}, + [2552] = {.lex_state = 5}, + [2553] = {.lex_state = 3}, + [2554] = {.lex_state = 70}, + [2555] = {.lex_state = 70}, + [2556] = {.lex_state = 3}, + [2557] = {.lex_state = 21}, + [2558] = {.lex_state = 70, .external_lex_state = 4}, + [2559] = {.lex_state = 70, .external_lex_state = 4}, [2560] = {.lex_state = 0}, - [2561] = {.lex_state = 66}, - [2562] = {.lex_state = 66, .external_lex_state = 4}, + [2561] = {.lex_state = 70, .external_lex_state = 4}, + [2562] = {.lex_state = 70}, [2563] = {.lex_state = 0}, - [2564] = {.lex_state = 66, .external_lex_state = 4}, - [2565] = {.lex_state = 66}, - [2566] = {.lex_state = 66, .external_lex_state = 4}, - [2567] = {.lex_state = 66}, - [2568] = {.lex_state = 66}, - [2569] = {.lex_state = 66}, - [2570] = {.lex_state = 66, .external_lex_state = 4}, - [2571] = {.lex_state = 66}, - [2572] = {.lex_state = 0, .external_lex_state = 4}, - [2573] = {.lex_state = 0}, - [2574] = {.lex_state = 3}, - [2575] = {.lex_state = 66}, - [2576] = {.lex_state = 3}, - [2577] = {.lex_state = 66}, - [2578] = {.lex_state = 1}, - [2579] = {.lex_state = 0}, - [2580] = {.lex_state = 0}, - [2581] = {.lex_state = 0}, - [2582] = {.lex_state = 3}, - [2583] = {.lex_state = 66, .external_lex_state = 4}, - [2584] = {.lex_state = 1}, - [2585] = {.lex_state = 0}, - [2586] = {.lex_state = 66}, - [2587] = {.lex_state = 66}, - [2588] = {.lex_state = 0}, - [2589] = {.lex_state = 66, .external_lex_state = 4}, - [2590] = {.lex_state = 66}, - [2591] = {.lex_state = 66, .external_lex_state = 4}, - [2592] = {.lex_state = 0, .external_lex_state = 4}, - [2593] = {.lex_state = 66, .external_lex_state = 4}, - [2594] = {.lex_state = 3}, - [2595] = {.lex_state = 1}, - [2596] = {.lex_state = 66}, - [2597] = {.lex_state = 66}, - [2598] = {.lex_state = 66, .external_lex_state = 4}, - [2599] = {.lex_state = 0}, - [2600] = {.lex_state = 66}, - [2601] = {.lex_state = 66}, - [2602] = {.lex_state = 66}, - [2603] = {.lex_state = 0, .external_lex_state = 4}, - [2604] = {.lex_state = 66}, - [2605] = {.lex_state = 66}, - [2606] = {.lex_state = 0}, - [2607] = {.lex_state = 66, .external_lex_state = 4}, - [2608] = {.lex_state = 0}, - [2609] = {.lex_state = 66}, - [2610] = {.lex_state = 19, .external_lex_state = 5}, - [2611] = {.lex_state = 66}, - [2612] = {.lex_state = 17}, - [2613] = {.lex_state = 66}, - [2614] = {.lex_state = 0, .external_lex_state = 4}, - [2615] = {.lex_state = 0}, + [2564] = {.lex_state = 3}, + [2565] = {.lex_state = 5}, + [2566] = {.lex_state = 70}, + [2567] = {.lex_state = 0}, + [2568] = {.lex_state = 70}, + [2569] = {.lex_state = 0}, + [2570] = {.lex_state = 0}, + [2571] = {.lex_state = 21}, + [2572] = {.lex_state = 70}, + [2573] = {.lex_state = 70}, + [2574] = {.lex_state = 70}, + [2575] = {.lex_state = 0}, + [2576] = {.lex_state = 0}, + [2577] = {.lex_state = 70}, + [2578] = {.lex_state = 3}, + [2579] = {.lex_state = 0, .external_lex_state = 4}, + [2580] = {.lex_state = 70}, + [2581] = {.lex_state = 70}, + [2582] = {.lex_state = 70}, + [2583] = {.lex_state = 21}, + [2584] = {.lex_state = 0, .external_lex_state = 4}, + [2585] = {.lex_state = 70}, + [2586] = {.lex_state = 5}, + [2587] = {.lex_state = 70}, + [2588] = {.lex_state = 70, .external_lex_state = 4}, + [2589] = {.lex_state = 70}, + [2590] = {.lex_state = 70, .external_lex_state = 4}, + [2591] = {.lex_state = 70, .external_lex_state = 4}, + [2592] = {.lex_state = 0}, + [2593] = {.lex_state = 3}, + [2594] = {.lex_state = 0}, + [2595] = {.lex_state = 3}, + [2596] = {.lex_state = 70, .external_lex_state = 4}, + [2597] = {.lex_state = 70}, + [2598] = {.lex_state = 5}, + [2599] = {.lex_state = 3}, + [2600] = {.lex_state = 70}, + [2601] = {.lex_state = 0, .external_lex_state = 4}, + [2602] = {.lex_state = 0}, + [2603] = {.lex_state = 70, .external_lex_state = 4}, + [2604] = {.lex_state = 70}, + [2605] = {.lex_state = 70}, + [2606] = {.lex_state = 70, .external_lex_state = 4}, + [2607] = {.lex_state = 5}, + [2608] = {.lex_state = 7}, + [2609] = {.lex_state = 0, .external_lex_state = 4}, + [2610] = {.lex_state = 0, .external_lex_state = 4}, + [2611] = {.lex_state = 70, .external_lex_state = 4}, + [2612] = {.lex_state = 1}, + [2613] = {.lex_state = 70}, + [2614] = {.lex_state = 21}, + [2615] = {.lex_state = 70}, [2616] = {.lex_state = 0}, - [2617] = {.lex_state = 0}, - [2618] = {.lex_state = 0}, - [2619] = {.lex_state = 66, .external_lex_state = 4}, - [2620] = {.lex_state = 3}, - [2621] = {.lex_state = 1}, - [2622] = {.lex_state = 0}, - [2623] = {.lex_state = 66}, + [2617] = {.lex_state = 0, .external_lex_state = 4}, + [2618] = {.lex_state = 7}, + [2619] = {.lex_state = 70, .external_lex_state = 4}, + [2620] = {.lex_state = 5}, + [2621] = {.lex_state = 0}, + [2622] = {.lex_state = 70}, + [2623] = {.lex_state = 0}, [2624] = {.lex_state = 0}, - [2625] = {.lex_state = 66, .external_lex_state = 4}, - [2626] = {.lex_state = 0}, - [2627] = {.lex_state = 66}, - [2628] = {.lex_state = 17}, - [2629] = {.lex_state = 66}, - [2630] = {.lex_state = 17}, - [2631] = {.lex_state = 3}, - [2632] = {.lex_state = 0}, - [2633] = {.lex_state = 1}, - [2634] = {.lex_state = 66}, - [2635] = {.lex_state = 66}, - [2636] = {.lex_state = 66, .external_lex_state = 4}, + [2625] = {.lex_state = 0}, + [2626] = {.lex_state = 70}, + [2627] = {.lex_state = 70}, + [2628] = {.lex_state = 0, .external_lex_state = 4}, + [2629] = {.lex_state = 0}, + [2630] = {.lex_state = 0, .external_lex_state = 4}, + [2631] = {.lex_state = 21}, + [2632] = {.lex_state = 0, .external_lex_state = 4}, + [2633] = {.lex_state = 5}, + [2634] = {.lex_state = 70}, + [2635] = {.lex_state = 3}, + [2636] = {.lex_state = 3}, [2637] = {.lex_state = 0}, - [2638] = {.lex_state = 66}, - [2639] = {.lex_state = 17}, - [2640] = {.lex_state = 29}, - [2641] = {.lex_state = 0}, - [2642] = {.lex_state = 66}, - [2643] = {.lex_state = 66}, - [2644] = {.lex_state = 0}, - [2645] = {.lex_state = 0}, + [2638] = {.lex_state = 0}, + [2639] = {.lex_state = 3}, + [2640] = {.lex_state = 5}, + [2641] = {.lex_state = 70}, + [2642] = {.lex_state = 0}, + [2643] = {.lex_state = 0}, + [2644] = {.lex_state = 70}, + [2645] = {.lex_state = 70}, [2646] = {.lex_state = 0}, - [2647] = {.lex_state = 0, .external_lex_state = 4}, - [2648] = {.lex_state = 0}, - [2649] = {.lex_state = 29}, - [2650] = {.lex_state = 0}, - [2651] = {.lex_state = 66}, - [2652] = {.lex_state = 0}, - [2653] = {.lex_state = 66, .external_lex_state = 4}, - [2654] = {.lex_state = 0}, - [2655] = {.lex_state = 66}, - [2656] = {.lex_state = 0}, - [2657] = {.lex_state = 66}, - [2658] = {.lex_state = 66}, - [2659] = {.lex_state = 66}, + [2647] = {.lex_state = 70}, + [2648] = {.lex_state = 70}, + [2649] = {.lex_state = 70}, + [2650] = {.lex_state = 70}, + [2651] = {.lex_state = 0, .external_lex_state = 4}, + [2652] = {.lex_state = 0, .external_lex_state = 4}, + [2653] = {.lex_state = 0}, + [2654] = {.lex_state = 0, .external_lex_state = 4}, + [2655] = {.lex_state = 0, .external_lex_state = 4}, + [2656] = {.lex_state = 70, .external_lex_state = 4}, + [2657] = {.lex_state = 70, .external_lex_state = 4}, + [2658] = {.lex_state = 70, .external_lex_state = 4}, + [2659] = {.lex_state = 70}, [2660] = {.lex_state = 0}, - [2661] = {.lex_state = 29}, - [2662] = {.lex_state = 0}, - [2663] = {.lex_state = 0}, - [2664] = {.lex_state = 66}, - [2665] = {.lex_state = 66}, - [2666] = {.lex_state = 0}, - [2667] = {.lex_state = 14}, + [2661] = {.lex_state = 70}, + [2662] = {.lex_state = 70}, + [2663] = {.lex_state = 33}, + [2664] = {.lex_state = 0}, + [2665] = {.lex_state = 0}, + [2666] = {.lex_state = 70}, + [2667] = {.lex_state = 70}, [2668] = {.lex_state = 0}, - [2669] = {.lex_state = 66}, + [2669] = {.lex_state = 0}, [2670] = {.lex_state = 0}, [2671] = {.lex_state = 0}, - [2672] = {.lex_state = 0}, + [2672] = {.lex_state = 70}, [2673] = {.lex_state = 0}, [2674] = {.lex_state = 0}, - [2675] = {.lex_state = 66}, - [2676] = {.lex_state = 0}, + [2675] = {.lex_state = 0, .external_lex_state = 4}, + [2676] = {.lex_state = 0, .external_lex_state = 4}, [2677] = {.lex_state = 0}, - [2678] = {.lex_state = 66}, - [2679] = {.lex_state = 0}, + [2678] = {.lex_state = 0}, + [2679] = {.lex_state = 0, .external_lex_state = 4}, [2680] = {.lex_state = 0}, - [2681] = {.lex_state = 66}, - [2682] = {.lex_state = 29}, + [2681] = {.lex_state = 0, .external_lex_state = 4}, + [2682] = {.lex_state = 0, .external_lex_state = 4}, [2683] = {.lex_state = 0}, - [2684] = {.lex_state = 0}, - [2685] = {.lex_state = 66}, - [2686] = {.lex_state = 66}, - [2687] = {.lex_state = 66}, - [2688] = {.lex_state = 66}, - [2689] = {.lex_state = 66}, - [2690] = {.lex_state = 66}, - [2691] = {.lex_state = 66}, - [2692] = {.lex_state = 29}, - [2693] = {.lex_state = 66}, - [2694] = {.lex_state = 0}, - [2695] = {.lex_state = 66}, - [2696] = {.lex_state = 66}, - [2697] = {.lex_state = 14}, + [2684] = {.lex_state = 70}, + [2685] = {.lex_state = 0, .external_lex_state = 4}, + [2686] = {.lex_state = 0}, + [2687] = {.lex_state = 0, .external_lex_state = 4}, + [2688] = {.lex_state = 0, .external_lex_state = 4}, + [2689] = {.lex_state = 0}, + [2690] = {.lex_state = 0}, + [2691] = {.lex_state = 0, .external_lex_state = 4}, + [2692] = {.lex_state = 0}, + [2693] = {.lex_state = 70}, + [2694] = {.lex_state = 0, .external_lex_state = 4}, + [2695] = {.lex_state = 70}, + [2696] = {.lex_state = 70}, + [2697] = {.lex_state = 0, .external_lex_state = 4}, [2698] = {.lex_state = 0}, - [2699] = {.lex_state = 29}, - [2700] = {.lex_state = 66}, - [2701] = {.lex_state = 29}, - [2702] = {.lex_state = 66}, - [2703] = {.lex_state = 29}, - [2704] = {.lex_state = 0, .external_lex_state = 4}, + [2699] = {.lex_state = 0, .external_lex_state = 4}, + [2700] = {.lex_state = 70}, + [2701] = {.lex_state = 0, .external_lex_state = 4}, + [2702] = {.lex_state = 0, .external_lex_state = 4}, + [2703] = {.lex_state = 0, .external_lex_state = 4}, + [2704] = {.lex_state = 0}, [2705] = {.lex_state = 0, .external_lex_state = 4}, - [2706] = {.lex_state = 66}, - [2707] = {.lex_state = 0}, - [2708] = {.lex_state = 0}, - [2709] = {.lex_state = 0}, - [2710] = {.lex_state = 66}, - [2711] = {.lex_state = 66}, - [2712] = {.lex_state = 0, .external_lex_state = 4}, - [2713] = {.lex_state = 0, .external_lex_state = 4}, - [2714] = {.lex_state = 0, .external_lex_state = 4}, - [2715] = {.lex_state = 29}, - [2716] = {.lex_state = 0, .external_lex_state = 4}, - [2717] = {.lex_state = 14}, - [2718] = {.lex_state = 66}, + [2706] = {.lex_state = 70}, + [2707] = {.lex_state = 0, .external_lex_state = 4}, + [2708] = {.lex_state = 70}, + [2709] = {.lex_state = 33}, + [2710] = {.lex_state = 0}, + [2711] = {.lex_state = 70, .external_lex_state = 4}, + [2712] = {.lex_state = 70}, + [2713] = {.lex_state = 70}, + [2714] = {.lex_state = 0}, + [2715] = {.lex_state = 0}, + [2716] = {.lex_state = 70}, + [2717] = {.lex_state = 70}, + [2718] = {.lex_state = 70}, [2719] = {.lex_state = 0}, - [2720] = {.lex_state = 29}, - [2721] = {.lex_state = 0}, + [2720] = {.lex_state = 0}, + [2721] = {.lex_state = 70}, [2722] = {.lex_state = 0}, - [2723] = {.lex_state = 0}, - [2724] = {.lex_state = 66}, + [2723] = {.lex_state = 18}, + [2724] = {.lex_state = 0}, [2725] = {.lex_state = 0}, - [2726] = {.lex_state = 0}, - [2727] = {.lex_state = 0}, - [2728] = {.lex_state = 66}, + [2726] = {.lex_state = 0, .external_lex_state = 4}, + [2727] = {.lex_state = 70}, + [2728] = {.lex_state = 18}, [2729] = {.lex_state = 0}, - [2730] = {.lex_state = 66}, - [2731] = {.lex_state = 66}, - [2732] = {.lex_state = 0}, + [2730] = {.lex_state = 0}, + [2731] = {.lex_state = 0}, + [2732] = {.lex_state = 0, .external_lex_state = 4}, [2733] = {.lex_state = 0}, - [2734] = {.lex_state = 0}, - [2735] = {.lex_state = 0}, - [2736] = {.lex_state = 66}, + [2734] = {.lex_state = 70}, + [2735] = {.lex_state = 70}, + [2736] = {.lex_state = 18}, [2737] = {.lex_state = 0}, - [2738] = {.lex_state = 0}, - [2739] = {.lex_state = 66}, + [2738] = {.lex_state = 70}, + [2739] = {.lex_state = 0}, [2740] = {.lex_state = 0}, [2741] = {.lex_state = 0}, - [2742] = {.lex_state = 0, .external_lex_state = 4}, + [2742] = {.lex_state = 0}, [2743] = {.lex_state = 0}, [2744] = {.lex_state = 0, .external_lex_state = 4}, - [2745] = {.lex_state = 0}, + [2745] = {.lex_state = 70}, [2746] = {.lex_state = 0}, [2747] = {.lex_state = 0}, - [2748] = {.lex_state = 0, .external_lex_state = 4}, - [2749] = {.lex_state = 66}, - [2750] = {.lex_state = 0, .external_lex_state = 4}, - [2751] = {.lex_state = 0, .external_lex_state = 4}, - [2752] = {.lex_state = 0}, - [2753] = {.lex_state = 66, .external_lex_state = 4}, - [2754] = {.lex_state = 0}, - [2755] = {.lex_state = 66}, - [2756] = {.lex_state = 0, .external_lex_state = 4}, - [2757] = {.lex_state = 0}, + [2748] = {.lex_state = 70}, + [2749] = {.lex_state = 0}, + [2750] = {.lex_state = 33}, + [2751] = {.lex_state = 33}, + [2752] = {.lex_state = 33}, + [2753] = {.lex_state = 0}, + [2754] = {.lex_state = 70}, + [2755] = {.lex_state = 33}, + [2756] = {.lex_state = 0}, + [2757] = {.lex_state = 70}, [2758] = {.lex_state = 0}, - [2759] = {.lex_state = 0}, - [2760] = {.lex_state = 0}, - [2761] = {.lex_state = 66, .external_lex_state = 4}, - [2762] = {.lex_state = 0}, - [2763] = {.lex_state = 66}, - [2764] = {.lex_state = 66}, - [2765] = {.lex_state = 0}, - [2766] = {.lex_state = 66}, - [2767] = {.lex_state = 0}, - [2768] = {.lex_state = 0}, - [2769] = {.lex_state = 66}, - [2770] = {.lex_state = 0}, - [2771] = {.lex_state = 0}, - [2772] = {.lex_state = 0}, - [2773] = {.lex_state = 66, .external_lex_state = 4}, - [2774] = {.lex_state = 66}, - [2775] = {.lex_state = 66}, - [2776] = {.lex_state = 0, .external_lex_state = 4}, - [2777] = {.lex_state = 66, .external_lex_state = 4}, + [2759] = {.lex_state = 0, .external_lex_state = 4}, + [2760] = {.lex_state = 0, .external_lex_state = 4}, + [2761] = {.lex_state = 70}, + [2762] = {.lex_state = 33}, + [2763] = {.lex_state = 0, .external_lex_state = 4}, + [2764] = {.lex_state = 0, .external_lex_state = 4}, + [2765] = {.lex_state = 0, .external_lex_state = 4}, + [2766] = {.lex_state = 0, .external_lex_state = 4}, + [2767] = {.lex_state = 0, .external_lex_state = 4}, + [2768] = {.lex_state = 33}, + [2769] = {.lex_state = 0}, + [2770] = {.lex_state = 70}, + [2771] = {.lex_state = 70}, + [2772] = {.lex_state = 70}, + [2773] = {.lex_state = 33}, + [2774] = {.lex_state = 0}, + [2775] = {.lex_state = 70, .external_lex_state = 4}, + [2776] = {.lex_state = 70}, + [2777] = {.lex_state = 70}, [2778] = {.lex_state = 0}, - [2779] = {.lex_state = 0, .external_lex_state = 4}, - [2780] = {.lex_state = 0, .external_lex_state = 4}, - [2781] = {.lex_state = 0, .external_lex_state = 4}, - [2782] = {.lex_state = 0}, - [2783] = {.lex_state = 0, .external_lex_state = 4}, - [2784] = {.lex_state = 0, .external_lex_state = 4}, - [2785] = {.lex_state = 0, .external_lex_state = 4}, - [2786] = {.lex_state = 66}, - [2787] = {.lex_state = 66}, - [2788] = {.lex_state = 66}, - [2789] = {.lex_state = 66}, - [2790] = {.lex_state = 0, .external_lex_state = 4}, - [2791] = {.lex_state = 0, .external_lex_state = 4}, - [2792] = {.lex_state = 66}, - [2793] = {.lex_state = 0, .external_lex_state = 4}, - [2794] = {.lex_state = 29}, - [2795] = {.lex_state = 0, .external_lex_state = 4}, + [2779] = {.lex_state = 0}, + [2780] = {.lex_state = 70}, + [2781] = {.lex_state = 70}, + [2782] = {.lex_state = 70, .external_lex_state = 4}, + [2783] = {.lex_state = 0}, + [2784] = {.lex_state = 33}, + [2785] = {.lex_state = 70}, + [2786] = {.lex_state = 0}, + [2787] = {.lex_state = 0}, + [2788] = {.lex_state = 0}, + [2789] = {.lex_state = 0}, + [2790] = {.lex_state = 0}, + [2791] = {.lex_state = 0}, + [2792] = {.lex_state = 0}, + [2793] = {.lex_state = 0}, + [2794] = {.lex_state = 33}, + [2795] = {.lex_state = 0}, [2796] = {.lex_state = 0}, [2797] = {.lex_state = 0}, - [2798] = {.lex_state = 66}, + [2798] = {.lex_state = 0}, [2799] = {.lex_state = 0}, [2800] = {.lex_state = 0}, - [2801] = {.lex_state = 0, .external_lex_state = 4}, - [2802] = {.lex_state = 0, .external_lex_state = 4}, - [2803] = {.lex_state = 0, .external_lex_state = 4}, - [2804] = {.lex_state = 0}, - [2805] = {.lex_state = 66, .external_lex_state = 4}, - [2806] = {.lex_state = 66, .external_lex_state = 4}, - [2807] = {.lex_state = 0, .external_lex_state = 4}, - [2808] = {.lex_state = 0}, + [2801] = {.lex_state = 70}, + [2802] = {.lex_state = 0}, + [2803] = {.lex_state = 0}, + [2804] = {.lex_state = 70}, + [2805] = {.lex_state = 0}, + [2806] = {.lex_state = 0}, + [2807] = {.lex_state = 0}, + [2808] = {.lex_state = 70}, [2809] = {.lex_state = 0}, - [2810] = {.lex_state = 66}, - [2811] = {.lex_state = 0}, - [2812] = {.lex_state = 0, .external_lex_state = 4}, - [2813] = {.lex_state = 0}, - [2814] = {.lex_state = 0, .external_lex_state = 4}, - [2815] = {.lex_state = 66}, - [2816] = {.lex_state = 66}, - [2817] = {.lex_state = 66}, - [2818] = {.lex_state = 66}, + [2810] = {.lex_state = 0}, + [2811] = {.lex_state = 70}, + [2812] = {.lex_state = 0}, + [2813] = {.lex_state = 70}, + [2814] = {.lex_state = 70}, + [2815] = {.lex_state = 70, .external_lex_state = 4}, + [2816] = {.lex_state = 70}, + [2817] = {.lex_state = 70}, + [2818] = {.lex_state = 0}, [2819] = {.lex_state = 0}, - [2820] = {.lex_state = 0}, + [2820] = {.lex_state = 0, .external_lex_state = 4}, [2821] = {.lex_state = 0}, [2822] = {.lex_state = 0}, [2823] = {.lex_state = 0}, [2824] = {.lex_state = 0}, - [2825] = {.lex_state = 0, .external_lex_state = 4}, - [2826] = {.lex_state = 0}, - [2827] = {.lex_state = 0}, - [2828] = {.lex_state = 66}, - [2829] = {.lex_state = 0}, + [2825] = {.lex_state = 70}, + [2826] = {.lex_state = 70}, + [2827] = {.lex_state = 0, .external_lex_state = 4}, + [2828] = {.lex_state = 70}, + [2829] = {.lex_state = 70}, [2830] = {.lex_state = 0}, - [2831] = {.lex_state = 0}, - [2832] = {.lex_state = 0, .external_lex_state = 4}, + [2831] = {.lex_state = 70}, + [2832] = {.lex_state = 0}, [2833] = {.lex_state = 0}, - [2834] = {.lex_state = 0, .external_lex_state = 4}, - [2835] = {.lex_state = 66}, - [2836] = {.lex_state = 66}, - [2837] = {.lex_state = 0, .external_lex_state = 4}, - [2838] = {.lex_state = 66}, - [2839] = {.lex_state = 66}, - [2840] = {.lex_state = 0}, - [2841] = {.lex_state = 0}, - [2842] = {.lex_state = 66}, - [2843] = {.lex_state = 0}, - [2844] = {.lex_state = 0}, + [2834] = {.lex_state = 0}, + [2835] = {.lex_state = 0}, + [2836] = {.lex_state = 0}, + [2837] = {.lex_state = 70}, + [2838] = {.lex_state = 70}, + [2839] = {.lex_state = 0}, + [2840] = {.lex_state = 70}, + [2841] = {.lex_state = 70}, + [2842] = {.lex_state = 70}, + [2843] = {.lex_state = 70}, + [2844] = {.lex_state = 70}, [2845] = {.lex_state = 0}, - [2846] = {.lex_state = 66}, + [2846] = {.lex_state = 0}, [2847] = {.lex_state = 0}, [2848] = {.lex_state = 0}, [2849] = {.lex_state = 0}, - [2850] = {.lex_state = 0}, - [2851] = {.lex_state = 0}, - [2852] = {.lex_state = 66}, - [2853] = {.lex_state = 0, .external_lex_state = 4}, - [2854] = {.lex_state = 0}, - [2855] = {.lex_state = 66}, - [2856] = {.lex_state = 0}, - [2857] = {.lex_state = 0}, - [2858] = {.lex_state = 66}, - [2859] = {.lex_state = 0}, - [2860] = {.lex_state = 66}, - [2861] = {.lex_state = 66}, - [2862] = {.lex_state = 66}, - [2863] = {.lex_state = 0, .external_lex_state = 4}, - [2864] = {.lex_state = 66}, - [2865] = {.lex_state = 66}, - [2866] = {.lex_state = 0}, - [2867] = {.lex_state = 66}, - [2868] = {.lex_state = 0, .external_lex_state = 4}, - [2869] = {.lex_state = 0}, - [2870] = {.lex_state = 66}, - [2871] = {.lex_state = 66}, - [2872] = {.lex_state = 66}, - [2873] = {.lex_state = 66}, - [2874] = {.lex_state = 66}, - [2875] = {.lex_state = 66}, - [2876] = {.lex_state = 0}, - [2877] = {.lex_state = 66}, - [2878] = {.lex_state = 66}, - [2879] = {.lex_state = 66}, + [2850] = {.lex_state = 70}, + [2851] = {.lex_state = 70}, + [2852] = {.lex_state = 0}, + [2853] = {.lex_state = 70}, + [2854] = {.lex_state = 70}, + [2855] = {.lex_state = 70}, + [2856] = {.lex_state = 70}, + [2857] = {.lex_state = 70}, + [2858] = {.lex_state = 70}, + [2859] = {.lex_state = 70}, + [2860] = {.lex_state = 70}, + [2861] = {.lex_state = 0}, + [2862] = {.lex_state = 70}, + [2863] = {.lex_state = 70}, + [2864] = {.lex_state = 70}, + [2865] = {.lex_state = 70}, + [2866] = {.lex_state = 70}, + [2867] = {.lex_state = 70}, + [2868] = {.lex_state = 0}, + [2869] = {.lex_state = 70}, + [2870] = {.lex_state = 70}, + [2871] = {.lex_state = 0}, + [2872] = {.lex_state = 0}, + [2873] = {.lex_state = 70}, + [2874] = {.lex_state = 70}, + [2875] = {.lex_state = 0}, + [2876] = {.lex_state = 70}, + [2877] = {.lex_state = 70}, + [2878] = {.lex_state = 70}, + [2879] = {.lex_state = 70}, [2880] = {.lex_state = 0}, - [2881] = {.lex_state = 66}, - [2882] = {.lex_state = 0}, - [2883] = {.lex_state = 0}, - [2884] = {.lex_state = 0}, - [2885] = {.lex_state = 0}, + [2881] = {.lex_state = 0}, + [2882] = {.lex_state = 70}, + [2883] = {.lex_state = 70}, + [2884] = {.lex_state = 70}, + [2885] = {.lex_state = 70}, [2886] = {.lex_state = 0}, - [2887] = {.lex_state = 0}, - [2888] = {.lex_state = 66}, - [2889] = {.lex_state = 66}, - [2890] = {.lex_state = 66}, - [2891] = {.lex_state = 0}, - [2892] = {.lex_state = 0}, - [2893] = {.lex_state = 66}, - [2894] = {.lex_state = 66}, - [2895] = {.lex_state = 0}, - [2896] = {.lex_state = 0, .external_lex_state = 4}, - [2897] = {.lex_state = 0, .external_lex_state = 4}, - [2898] = {.lex_state = 0}, - [2899] = {.lex_state = 0}, - [2900] = {.lex_state = 66}, - [2901] = {.lex_state = 66}, - [2902] = {.lex_state = 0}, - [2903] = {.lex_state = 0}, - [2904] = {.lex_state = 66}, - [2905] = {.lex_state = 0}, - [2906] = {.lex_state = 66}, - [2907] = {.lex_state = 66}, - [2908] = {.lex_state = 66}, + [2887] = {.lex_state = 70}, + [2888] = {.lex_state = 0, .external_lex_state = 4}, + [2889] = {.lex_state = 0}, + [2890] = {.lex_state = 70}, + [2891] = {.lex_state = 70}, + [2892] = {.lex_state = 70}, + [2893] = {.lex_state = 0}, + [2894] = {.lex_state = 0}, + [2895] = {.lex_state = 70}, + [2896] = {.lex_state = 0}, + [2897] = {.lex_state = 0}, + [2898] = {.lex_state = 70}, + [2899] = {.lex_state = 70}, + [2900] = {.lex_state = 70}, + [2901] = {.lex_state = 70}, + [2902] = {.lex_state = 70}, + [2903] = {.lex_state = 70}, + [2904] = {.lex_state = 0, .external_lex_state = 4}, + [2905] = {.lex_state = 70}, + [2906] = {.lex_state = 70}, + [2907] = {.lex_state = 0}, + [2908] = {.lex_state = 70}, [2909] = {.lex_state = 0}, [2910] = {.lex_state = 0}, - [2911] = {.lex_state = 66}, - [2912] = {.lex_state = 66}, - [2913] = {.lex_state = 66}, - [2914] = {.lex_state = 66}, - [2915] = {.lex_state = 0}, - [2916] = {.lex_state = 66}, - [2917] = {.lex_state = 66}, - [2918] = {.lex_state = 66}, + [2911] = {.lex_state = 70}, + [2912] = {.lex_state = 0}, + [2913] = {.lex_state = 70}, + [2914] = {.lex_state = 0}, + [2915] = {.lex_state = 70}, + [2916] = {.lex_state = 70}, + [2917] = {.lex_state = 70}, + [2918] = {.lex_state = 0, .external_lex_state = 4}, [2919] = {.lex_state = 0}, - [2920] = {.lex_state = 66}, - [2921] = {.lex_state = 0}, - [2922] = {.lex_state = 0}, - [2923] = {.lex_state = 66}, - [2924] = {.lex_state = 66}, - [2925] = {.lex_state = 0, .external_lex_state = 4}, - [2926] = {.lex_state = 66}, - [2927] = {.lex_state = 0, .external_lex_state = 4}, - [2928] = {.lex_state = 66}, - [2929] = {.lex_state = 66}, - [2930] = {.lex_state = 66}, - [2931] = {.lex_state = 66}, - [2932] = {.lex_state = 66}, - [2933] = {.lex_state = 66}, + [2920] = {.lex_state = 70}, + [2921] = {.lex_state = 70}, + [2922] = {.lex_state = 70}, + [2923] = {.lex_state = 0}, + [2924] = {.lex_state = 0}, + [2925] = {.lex_state = 70}, + [2926] = {.lex_state = 70}, + [2927] = {.lex_state = 70}, + [2928] = {.lex_state = 70}, + [2929] = {.lex_state = 70}, + [2930] = {.lex_state = 0}, + [2931] = {.lex_state = 0}, + [2932] = {.lex_state = 70}, + [2933] = {.lex_state = 70}, [2934] = {.lex_state = 0}, - [2935] = {.lex_state = 66}, - [2936] = {.lex_state = 66}, + [2935] = {.lex_state = 70}, + [2936] = {.lex_state = 70}, [2937] = {.lex_state = 0}, - [2938] = {.lex_state = 66}, - [2939] = {.lex_state = 66}, - [2940] = {.lex_state = 0}, - [2941] = {.lex_state = 66}, - [2942] = {.lex_state = 66}, - [2943] = {.lex_state = 66}, - [2944] = {.lex_state = 66}, - [2945] = {.lex_state = 66}, - [2946] = {.lex_state = 66}, - [2947] = {.lex_state = 0}, + [2938] = {.lex_state = 0}, + [2939] = {.lex_state = 0}, + [2940] = {.lex_state = 70}, + [2941] = {.lex_state = 0}, + [2942] = {.lex_state = 70}, + [2943] = {.lex_state = 0, .external_lex_state = 4}, + [2944] = {.lex_state = 70}, + [2945] = {.lex_state = 70}, + [2946] = {.lex_state = 70}, + [2947] = {.lex_state = 0, .external_lex_state = 4}, [2948] = {.lex_state = 0}, - [2949] = {.lex_state = 66}, - [2950] = {.lex_state = 66}, - [2951] = {.lex_state = 0}, - [2952] = {.lex_state = 66}, - [2953] = {.lex_state = 66}, - [2954] = {.lex_state = 66}, - [2955] = {.lex_state = 66}, - [2956] = {.lex_state = 66}, - [2957] = {.lex_state = 66}, - [2958] = {.lex_state = 66}, - [2959] = {.lex_state = 66}, - [2960] = {.lex_state = 66}, - [2961] = {.lex_state = 66}, - [2962] = {.lex_state = 0}, - [2963] = {.lex_state = 0, .external_lex_state = 4}, - [2964] = {.lex_state = 66}, - [2965] = {.lex_state = 66}, - [2966] = {.lex_state = 66}, - [2967] = {.lex_state = 66}, + [2949] = {.lex_state = 0}, + [2950] = {.lex_state = 0}, + [2951] = {.lex_state = 70}, + [2952] = {.lex_state = 70}, + [2953] = {.lex_state = 0}, + [2954] = {.lex_state = 0}, + [2955] = {.lex_state = 0}, + [2956] = {.lex_state = 0, .external_lex_state = 4}, + [2957] = {.lex_state = 70}, + [2958] = {.lex_state = 70}, + [2959] = {.lex_state = 70}, + [2960] = {.lex_state = 70}, + [2961] = {.lex_state = 70}, + [2962] = {.lex_state = 70}, + [2963] = {.lex_state = 0}, + [2964] = {.lex_state = 70}, + [2965] = {.lex_state = 70}, + [2966] = {.lex_state = 70}, + [2967] = {.lex_state = 70}, [2968] = {.lex_state = 0, .external_lex_state = 4}, - [2969] = {.lex_state = 0}, - [2970] = {.lex_state = 66}, - [2971] = {.lex_state = 66}, - [2972] = {.lex_state = 0, .external_lex_state = 4}, - [2973] = {.lex_state = 0}, + [2969] = {.lex_state = 70}, + [2970] = {.lex_state = 70}, + [2971] = {.lex_state = 70}, + [2972] = {.lex_state = 70}, + [2973] = {.lex_state = 70}, [2974] = {.lex_state = 0}, - [2975] = {.lex_state = 66}, - [2976] = {.lex_state = 66}, - [2977] = {.lex_state = 0}, - [2978] = {.lex_state = 66}, - [2979] = {.lex_state = 66}, + [2975] = {.lex_state = 70}, + [2976] = {.lex_state = 0}, + [2977] = {.lex_state = 70}, + [2978] = {.lex_state = 70}, + [2979] = {.lex_state = 70}, [2980] = {.lex_state = 0}, - [2981] = {.lex_state = 66}, - [2982] = {.lex_state = 0}, - [2983] = {.lex_state = 66}, - [2984] = {.lex_state = 66}, - [2985] = {.lex_state = 0}, - [2986] = {.lex_state = 66}, + [2981] = {.lex_state = 70}, + [2982] = {.lex_state = 70}, + [2983] = {.lex_state = 70}, + [2984] = {.lex_state = 70}, + [2985] = {.lex_state = 70}, + [2986] = {.lex_state = 70}, [2987] = {.lex_state = 0}, - [2988] = {.lex_state = 66}, - [2989] = {.lex_state = 0}, - [2990] = {.lex_state = 66}, - [2991] = {.lex_state = 66}, - [2992] = {.lex_state = 0}, - [2993] = {.lex_state = 66}, - [2994] = {.lex_state = 0, .external_lex_state = 4}, - [2995] = {.lex_state = 66}, + [2988] = {.lex_state = 0}, + [2989] = {.lex_state = 70}, + [2990] = {.lex_state = 0}, + [2991] = {.lex_state = 0}, + [2992] = {.lex_state = 70}, + [2993] = {.lex_state = 70}, + [2994] = {.lex_state = 70}, + [2995] = {.lex_state = 70}, [2996] = {.lex_state = 0, .external_lex_state = 4}, - [2997] = {.lex_state = 66}, - [2998] = {.lex_state = 66}, - [2999] = {.lex_state = 66}, - [3000] = {.lex_state = 66}, - [3001] = {.lex_state = 66}, + [2997] = {.lex_state = 70}, + [2998] = {.lex_state = 0}, + [2999] = {.lex_state = 0}, + [3000] = {.lex_state = 70}, + [3001] = {.lex_state = 21}, [3002] = {.lex_state = 0}, - [3003] = {.lex_state = 66}, - [3004] = {.lex_state = 66}, - [3005] = {.lex_state = 66}, - [3006] = {.lex_state = 66}, - [3007] = {.lex_state = 66}, - [3008] = {.lex_state = 0}, - [3009] = {.lex_state = 66}, - [3010] = {.lex_state = 66}, - [3011] = {.lex_state = 66}, - [3012] = {.lex_state = 0}, - [3013] = {.lex_state = 66}, - [3014] = {.lex_state = 0, .external_lex_state = 4}, - [3015] = {.lex_state = 66}, - [3016] = {.lex_state = 66}, - [3017] = {.lex_state = 66}, - [3018] = {.lex_state = 0, .external_lex_state = 4}, - [3019] = {.lex_state = 0}, + [3003] = {.lex_state = 70}, + [3004] = {.lex_state = 70}, + [3005] = {.lex_state = 70}, + [3006] = {.lex_state = 70}, + [3007] = {.lex_state = 70}, + [3008] = {.lex_state = 70}, + [3009] = {.lex_state = 70}, + [3010] = {.lex_state = 0}, + [3011] = {.lex_state = 0, .external_lex_state = 4}, + [3012] = {.lex_state = 70}, + [3013] = {.lex_state = 0, .external_lex_state = 4}, + [3014] = {.lex_state = 70}, + [3015] = {.lex_state = 0, .external_lex_state = 4}, + [3016] = {.lex_state = 70}, + [3017] = {.lex_state = 0}, + [3018] = {.lex_state = 70}, + [3019] = {.lex_state = 70}, [3020] = {.lex_state = 0}, - [3021] = {.lex_state = 0, .external_lex_state = 4}, - [3022] = {.lex_state = 0, .external_lex_state = 4}, - [3023] = {.lex_state = 66}, - [3024] = {.lex_state = 0}, - [3025] = {.lex_state = 0}, - [3026] = {.lex_state = 66}, - [3027] = {.lex_state = 66}, - [3028] = {.lex_state = 0}, - [3029] = {.lex_state = 66}, - [3030] = {.lex_state = 0}, - [3031] = {.lex_state = 0}, - [3032] = {.lex_state = 0, .external_lex_state = 4}, - [3033] = {.lex_state = 0}, - [3034] = {.lex_state = 66}, - [3035] = {.lex_state = 0, .external_lex_state = 4}, - [3036] = {.lex_state = 66}, - [3037] = {.lex_state = 66}, - [3038] = {.lex_state = 66}, - [3039] = {.lex_state = 66}, - [3040] = {.lex_state = 66}, - [3041] = {.lex_state = 66}, + [3021] = {.lex_state = 70}, + [3022] = {.lex_state = 70}, + [3023] = {.lex_state = 70}, + [3024] = {.lex_state = 70}, + [3025] = {.lex_state = 70}, + [3026] = {.lex_state = 70}, + [3027] = {.lex_state = 70}, + [3028] = {.lex_state = 70}, + [3029] = {.lex_state = 70}, + [3030] = {.lex_state = 0, .external_lex_state = 4}, + [3031] = {.lex_state = 70}, + [3032] = {.lex_state = 70}, + [3033] = {.lex_state = 70}, + [3034] = {.lex_state = 0, .external_lex_state = 4}, + [3035] = {.lex_state = 0}, + [3036] = {.lex_state = 70}, + [3037] = {.lex_state = 70}, + [3038] = {.lex_state = 0}, + [3039] = {.lex_state = 70}, + [3040] = {.lex_state = 0}, + [3041] = {.lex_state = 70}, [3042] = {.lex_state = 0}, - [3043] = {.lex_state = 66}, - [3044] = {.lex_state = 66}, - [3045] = {.lex_state = 66}, - [3046] = {.lex_state = 66}, - [3047] = {.lex_state = 66}, - [3048] = {.lex_state = 66}, - [3049] = {.lex_state = 66}, - [3050] = {.lex_state = 0}, - [3051] = {.lex_state = 66}, - [3052] = {.lex_state = 66}, - [3053] = {.lex_state = 17}, - [3054] = {.lex_state = 66}, - [3055] = {.lex_state = 0}, + [3043] = {.lex_state = 0}, + [3044] = {.lex_state = 0}, + [3045] = {.lex_state = 0}, + [3046] = {.lex_state = 0}, + [3047] = {.lex_state = 0}, + [3048] = {.lex_state = 70}, + [3049] = {.lex_state = 0, .external_lex_state = 4}, + [3050] = {.lex_state = 0, .external_lex_state = 4}, + [3051] = {.lex_state = 0, .external_lex_state = 4}, + [3052] = {.lex_state = 0}, + [3053] = {.lex_state = 70}, + [3054] = {.lex_state = 0}, + [3055] = {.lex_state = 0, .external_lex_state = 4}, [3056] = {.lex_state = 0}, [3057] = {.lex_state = 0}, [3058] = {.lex_state = 0}, - [3059] = {.lex_state = 66}, - [3060] = {.lex_state = 66}, - [3061] = {.lex_state = 66}, - [3062] = {.lex_state = 66}, - [3063] = {.lex_state = 66}, - [3064] = {.lex_state = 66}, - [3065] = {.lex_state = 0}, + [3059] = {.lex_state = 0, .external_lex_state = 4}, + [3060] = {.lex_state = 0}, + [3061] = {.lex_state = 70}, + [3062] = {.lex_state = 70}, + [3063] = {.lex_state = 70}, + [3064] = {.lex_state = 70}, + [3065] = {.lex_state = 0, .external_lex_state = 4}, [3066] = {.lex_state = 0}, [3067] = {.lex_state = 0}, - [3068] = {.lex_state = 66}, + [3068] = {.lex_state = 0}, [3069] = {.lex_state = 0}, - [3070] = {.lex_state = 66}, - [3071] = {.lex_state = 15}, + [3070] = {.lex_state = 0}, + [3071] = {.lex_state = 70}, [3072] = {.lex_state = 0}, [3073] = {.lex_state = 0}, - [3074] = {.lex_state = 66}, - [3075] = {.lex_state = 66}, - [3076] = {.lex_state = 5}, + [3074] = {.lex_state = 70}, + [3075] = {.lex_state = 70}, + [3076] = {.lex_state = 0}, [3077] = {.lex_state = 0}, - [3078] = {.lex_state = 0}, - [3079] = {.lex_state = 66}, - [3080] = {.lex_state = 66}, - [3081] = {.lex_state = 66}, - [3082] = {.lex_state = 0}, + [3078] = {.lex_state = 9}, + [3079] = {.lex_state = 70}, + [3080] = {.lex_state = 0}, + [3081] = {.lex_state = 70}, + [3082] = {.lex_state = 70}, [3083] = {.lex_state = 0}, - [3084] = {.lex_state = 66}, - [3085] = {.lex_state = 15}, - [3086] = {.lex_state = 0}, - [3087] = {.lex_state = 0}, + [3084] = {.lex_state = 0}, + [3085] = {.lex_state = 70}, + [3086] = {.lex_state = 70}, + [3087] = {.lex_state = 70}, [3088] = {.lex_state = 0}, - [3089] = {.lex_state = 66}, - [3090] = {.lex_state = 66}, - [3091] = {.lex_state = 0}, + [3089] = {.lex_state = 0}, + [3090] = {.lex_state = 0}, + [3091] = {.lex_state = 70}, [3092] = {.lex_state = 0}, - [3093] = {.lex_state = 66}, - [3094] = {.lex_state = 66}, - [3095] = {.lex_state = 66}, - [3096] = {.lex_state = 66}, + [3093] = {.lex_state = 70}, + [3094] = {.lex_state = 0}, + [3095] = {.lex_state = 70}, + [3096] = {.lex_state = 70}, [3097] = {.lex_state = 0}, - [3098] = {.lex_state = 66}, - [3099] = {.lex_state = 0}, - [3100] = {.lex_state = 66}, - [3101] = {.lex_state = 66}, + [3098] = {.lex_state = 70}, + [3099] = {.lex_state = 70}, + [3100] = {.lex_state = 0}, + [3101] = {.lex_state = 70}, [3102] = {.lex_state = 0}, - [3103] = {.lex_state = 66}, + [3103] = {.lex_state = 0}, [3104] = {.lex_state = 0}, - [3105] = {.lex_state = 5}, + [3105] = {.lex_state = 70}, [3106] = {.lex_state = 0}, - [3107] = {.lex_state = 0}, - [3108] = {.lex_state = 0}, + [3107] = {.lex_state = 70}, + [3108] = {.lex_state = 70}, [3109] = {.lex_state = 0}, - [3110] = {.lex_state = 66}, - [3111] = {.lex_state = 66}, - [3112] = {.lex_state = 0}, - [3113] = {.lex_state = 66}, + [3110] = {.lex_state = 70}, + [3111] = {.lex_state = 0}, + [3112] = {.lex_state = 19}, + [3113] = {.lex_state = 70}, [3114] = {.lex_state = 0}, [3115] = {.lex_state = 0}, - [3116] = {.lex_state = 0}, - [3117] = {.lex_state = 66}, + [3116] = {.lex_state = 70}, + [3117] = {.lex_state = 9}, [3118] = {.lex_state = 0}, - [3119] = {.lex_state = 0}, + [3119] = {.lex_state = 70}, [3120] = {.lex_state = 0}, - [3121] = {.lex_state = 66}, - [3122] = {.lex_state = 66}, + [3121] = {.lex_state = 0}, + [3122] = {.lex_state = 70}, [3123] = {.lex_state = 0}, [3124] = {.lex_state = 0}, - [3125] = {.lex_state = 66}, - [3126] = {.lex_state = 66}, - [3127] = {.lex_state = 66}, - [3128] = {.lex_state = 66}, + [3125] = {.lex_state = 0}, + [3126] = {.lex_state = 0}, + [3127] = {.lex_state = 70}, + [3128] = {.lex_state = 70}, [3129] = {.lex_state = 0}, [3130] = {.lex_state = 0}, - [3131] = {.lex_state = 66}, - [3132] = {.lex_state = 66}, - [3133] = {.lex_state = 66}, - [3134] = {.lex_state = 66}, - [3135] = {.lex_state = 66}, - [3136] = {.lex_state = 66}, - [3137] = {.lex_state = 66}, - [3138] = {.lex_state = 0}, - [3139] = {.lex_state = 0}, - [3140] = {.lex_state = 0}, + [3131] = {.lex_state = 0}, + [3132] = {.lex_state = 0}, + [3133] = {.lex_state = 70}, + [3134] = {.lex_state = 0}, + [3135] = {.lex_state = 70}, + [3136] = {.lex_state = 0}, + [3137] = {.lex_state = 0}, + [3138] = {.lex_state = 70}, + [3139] = {.lex_state = 70}, + [3140] = {.lex_state = 70}, [3141] = {.lex_state = 0}, - [3142] = {.lex_state = 66}, + [3142] = {.lex_state = 0}, [3143] = {.lex_state = 0}, - [3144] = {.lex_state = 0}, + [3144] = {.lex_state = 70}, [3145] = {.lex_state = 0}, - [3146] = {.lex_state = 66}, - [3147] = {.lex_state = 0}, + [3146] = {.lex_state = 0}, + [3147] = {.lex_state = 19}, [3148] = {.lex_state = 0}, [3149] = {.lex_state = 0}, - [3150] = {.lex_state = 0}, - [3151] = {.lex_state = 0}, + [3150] = {.lex_state = 70}, + [3151] = {.lex_state = 70}, [3152] = {.lex_state = 0}, - [3153] = {.lex_state = 66}, - [3154] = {.lex_state = 66}, + [3153] = {.lex_state = 70}, + [3154] = {.lex_state = 0}, [3155] = {.lex_state = 0}, - [3156] = {.lex_state = 0}, + [3156] = {.lex_state = 70}, [3157] = {.lex_state = 0}, [3158] = {.lex_state = 0}, - [3159] = {.lex_state = 66}, - [3160] = {.lex_state = 66}, - [3161] = {.lex_state = 0}, + [3159] = {.lex_state = 70}, + [3160] = {.lex_state = 70}, + [3161] = {.lex_state = 70}, [3162] = {.lex_state = 0}, [3163] = {.lex_state = 0}, - [3164] = {.lex_state = 0}, - [3165] = {.lex_state = 66}, - [3166] = {.lex_state = 0}, - [3167] = {.lex_state = 0}, - [3168] = {.lex_state = 66}, - [3169] = {.lex_state = 0}, - [3170] = {.lex_state = 0}, + [3164] = {.lex_state = 70}, + [3165] = {.lex_state = 70}, + [3166] = {.lex_state = 70}, + [3167] = {.lex_state = 70}, + [3168] = {.lex_state = 0}, + [3169] = {.lex_state = 70}, + [3170] = {.lex_state = 70}, [3171] = {.lex_state = 0}, [3172] = {.lex_state = 0}, [3173] = {.lex_state = 0}, - [3174] = {.lex_state = 66}, + [3174] = {.lex_state = 0}, [3175] = {.lex_state = 0}, - [3176] = {.lex_state = 66}, + [3176] = {.lex_state = 70}, [3177] = {.lex_state = 0}, [3178] = {.lex_state = 0}, - [3179] = {.lex_state = 66}, - [3180] = {.lex_state = 66}, + [3179] = {.lex_state = 70}, + [3180] = {.lex_state = 0}, [3181] = {.lex_state = 0}, - [3182] = {.lex_state = 0}, - [3183] = {.lex_state = 66}, - [3184] = {.lex_state = 0}, - [3185] = {.lex_state = 66}, - [3186] = {.lex_state = 66}, - [3187] = {.lex_state = 66}, - [3188] = {.lex_state = 66}, + [3182] = {.lex_state = 70}, + [3183] = {.lex_state = 70}, + [3184] = {.lex_state = 70}, + [3185] = {.lex_state = 19}, + [3186] = {.lex_state = 70}, + [3187] = {.lex_state = 0}, + [3188] = {.lex_state = 70}, [3189] = {.lex_state = 0}, - [3190] = {.lex_state = 66}, - [3191] = {.lex_state = 66}, - [3192] = {.lex_state = 0}, - [3193] = {.lex_state = 0}, - [3194] = {.lex_state = 66}, - [3195] = {.lex_state = 66}, - [3196] = {.lex_state = 0}, - [3197] = {.lex_state = 66}, - [3198] = {.lex_state = 66}, + [3190] = {.lex_state = 0}, + [3191] = {.lex_state = 0}, + [3192] = {.lex_state = 70}, + [3193] = {.lex_state = 70}, + [3194] = {.lex_state = 70}, + [3195] = {.lex_state = 0}, + [3196] = {.lex_state = 70}, + [3197] = {.lex_state = 70}, + [3198] = {.lex_state = 70}, [3199] = {.lex_state = 0}, [3200] = {.lex_state = 0}, - [3201] = {.lex_state = 66}, - [3202] = {.lex_state = 0}, - [3203] = {.lex_state = 66}, + [3201] = {.lex_state = 70}, + [3202] = {.lex_state = 70}, + [3203] = {.lex_state = 70}, [3204] = {.lex_state = 0}, - [3205] = {.lex_state = 0}, - [3206] = {.lex_state = 0}, - [3207] = {.lex_state = 66}, + [3205] = {.lex_state = 70}, + [3206] = {.lex_state = 70}, + [3207] = {.lex_state = 0}, [3208] = {.lex_state = 0}, [3209] = {.lex_state = 0}, - [3210] = {.lex_state = 0}, - [3211] = {.lex_state = 66}, - [3212] = {.lex_state = 66}, - [3213] = {.lex_state = 66}, + [3210] = {.lex_state = 70}, + [3211] = {.lex_state = 0}, + [3212] = {.lex_state = 0}, + [3213] = {.lex_state = 0}, [3214] = {.lex_state = 0}, - [3215] = {.lex_state = 66}, + [3215] = {.lex_state = 70}, [3216] = {.lex_state = 0}, - [3217] = {.lex_state = 0}, - [3218] = {.lex_state = 66}, - [3219] = {.lex_state = 66}, - [3220] = {.lex_state = 66}, - [3221] = {.lex_state = 66}, - [3222] = {.lex_state = 66}, - [3223] = {.lex_state = 66}, - [3224] = {.lex_state = 66}, - [3225] = {.lex_state = 66}, + [3217] = {.lex_state = 70}, + [3218] = {.lex_state = 0}, + [3219] = {.lex_state = 70}, + [3220] = {.lex_state = 0}, + [3221] = {.lex_state = 0}, + [3222] = {.lex_state = 70}, + [3223] = {.lex_state = 70}, + [3224] = {.lex_state = 70}, + [3225] = {.lex_state = 70}, [3226] = {.lex_state = 0}, - [3227] = {.lex_state = 66}, - [3228] = {.lex_state = 66}, - [3229] = {.lex_state = 66}, - [3230] = {.lex_state = 66}, - [3231] = {.lex_state = 0}, - [3232] = {.lex_state = 66}, + [3227] = {.lex_state = 0}, + [3228] = {.lex_state = 0}, + [3229] = {.lex_state = 0}, + [3230] = {.lex_state = 70}, + [3231] = {.lex_state = 70}, + [3232] = {.lex_state = 0}, [3233] = {.lex_state = 0}, - [3234] = {.lex_state = 0}, + [3234] = {.lex_state = 70}, [3235] = {.lex_state = 0}, [3236] = {.lex_state = 0}, - [3237] = {.lex_state = 0}, - [3238] = {.lex_state = 0}, - [3239] = {.lex_state = 0}, - [3240] = {.lex_state = 0}, - [3241] = {.lex_state = 66}, - [3242] = {.lex_state = 0}, - [3243] = {.lex_state = 66}, - [3244] = {.lex_state = 66}, + [3237] = {.lex_state = 70}, + [3238] = {.lex_state = 70}, + [3239] = {.lex_state = 70}, + [3240] = {.lex_state = 70}, + [3241] = {.lex_state = 0}, + [3242] = {.lex_state = 70}, + [3243] = {.lex_state = 19}, + [3244] = {.lex_state = 0}, [3245] = {.lex_state = 0}, - [3246] = {.lex_state = 66}, - [3247] = {.lex_state = 66}, + [3246] = {.lex_state = 0}, + [3247] = {.lex_state = 70}, [3248] = {.lex_state = 0}, - [3249] = {.lex_state = 66}, + [3249] = {.lex_state = 70}, [3250] = {.lex_state = 0}, - [3251] = {.lex_state = 0}, + [3251] = {.lex_state = 70}, [3252] = {.lex_state = 0}, - [3253] = {.lex_state = 66}, + [3253] = {.lex_state = 0}, [3254] = {.lex_state = 0}, - [3255] = {.lex_state = 66}, - [3256] = {.lex_state = 0}, - [3257] = {.lex_state = 0}, + [3255] = {.lex_state = 0}, + [3256] = {.lex_state = 70}, + [3257] = {.lex_state = 70}, [3258] = {.lex_state = 0}, [3259] = {.lex_state = 0}, [3260] = {.lex_state = 0}, - [3261] = {.lex_state = 66}, - [3262] = {.lex_state = 66}, - [3263] = {.lex_state = 66}, - [3264] = {.lex_state = 66}, - [3265] = {.lex_state = 0}, - [3266] = {.lex_state = 66}, - [3267] = {.lex_state = 66}, + [3261] = {.lex_state = 0}, + [3262] = {.lex_state = 0}, + [3263] = {.lex_state = 0}, + [3264] = {.lex_state = 70}, + [3265] = {.lex_state = 70}, + [3266] = {.lex_state = 70}, + [3267] = {.lex_state = 70}, [3268] = {.lex_state = 0}, [3269] = {.lex_state = 0}, [3270] = {.lex_state = 0}, - [3271] = {.lex_state = 0}, - [3272] = {.lex_state = 5}, + [3271] = {.lex_state = 70}, + [3272] = {.lex_state = 0}, [3273] = {.lex_state = 0}, - [3274] = {.lex_state = 15}, - [3275] = {.lex_state = 0}, - [3276] = {.lex_state = 66}, - [3277] = {.lex_state = 5}, - [3278] = {.lex_state = 66}, - [3279] = {.lex_state = 0}, - [3280] = {.lex_state = 66}, + [3274] = {.lex_state = 70}, + [3275] = {.lex_state = 70}, + [3276] = {.lex_state = 0}, + [3277] = {.lex_state = 70}, + [3278] = {.lex_state = 0}, + [3279] = {.lex_state = 9}, + [3280] = {.lex_state = 0}, [3281] = {.lex_state = 0}, - [3282] = {.lex_state = 66}, - [3283] = {.lex_state = 66}, - [3284] = {.lex_state = 0}, - [3285] = {.lex_state = 0}, - [3286] = {.lex_state = 0}, + [3282] = {.lex_state = 70}, + [3283] = {.lex_state = 70}, + [3284] = {.lex_state = 70}, + [3285] = {.lex_state = 70}, + [3286] = {.lex_state = 70}, [3287] = {.lex_state = 0}, [3288] = {.lex_state = 0}, [3289] = {.lex_state = 0}, - [3290] = {.lex_state = 0}, - [3291] = {.lex_state = 66}, + [3290] = {.lex_state = 70}, + [3291] = {.lex_state = 70}, [3292] = {.lex_state = 0}, - [3293] = {.lex_state = 66}, - [3294] = {.lex_state = 66}, - [3295] = {.lex_state = 66}, - [3296] = {.lex_state = 66}, - [3297] = {.lex_state = 66}, - [3298] = {.lex_state = 0}, - [3299] = {.lex_state = 66}, - [3300] = {.lex_state = 66}, - [3301] = {.lex_state = 66}, + [3293] = {.lex_state = 70}, + [3294] = {.lex_state = 70}, + [3295] = {.lex_state = 70}, + [3296] = {.lex_state = 70}, + [3297] = {.lex_state = 70}, + [3298] = {.lex_state = 70}, + [3299] = {.lex_state = 0}, + [3300] = {.lex_state = 0}, + [3301] = {.lex_state = 0}, [3302] = {.lex_state = 0}, - [3303] = {.lex_state = 0}, - [3304] = {.lex_state = 66}, - [3305] = {.lex_state = 66}, - [3306] = {.lex_state = 66}, - [3307] = {.lex_state = 66}, - [3308] = {.lex_state = 15}, - [3309] = {.lex_state = 0}, - [3310] = {.lex_state = 66}, - [3311] = {.lex_state = 0}, - [3312] = {.lex_state = 66}, - [3313] = {.lex_state = 0}, - [3314] = {.lex_state = 66}, - [3315] = {.lex_state = 66}, - [3316] = {.lex_state = 66}, - [3317] = {.lex_state = 66}, - [3318] = {.lex_state = 66}, - [3319] = {.lex_state = 66}, + [3303] = {.lex_state = 70}, + [3304] = {.lex_state = 0}, + [3305] = {.lex_state = 70}, + [3306] = {.lex_state = 70}, + [3307] = {.lex_state = 70}, + [3308] = {.lex_state = 70}, + [3309] = {.lex_state = 70}, + [3310] = {.lex_state = 70}, + [3311] = {.lex_state = 70}, + [3312] = {.lex_state = 70}, + [3313] = {.lex_state = 70}, + [3314] = {.lex_state = 0}, + [3315] = {.lex_state = 0}, + [3316] = {.lex_state = 0}, + [3317] = {.lex_state = 0}, + [3318] = {.lex_state = 9}, + [3319] = {.lex_state = 70}, + [3320] = {.lex_state = 70}, + [3321] = {.lex_state = 0}, }; enum { @@ -9498,79 +9719,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_chars] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(3260), - [sym_export_statement] = STATE(27), - [sym__declaration] = STATE(27), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(27), - [sym_lexical_declaration] = STATE(27), - [sym_statement_block] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_for_in_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym_with_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_debugger_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_throw_statement] = STATE(27), - [sym_empty_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(27), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(27), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(27), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_program] = STATE(3262), + [sym_export_statement] = STATE(15), + [sym__declaration] = STATE(15), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(15), + [sym_lexical_declaration] = STATE(15), + [sym_statement_block] = STATE(15), + [sym_if_statement] = STATE(15), + [sym_switch_statement] = STATE(15), + [sym_for_statement] = STATE(15), + [sym_for_in_statement] = STATE(15), + [sym_while_statement] = STATE(15), + [sym_do_statement] = STATE(15), + [sym_try_statement] = STATE(15), + [sym_with_statement] = STATE(15), + [sym_break_statement] = STATE(15), + [sym_continue_statement] = STATE(15), + [sym_debugger_statement] = STATE(15), + [sym_return_statement] = STATE(15), + [sym_throw_statement] = STATE(15), + [sym_empty_statement] = STATE(15), + [sym_labeled_statement] = STATE(15), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(15), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(15), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(15), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(27), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(27), - [sym_abstract_class_declaration] = STATE(27), - [sym_module] = STATE(27), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(27), - [sym_interface_declaration] = STATE(27), - [sym_enum_declaration] = STATE(27), - [sym_type_alias_declaration] = STATE(27), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(15), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(15), + [sym_abstract_class_declaration] = STATE(15), + [sym_module] = STATE(15), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(15), + [sym_interface_declaration] = STATE(15), + [sym_enum_declaration] = STATE(15), + [sym_type_alias_declaration] = STATE(15), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(2337), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -9645,86 +9866,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [2] = { - [sym_export_statement] = STATE(15), - [sym__declaration] = STATE(15), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(15), - [sym_lexical_declaration] = STATE(15), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1534), - [sym_assignment_pattern] = STATE(2725), - [sym_array] = STATE(1472), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(15), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(15), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(15), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_spread_element] = STATE(2725), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1535), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(18), + [sym__declaration] = STATE(18), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(18), + [sym_lexical_declaration] = STATE(18), + [sym_statement_block] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_for_in_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_debugger_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1479), + [sym_assignment_pattern] = STATE(2731), + [sym_array] = STATE(1485), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(18), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(18), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(18), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_spread_element] = STATE(2731), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1475), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_method_definition] = STATE(2725), - [sym_pair] = STATE(2725), - [sym__property_name] = STATE(2133), - [sym_computed_property_name] = STATE(2133), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(15), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(15), - [sym_abstract_class_declaration] = STATE(15), - [sym_module] = STATE(15), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(15), - [sym_interface_declaration] = STATE(15), - [sym_enum_declaration] = STATE(15), - [sym_type_alias_declaration] = STATE(15), - [sym_accessibility_modifier] = STATE(1869), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(2264), - [aux_sym_object_repeat1] = STATE(2727), + [sym_formal_parameters] = STATE(2340), + [sym_method_definition] = STATE(2731), + [sym_pair] = STATE(2731), + [sym__property_name] = STATE(2135), + [sym_computed_property_name] = STATE(2135), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(18), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(18), + [sym_abstract_class_declaration] = STATE(18), + [sym_module] = STATE(18), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(18), + [sym_interface_declaration] = STATE(18), + [sym_enum_declaration] = STATE(18), + [sym_type_alias_declaration] = STATE(18), + [sym_accessibility_modifier] = STATE(1873), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(2337), + [aux_sym_object_repeat1] = STATE(2733), [sym_identifier] = ACTIONS(105), [anon_sym_export] = ACTIONS(107), [anon_sym_STAR] = ACTIONS(109), @@ -9801,86 +10022,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(139), }, [3] = { - [sym_export_statement] = STATE(28), - [sym__declaration] = STATE(28), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_variable_declaration] = STATE(28), - [sym_lexical_declaration] = STATE(28), - [sym_statement_block] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_for_in_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_with_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_debugger_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_empty_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1534), - [sym_assignment_pattern] = STATE(2824), - [sym_array] = STATE(1472), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(28), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(28), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(28), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_spread_element] = STATE(2824), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1535), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(22), + [sym__declaration] = STATE(22), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_variable_declaration] = STATE(22), + [sym_lexical_declaration] = STATE(22), + [sym_statement_block] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_for_in_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_with_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_debugger_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_throw_statement] = STATE(22), + [sym_empty_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1479), + [sym_assignment_pattern] = STATE(2795), + [sym_array] = STATE(1485), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(22), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(22), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(22), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_spread_element] = STATE(2795), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1475), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_method_definition] = STATE(2824), - [sym_pair] = STATE(2824), - [sym__property_name] = STATE(2133), - [sym_computed_property_name] = STATE(2133), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(28), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(28), - [sym_abstract_class_declaration] = STATE(28), - [sym_module] = STATE(28), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(28), - [sym_interface_declaration] = STATE(28), - [sym_enum_declaration] = STATE(28), - [sym_type_alias_declaration] = STATE(28), - [sym_accessibility_modifier] = STATE(1869), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(2264), - [aux_sym_object_repeat1] = STATE(2823), + [sym_formal_parameters] = STATE(2340), + [sym_method_definition] = STATE(2795), + [sym_pair] = STATE(2795), + [sym__property_name] = STATE(2135), + [sym_computed_property_name] = STATE(2135), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(22), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(22), + [sym_abstract_class_declaration] = STATE(22), + [sym_module] = STATE(22), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(22), + [sym_interface_declaration] = STATE(22), + [sym_enum_declaration] = STATE(22), + [sym_type_alias_declaration] = STATE(22), + [sym_accessibility_modifier] = STATE(1873), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(2337), + [aux_sym_object_repeat1] = STATE(2792), [sym_identifier] = ACTIONS(141), [anon_sym_export] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(109), @@ -9957,86 +10178,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(165), }, [4] = { - [sym_export_statement] = STATE(23), - [sym__declaration] = STATE(23), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(23), - [sym_lexical_declaration] = STATE(23), - [sym_statement_block] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_for_in_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_try_statement] = STATE(23), - [sym_with_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_debugger_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_throw_statement] = STATE(23), - [sym_empty_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1534), - [sym_assignment_pattern] = STATE(2738), - [sym_array] = STATE(1472), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(23), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(23), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(23), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_spread_element] = STATE(2738), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1535), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(25), + [sym__declaration] = STATE(25), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(25), + [sym_lexical_declaration] = STATE(25), + [sym_statement_block] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_for_in_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_with_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_debugger_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_empty_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1479), + [sym_assignment_pattern] = STATE(2686), + [sym_array] = STATE(1485), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(25), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(25), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(25), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_spread_element] = STATE(2686), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1475), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_method_definition] = STATE(2738), - [sym_pair] = STATE(2738), - [sym__property_name] = STATE(2133), - [sym_computed_property_name] = STATE(2133), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(23), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(23), - [sym_abstract_class_declaration] = STATE(23), - [sym_module] = STATE(23), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(23), - [sym_interface_declaration] = STATE(23), - [sym_enum_declaration] = STATE(23), - [sym_type_alias_declaration] = STATE(23), - [sym_accessibility_modifier] = STATE(1869), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(2264), - [aux_sym_object_repeat1] = STATE(2641), + [sym_formal_parameters] = STATE(2340), + [sym_method_definition] = STATE(2686), + [sym_pair] = STATE(2686), + [sym__property_name] = STATE(2135), + [sym_computed_property_name] = STATE(2135), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(25), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(25), + [sym_abstract_class_declaration] = STATE(25), + [sym_module] = STATE(25), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(25), + [sym_interface_declaration] = STATE(25), + [sym_enum_declaration] = STATE(25), + [sym_type_alias_declaration] = STATE(25), + [sym_accessibility_modifier] = STATE(1873), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(2337), + [aux_sym_object_repeat1] = STATE(2692), [sym_identifier] = ACTIONS(167), [anon_sym_export] = ACTIONS(169), [anon_sym_STAR] = ACTIONS(109), @@ -10113,86 +10334,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(191), }, [5] = { - [sym_export_statement] = STATE(23), - [sym__declaration] = STATE(23), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(23), - [sym_lexical_declaration] = STATE(23), - [sym_statement_block] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_for_in_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_try_statement] = STATE(23), - [sym_with_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_debugger_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_throw_statement] = STATE(23), - [sym_empty_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1534), - [sym_assignment_pattern] = STATE(2738), - [sym_array] = STATE(1472), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(23), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(23), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(23), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_spread_element] = STATE(2738), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1535), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(13), + [sym__declaration] = STATE(13), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(13), + [sym_lexical_declaration] = STATE(13), + [sym_statement_block] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_for_in_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_try_statement] = STATE(13), + [sym_with_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_debugger_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_throw_statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1479), + [sym_assignment_pattern] = STATE(2686), + [sym_array] = STATE(1485), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(13), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(13), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(13), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_spread_element] = STATE(2686), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1475), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_method_definition] = STATE(2738), - [sym_pair] = STATE(2738), - [sym__property_name] = STATE(2133), - [sym_computed_property_name] = STATE(2133), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(23), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(23), - [sym_abstract_class_declaration] = STATE(23), - [sym_module] = STATE(23), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(23), - [sym_interface_declaration] = STATE(23), - [sym_enum_declaration] = STATE(23), - [sym_type_alias_declaration] = STATE(23), - [sym_accessibility_modifier] = STATE(1869), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(2264), - [aux_sym_object_repeat1] = STATE(2641), + [sym_formal_parameters] = STATE(2340), + [sym_method_definition] = STATE(2686), + [sym_pair] = STATE(2686), + [sym__property_name] = STATE(2135), + [sym_computed_property_name] = STATE(2135), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(13), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(13), + [sym_abstract_class_declaration] = STATE(13), + [sym_module] = STATE(13), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(13), + [sym_interface_declaration] = STATE(13), + [sym_enum_declaration] = STATE(13), + [sym_type_alias_declaration] = STATE(13), + [sym_accessibility_modifier] = STATE(1873), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(2337), + [aux_sym_object_repeat1] = STATE(2692), [sym_identifier] = ACTIONS(167), [anon_sym_export] = ACTIONS(169), [anon_sym_STAR] = ACTIONS(109), @@ -10269,86 +10490,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(191), }, [6] = { - [sym_export_statement] = STATE(19), - [sym__declaration] = STATE(19), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(19), - [sym_lexical_declaration] = STATE(19), - [sym_statement_block] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_for_in_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_try_statement] = STATE(19), - [sym_with_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_debugger_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym_empty_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1534), - [sym_assignment_pattern] = STATE(2738), - [sym_array] = STATE(1472), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(19), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(19), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(19), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_spread_element] = STATE(2738), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1535), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(25), + [sym__declaration] = STATE(25), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(25), + [sym_lexical_declaration] = STATE(25), + [sym_statement_block] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_for_in_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_with_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_debugger_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_empty_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1479), + [sym_assignment_pattern] = STATE(2686), + [sym_array] = STATE(1485), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(25), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(25), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(25), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_spread_element] = STATE(2686), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1475), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_method_definition] = STATE(2738), - [sym_pair] = STATE(2738), - [sym__property_name] = STATE(2133), - [sym_computed_property_name] = STATE(2133), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(19), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(19), - [sym_abstract_class_declaration] = STATE(19), - [sym_module] = STATE(19), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(19), - [sym_interface_declaration] = STATE(19), - [sym_enum_declaration] = STATE(19), - [sym_type_alias_declaration] = STATE(19), - [sym_accessibility_modifier] = STATE(1869), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(2264), - [aux_sym_object_repeat1] = STATE(2641), + [sym_formal_parameters] = STATE(2340), + [sym_method_definition] = STATE(2686), + [sym_pair] = STATE(2686), + [sym__property_name] = STATE(2135), + [sym_computed_property_name] = STATE(2135), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(25), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(25), + [sym_abstract_class_declaration] = STATE(25), + [sym_module] = STATE(25), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(25), + [sym_interface_declaration] = STATE(25), + [sym_enum_declaration] = STATE(25), + [sym_type_alias_declaration] = STATE(25), + [sym_accessibility_modifier] = STATE(1873), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(2337), + [aux_sym_object_repeat1] = STATE(2692), [sym_identifier] = ACTIONS(167), [anon_sym_export] = ACTIONS(169), [anon_sym_STAR] = ACTIONS(109), @@ -10427,7 +10648,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [7] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -10448,55 +10669,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), + [aux_sym_export_statement_repeat1] = STATE(2337), [ts_builtin_sym_end] = ACTIONS(197), [sym_identifier] = ACTIONS(199), [anon_sym_export] = ACTIONS(202), @@ -10573,78 +10794,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(327), }, [8] = { - [sym_export_statement] = STATE(11), - [sym__declaration] = STATE(11), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(11), - [sym_lexical_declaration] = STATE(11), - [sym_statement_block] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_for_in_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_try_statement] = STATE(11), - [sym_with_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_debugger_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_throw_statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(11), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(11), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(11), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(9), + [sym__declaration] = STATE(9), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(9), + [sym_expression_statement] = STATE(9), + [sym_variable_declaration] = STATE(9), + [sym_lexical_declaration] = STATE(9), + [sym_statement_block] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_switch_statement] = STATE(9), + [sym_for_statement] = STATE(9), + [sym_for_in_statement] = STATE(9), + [sym_while_statement] = STATE(9), + [sym_do_statement] = STATE(9), + [sym_try_statement] = STATE(9), + [sym_with_statement] = STATE(9), + [sym_break_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_debugger_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_throw_statement] = STATE(9), + [sym_empty_statement] = STATE(9), + [sym_labeled_statement] = STATE(9), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(9), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(9), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(9), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(11), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(11), - [sym_abstract_class_declaration] = STATE(11), - [sym_module] = STATE(11), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(11), - [sym_interface_declaration] = STATE(11), - [sym_enum_declaration] = STATE(11), - [sym_type_alias_declaration] = STATE(11), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(9), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(9), + [sym_abstract_class_declaration] = STATE(9), + [sym_module] = STATE(9), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(9), + [sym_interface_declaration] = STATE(9), + [sym_enum_declaration] = STATE(9), + [sym_type_alias_declaration] = STATE(9), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(345), @@ -10722,7 +10943,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [9] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -10743,55 +10964,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(349), @@ -10867,78 +11088,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [10] = { - [sym_export_statement] = STATE(9), - [sym__declaration] = STATE(9), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(9), - [sym_lexical_declaration] = STATE(9), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(9), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(9), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(9), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(11), + [sym__declaration] = STATE(11), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(11), + [sym_lexical_declaration] = STATE(11), + [sym_statement_block] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_switch_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_for_in_statement] = STATE(11), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_try_statement] = STATE(11), + [sym_with_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_debugger_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_throw_statement] = STATE(11), + [sym_empty_statement] = STATE(11), + [sym_labeled_statement] = STATE(11), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(11), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(11), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(11), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(9), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(9), - [sym_abstract_class_declaration] = STATE(9), - [sym_module] = STATE(9), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_enum_declaration] = STATE(9), - [sym_type_alias_declaration] = STATE(9), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(11), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(11), + [sym_abstract_class_declaration] = STATE(11), + [sym_module] = STATE(11), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(11), + [sym_interface_declaration] = STATE(11), + [sym_enum_declaration] = STATE(11), + [sym_type_alias_declaration] = STATE(11), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(353), @@ -11016,7 +11237,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [11] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -11037,55 +11258,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(357), @@ -11161,78 +11382,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [12] = { - [sym_export_statement] = STATE(15), - [sym__declaration] = STATE(15), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(15), - [sym_lexical_declaration] = STATE(15), - [sym_statement_block] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_for_in_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_with_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_debugger_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_empty_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(15), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(15), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(15), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(22), + [sym__declaration] = STATE(22), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_variable_declaration] = STATE(22), + [sym_lexical_declaration] = STATE(22), + [sym_statement_block] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_for_in_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_with_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_debugger_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_throw_statement] = STATE(22), + [sym_empty_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(22), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(22), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(22), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(15), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(15), - [sym_abstract_class_declaration] = STATE(15), - [sym_module] = STATE(15), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(15), - [sym_interface_declaration] = STATE(15), - [sym_enum_declaration] = STATE(15), - [sym_type_alias_declaration] = STATE(15), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(22), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(22), + [sym_abstract_class_declaration] = STATE(22), + [sym_module] = STATE(22), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(22), + [sym_interface_declaration] = STATE(22), + [sym_enum_declaration] = STATE(22), + [sym_type_alias_declaration] = STATE(22), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -11306,78 +11527,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [13] = { - [sym_export_statement] = STATE(23), - [sym__declaration] = STATE(23), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(23), - [sym_lexical_declaration] = STATE(23), - [sym_statement_block] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_for_in_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_try_statement] = STATE(23), - [sym_with_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_debugger_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_throw_statement] = STATE(23), - [sym_empty_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(23), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(23), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(23), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(7), + [sym_lexical_declaration] = STATE(7), + [sym_statement_block] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_switch_statement] = STATE(7), + [sym_for_statement] = STATE(7), + [sym_for_in_statement] = STATE(7), + [sym_while_statement] = STATE(7), + [sym_do_statement] = STATE(7), + [sym_try_statement] = STATE(7), + [sym_with_statement] = STATE(7), + [sym_break_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_debugger_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_throw_statement] = STATE(7), + [sym_empty_statement] = STATE(7), + [sym_labeled_statement] = STATE(7), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(7), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(7), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(7), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(23), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(23), - [sym_abstract_class_declaration] = STATE(23), - [sym_module] = STATE(23), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(23), - [sym_interface_declaration] = STATE(23), - [sym_enum_declaration] = STATE(23), - [sym_type_alias_declaration] = STATE(23), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(7), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(7), + [sym_abstract_class_declaration] = STATE(7), + [sym_module] = STATE(7), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(7), + [sym_interface_declaration] = STATE(7), + [sym_enum_declaration] = STATE(7), + [sym_type_alias_declaration] = STATE(7), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -11451,78 +11672,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [14] = { - [sym_export_statement] = STATE(17), - [sym__declaration] = STATE(17), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(17), - [sym_lexical_declaration] = STATE(17), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(17), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(17), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(17), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(25), + [sym__declaration] = STATE(25), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_variable_declaration] = STATE(25), + [sym_lexical_declaration] = STATE(25), + [sym_statement_block] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_for_in_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_with_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_debugger_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_empty_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(25), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(25), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(25), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(17), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(17), - [sym_abstract_class_declaration] = STATE(17), - [sym_module] = STATE(17), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(17), - [sym_interface_declaration] = STATE(17), - [sym_enum_declaration] = STATE(17), - [sym_type_alias_declaration] = STATE(17), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(25), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(25), + [sym_abstract_class_declaration] = STATE(25), + [sym_module] = STATE(25), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(25), + [sym_interface_declaration] = STATE(25), + [sym_enum_declaration] = STATE(25), + [sym_type_alias_declaration] = STATE(25), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -11598,7 +11819,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [15] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -11619,60 +11840,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), + [aux_sym_export_statement_repeat1] = STATE(2337), + [ts_builtin_sym_end] = ACTIONS(367), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(367), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -11741,78 +11962,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [16] = { - [sym_export_statement] = STATE(21), - [sym__declaration] = STATE(21), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(21), - [sym_lexical_declaration] = STATE(21), - [sym_statement_block] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_for_in_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_with_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_debugger_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_empty_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(21), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(21), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(21), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(18), + [sym__declaration] = STATE(18), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(18), + [sym_lexical_declaration] = STATE(18), + [sym_statement_block] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_for_in_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_debugger_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(18), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(18), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(18), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(21), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(21), - [sym_abstract_class_declaration] = STATE(21), - [sym_module] = STATE(21), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(21), - [sym_interface_declaration] = STATE(21), - [sym_enum_declaration] = STATE(21), - [sym_type_alias_declaration] = STATE(21), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(18), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(18), + [sym_abstract_class_declaration] = STATE(18), + [sym_module] = STATE(18), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(18), + [sym_interface_declaration] = STATE(18), + [sym_enum_declaration] = STATE(18), + [sym_type_alias_declaration] = STATE(18), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -11888,7 +12109,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [17] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -11909,55 +12130,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -12031,154 +12252,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [18] = { - [sym_export_statement] = STATE(24), - [sym__declaration] = STATE(24), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(24), - [sym_lexical_declaration] = STATE(24), - [sym_statement_block] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_for_in_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_with_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_debugger_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_empty_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(24), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(24), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(24), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(24), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(24), - [sym_abstract_class_declaration] = STATE(24), - [sym_module] = STATE(24), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(24), - [sym_interface_declaration] = STATE(24), - [sym_enum_declaration] = STATE(24), - [sym_type_alias_declaration] = STATE(24), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(2264), - [ts_builtin_sym_end] = ACTIONS(373), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), - }, - [19] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -12199,205 +12275,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_type] = ACTIONS(17), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), - }, - [20] = { - [sym_export_statement] = STATE(25), - [sym__declaration] = STATE(25), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_variable_declaration] = STATE(25), - [sym_lexical_declaration] = STATE(25), - [sym_statement_block] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_for_in_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_try_statement] = STATE(25), - [sym_with_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_debugger_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_throw_statement] = STATE(25), - [sym_empty_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(25), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(25), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(25), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(25), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(25), - [sym_abstract_class_declaration] = STATE(25), - [sym_module] = STATE(25), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(25), - [sym_interface_declaration] = STATE(25), - [sym_enum_declaration] = STATE(25), - [sym_type_alias_declaration] = STATE(25), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(2264), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(377), + [anon_sym_RBRACE] = ACTIONS(373), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12465,10 +12396,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [21] = { + [19] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -12489,60 +12420,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(375), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12610,84 +12541,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [22] = { - [sym_export_statement] = STATE(28), - [sym__declaration] = STATE(28), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_variable_declaration] = STATE(28), - [sym_lexical_declaration] = STATE(28), - [sym_statement_block] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_for_in_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_with_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_debugger_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_empty_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(28), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(28), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(28), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [20] = { + [sym_export_statement] = STATE(17), + [sym__declaration] = STATE(17), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(17), + [sym_lexical_declaration] = STATE(17), + [sym_statement_block] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_for_in_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_try_statement] = STATE(17), + [sym_with_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_debugger_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_throw_statement] = STATE(17), + [sym_empty_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(17), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(17), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(17), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(28), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(28), - [sym_abstract_class_declaration] = STATE(28), - [sym_module] = STATE(28), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(28), - [sym_interface_declaration] = STATE(28), - [sym_enum_declaration] = STATE(28), - [sym_type_alias_declaration] = STATE(28), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(17), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(17), + [sym_abstract_class_declaration] = STATE(17), + [sym_module] = STATE(17), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(17), + [sym_interface_declaration] = STATE(17), + [sym_enum_declaration] = STATE(17), + [sym_type_alias_declaration] = STATE(17), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(377), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12755,10 +12686,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [23] = { + [21] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -12779,60 +12710,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), + [aux_sym_export_statement_repeat1] = STATE(2337), + [ts_builtin_sym_end] = ACTIONS(379), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(383), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -12900,10 +12831,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [24] = { + [22] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -12924,60 +12855,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), - [ts_builtin_sym_end] = ACTIONS(385), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(381), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13045,84 +12976,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [25] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(7), - [sym_lexical_declaration] = STATE(7), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [23] = { + [sym_export_statement] = STATE(13), + [sym__declaration] = STATE(13), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(13), + [sym_lexical_declaration] = STATE(13), + [sym_statement_block] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_for_in_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_try_statement] = STATE(13), + [sym_with_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_debugger_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_throw_statement] = STATE(13), + [sym_empty_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(13), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(13), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(13), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(7), - [sym_abstract_class_declaration] = STATE(7), - [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(7), - [sym_interface_declaration] = STATE(7), - [sym_enum_declaration] = STATE(7), - [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(13), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(13), + [sym_abstract_class_declaration] = STATE(13), + [sym_module] = STATE(13), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(13), + [sym_interface_declaration] = STATE(13), + [sym_enum_declaration] = STATE(13), + [sym_type_alias_declaration] = STATE(13), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(383), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13190,10 +13121,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [26] = { + [24] = { [sym_export_statement] = STATE(19), [sym__declaration] = STATE(19), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(19), [sym_expression_statement] = STATE(19), [sym_variable_declaration] = STATE(19), @@ -13214,60 +13145,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(19), [sym_empty_statement] = STATE(19), [sym_labeled_statement] = STATE(19), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(19), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(19), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(19), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(19), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(19), [sym_abstract_class_declaration] = STATE(19), [sym_module] = STATE(19), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(19), [sym_interface_declaration] = STATE(19), [sym_enum_declaration] = STATE(19), [sym_type_alias_declaration] = STATE(19), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(2264), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(385), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13335,10 +13266,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [27] = { + [25] = { [sym_export_statement] = STATE(7), [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -13359,60 +13290,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), - [ts_builtin_sym_end] = ACTIONS(373), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(387), [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -13480,10 +13411,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [28] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(1420), + [26] = { + [sym_export_statement] = STATE(27), + [sym__declaration] = STATE(27), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_variable_declaration] = STATE(27), + [sym_lexical_declaration] = STATE(27), + [sym_statement_block] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_for_in_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_try_statement] = STATE(27), + [sym_with_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_debugger_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_throw_statement] = STATE(27), + [sym_empty_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(27), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(27), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(27), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(27), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(27), + [sym_abstract_class_declaration] = STATE(27), + [sym_module] = STATE(27), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(27), + [sym_interface_declaration] = STATE(27), + [sym_enum_declaration] = STATE(27), + [sym_type_alias_declaration] = STATE(27), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(2337), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_type] = ACTIONS(17), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_abstract] = ACTIONS(95), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(93), + }, + [27] = { + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(1473), [sym_import_statement] = STATE(7), [sym_expression_statement] = STATE(7), [sym_variable_declaration] = STATE(7), @@ -13504,55 +13580,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(7), [sym_empty_statement] = STATE(7), [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), [sym_class_declaration] = STATE(7), - [sym_function] = STATE(1420), + [sym_function] = STATE(1473), [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(1420), + [sym_generator_function] = STATE(1473), [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), [sym_function_signature] = STATE(7), - [sym_as_expression] = STATE(1284), + [sym_as_expression] = STATE(1263), [sym_ambient_declaration] = STATE(7), [sym_abstract_class_declaration] = STATE(7), [sym_module] = STATE(7), - [sym_internal_module] = STATE(99), + [sym_internal_module] = STATE(104), [sym_import_alias] = STATE(7), [sym_interface_declaration] = STATE(7), [sym_enum_declaration] = STATE(7), [sym_type_alias_declaration] = STATE(7), - [sym_type_parameters] = STATE(2899), + [sym_type_parameters] = STATE(2923), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(2264), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -13625,98 +13701,100 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [29] = { - [sym_export_statement] = STATE(2900), - [sym__declaration] = STATE(2900), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(2900), - [sym_expression_statement] = STATE(2900), - [sym_variable_declaration] = STATE(2900), - [sym_lexical_declaration] = STATE(2900), - [sym_statement_block] = STATE(2900), - [sym_if_statement] = STATE(2900), - [sym_switch_statement] = STATE(2900), - [sym_for_statement] = STATE(2900), - [sym_for_in_statement] = STATE(2900), - [sym_while_statement] = STATE(2900), - [sym_do_statement] = STATE(2900), - [sym_try_statement] = STATE(2900), - [sym_with_statement] = STATE(2900), - [sym_break_statement] = STATE(2900), - [sym_continue_statement] = STATE(2900), - [sym_debugger_statement] = STATE(2900), - [sym_return_statement] = STATE(2900), - [sym_throw_statement] = STATE(2900), - [sym_empty_statement] = STATE(2900), - [sym_labeled_statement] = STATE(2900), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(2900), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(2900), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(2900), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [28] = { + [sym_export_statement] = STATE(21), + [sym__declaration] = STATE(21), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_variable_declaration] = STATE(21), + [sym_lexical_declaration] = STATE(21), + [sym_statement_block] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_for_in_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_try_statement] = STATE(21), + [sym_with_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_debugger_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_throw_statement] = STATE(21), + [sym_empty_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(21), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(21), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(21), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(2900), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(2900), - [sym_abstract_class_declaration] = STATE(2900), - [sym_module] = STATE(2900), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(2900), - [sym_interface_declaration] = STATE(2900), - [sym_enum_declaration] = STATE(2900), - [sym_type_alias_declaration] = STATE(2900), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(21), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(21), + [sym_abstract_class_declaration] = STATE(21), + [sym_module] = STATE(21), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(21), + [sym_interface_declaration] = STATE(21), + [sym_enum_declaration] = STATE(21), + [sym_type_alias_declaration] = STATE(21), + [sym_type_parameters] = STATE(2923), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(2337), + [ts_builtin_sym_end] = ACTIONS(367), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -13727,9 +13805,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -13750,116 +13828,116 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(93), }, - [30] = { - [sym_export_statement] = STATE(567), - [sym__declaration] = STATE(567), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(567), - [sym_expression_statement] = STATE(567), - [sym_variable_declaration] = STATE(567), - [sym_lexical_declaration] = STATE(567), - [sym_statement_block] = STATE(567), - [sym_if_statement] = STATE(567), - [sym_switch_statement] = STATE(567), - [sym_for_statement] = STATE(567), - [sym_for_in_statement] = STATE(567), - [sym_while_statement] = STATE(567), - [sym_do_statement] = STATE(567), - [sym_try_statement] = STATE(567), - [sym_with_statement] = STATE(567), - [sym_break_statement] = STATE(567), - [sym_continue_statement] = STATE(567), - [sym_debugger_statement] = STATE(567), - [sym_return_statement] = STATE(567), - [sym_throw_statement] = STATE(567), - [sym_empty_statement] = STATE(567), - [sym_labeled_statement] = STATE(567), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(567), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(567), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(567), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [29] = { + [sym_export_statement] = STATE(590), + [sym__declaration] = STATE(590), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(590), + [sym_expression_statement] = STATE(590), + [sym_variable_declaration] = STATE(590), + [sym_lexical_declaration] = STATE(590), + [sym_statement_block] = STATE(590), + [sym_if_statement] = STATE(590), + [sym_switch_statement] = STATE(590), + [sym_for_statement] = STATE(590), + [sym_for_in_statement] = STATE(590), + [sym_while_statement] = STATE(590), + [sym_do_statement] = STATE(590), + [sym_try_statement] = STATE(590), + [sym_with_statement] = STATE(590), + [sym_break_statement] = STATE(590), + [sym_continue_statement] = STATE(590), + [sym_debugger_statement] = STATE(590), + [sym_return_statement] = STATE(590), + [sym_throw_statement] = STATE(590), + [sym_empty_statement] = STATE(590), + [sym_labeled_statement] = STATE(590), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(590), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(590), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(590), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(567), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(567), - [sym_abstract_class_declaration] = STATE(567), - [sym_module] = STATE(567), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(567), - [sym_interface_declaration] = STATE(567), - [sym_enum_declaration] = STATE(567), - [sym_type_alias_declaration] = STATE(567), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(590), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(590), + [sym_abstract_class_declaration] = STATE(590), + [sym_module] = STATE(590), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(590), + [sym_interface_declaration] = STATE(590), + [sym_enum_declaration] = STATE(590), + [sym_type_alias_declaration] = STATE(590), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2337), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -13870,9 +13948,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -13893,116 +13971,116 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(93), }, - [31] = { - [sym_export_statement] = STATE(540), - [sym__declaration] = STATE(540), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(540), - [sym_expression_statement] = STATE(540), - [sym_variable_declaration] = STATE(540), - [sym_lexical_declaration] = STATE(540), - [sym_statement_block] = STATE(540), - [sym_if_statement] = STATE(540), - [sym_switch_statement] = STATE(540), - [sym_for_statement] = STATE(540), - [sym_for_in_statement] = STATE(540), - [sym_while_statement] = STATE(540), - [sym_do_statement] = STATE(540), - [sym_try_statement] = STATE(540), - [sym_with_statement] = STATE(540), - [sym_break_statement] = STATE(540), - [sym_continue_statement] = STATE(540), - [sym_debugger_statement] = STATE(540), - [sym_return_statement] = STATE(540), - [sym_throw_statement] = STATE(540), - [sym_empty_statement] = STATE(540), - [sym_labeled_statement] = STATE(540), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(540), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(540), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(540), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [30] = { + [sym_export_statement] = STATE(607), + [sym__declaration] = STATE(607), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(607), + [sym_expression_statement] = STATE(607), + [sym_variable_declaration] = STATE(607), + [sym_lexical_declaration] = STATE(607), + [sym_statement_block] = STATE(607), + [sym_if_statement] = STATE(607), + [sym_switch_statement] = STATE(607), + [sym_for_statement] = STATE(607), + [sym_for_in_statement] = STATE(607), + [sym_while_statement] = STATE(607), + [sym_do_statement] = STATE(607), + [sym_try_statement] = STATE(607), + [sym_with_statement] = STATE(607), + [sym_break_statement] = STATE(607), + [sym_continue_statement] = STATE(607), + [sym_debugger_statement] = STATE(607), + [sym_return_statement] = STATE(607), + [sym_throw_statement] = STATE(607), + [sym_empty_statement] = STATE(607), + [sym_labeled_statement] = STATE(607), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(607), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(607), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(607), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(540), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(540), - [sym_abstract_class_declaration] = STATE(540), - [sym_module] = STATE(540), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(540), - [sym_interface_declaration] = STATE(540), - [sym_enum_declaration] = STATE(540), - [sym_type_alias_declaration] = STATE(540), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(429), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(607), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(607), + [sym_abstract_class_declaration] = STATE(607), + [sym_module] = STATE(607), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(607), + [sym_interface_declaration] = STATE(607), + [sym_enum_declaration] = STATE(607), + [sym_type_alias_declaration] = STATE(607), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2337), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(431), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(433), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(435), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(437), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14013,9 +14091,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(439), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -14036,116 +14114,116 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(441), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [anon_sym_declare] = ACTIONS(443), - [anon_sym_public] = ACTIONS(441), - [anon_sym_private] = ACTIONS(441), - [anon_sym_protected] = ACTIONS(441), - [anon_sym_module] = ACTIONS(445), - [anon_sym_any] = ACTIONS(441), - [anon_sym_number] = ACTIONS(441), - [anon_sym_boolean] = ACTIONS(441), - [anon_sym_string] = ACTIONS(441), - [anon_sym_symbol] = ACTIONS(441), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(441), + [sym_readonly] = ACTIONS(93), }, - [32] = { - [sym_export_statement] = STATE(3117), - [sym__declaration] = STATE(3117), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(3117), - [sym_expression_statement] = STATE(3117), - [sym_variable_declaration] = STATE(3117), - [sym_lexical_declaration] = STATE(3117), - [sym_statement_block] = STATE(3117), - [sym_if_statement] = STATE(3117), - [sym_switch_statement] = STATE(3117), - [sym_for_statement] = STATE(3117), - [sym_for_in_statement] = STATE(3117), - [sym_while_statement] = STATE(3117), - [sym_do_statement] = STATE(3117), - [sym_try_statement] = STATE(3117), - [sym_with_statement] = STATE(3117), - [sym_break_statement] = STATE(3117), - [sym_continue_statement] = STATE(3117), - [sym_debugger_statement] = STATE(3117), - [sym_return_statement] = STATE(3117), - [sym_throw_statement] = STATE(3117), - [sym_empty_statement] = STATE(3117), - [sym_labeled_statement] = STATE(3117), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(3117), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(3117), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(3117), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [31] = { + [sym_export_statement] = STATE(2902), + [sym__declaration] = STATE(2902), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(2902), + [sym_expression_statement] = STATE(2902), + [sym_variable_declaration] = STATE(2902), + [sym_lexical_declaration] = STATE(2902), + [sym_statement_block] = STATE(2902), + [sym_if_statement] = STATE(2902), + [sym_switch_statement] = STATE(2902), + [sym_for_statement] = STATE(2902), + [sym_for_in_statement] = STATE(2902), + [sym_while_statement] = STATE(2902), + [sym_do_statement] = STATE(2902), + [sym_try_statement] = STATE(2902), + [sym_with_statement] = STATE(2902), + [sym_break_statement] = STATE(2902), + [sym_continue_statement] = STATE(2902), + [sym_debugger_statement] = STATE(2902), + [sym_return_statement] = STATE(2902), + [sym_throw_statement] = STATE(2902), + [sym_empty_statement] = STATE(2902), + [sym_labeled_statement] = STATE(2902), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(2902), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(2902), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(2902), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(3117), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(3117), - [sym_abstract_class_declaration] = STATE(3117), - [sym_module] = STATE(3117), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(3117), - [sym_interface_declaration] = STATE(3117), - [sym_enum_declaration] = STATE(3117), - [sym_type_alias_declaration] = STATE(3117), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(427), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(2902), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(2902), + [sym_abstract_class_declaration] = STATE(2902), + [sym_module] = STATE(2902), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(2902), + [sym_interface_declaration] = STATE(2902), + [sym_enum_declaration] = STATE(2902), + [sym_type_alias_declaration] = STATE(2902), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2379), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(429), + [anon_sym_type] = ACTIONS(401), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(431), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(433), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(435), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(437), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14157,7 +14235,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(439), + [anon_sym_async] = ACTIONS(413), [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -14179,116 +14257,259 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(441), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [anon_sym_declare] = ACTIONS(443), - [anon_sym_public] = ACTIONS(441), - [anon_sym_private] = ACTIONS(441), - [anon_sym_protected] = ACTIONS(441), - [anon_sym_module] = ACTIONS(445), - [anon_sym_any] = ACTIONS(441), - [anon_sym_number] = ACTIONS(441), - [anon_sym_boolean] = ACTIONS(441), - [anon_sym_string] = ACTIONS(441), - [anon_sym_symbol] = ACTIONS(441), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(441), - }, - [33] = { - [sym_export_statement] = STATE(536), - [sym__declaration] = STATE(536), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_variable_declaration] = STATE(536), - [sym_lexical_declaration] = STATE(536), - [sym_statement_block] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_for_in_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_with_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_debugger_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_empty_statement] = STATE(536), - [sym_labeled_statement] = STATE(536), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(536), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(536), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(536), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(417), + }, + [32] = { + [sym_export_statement] = STATE(602), + [sym__declaration] = STATE(602), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(602), + [sym_expression_statement] = STATE(602), + [sym_variable_declaration] = STATE(602), + [sym_lexical_declaration] = STATE(602), + [sym_statement_block] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_switch_statement] = STATE(602), + [sym_for_statement] = STATE(602), + [sym_for_in_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_do_statement] = STATE(602), + [sym_try_statement] = STATE(602), + [sym_with_statement] = STATE(602), + [sym_break_statement] = STATE(602), + [sym_continue_statement] = STATE(602), + [sym_debugger_statement] = STATE(602), + [sym_return_statement] = STATE(602), + [sym_throw_statement] = STATE(602), + [sym_empty_statement] = STATE(602), + [sym_labeled_statement] = STATE(602), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(602), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(602), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(602), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(536), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(536), - [sym_abstract_class_declaration] = STATE(536), - [sym_module] = STATE(536), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(536), - [sym_interface_declaration] = STATE(536), - [sym_enum_declaration] = STATE(536), - [sym_type_alias_declaration] = STATE(536), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(427), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(602), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(602), + [sym_abstract_class_declaration] = STATE(602), + [sym_module] = STATE(602), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(602), + [sym_interface_declaration] = STATE(602), + [sym_enum_declaration] = STATE(602), + [sym_type_alias_declaration] = STATE(602), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2337), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_abstract] = ACTIONS(95), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(93), + }, + [33] = { + [sym_export_statement] = STATE(564), + [sym__declaration] = STATE(564), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(564), + [sym_expression_statement] = STATE(564), + [sym_variable_declaration] = STATE(564), + [sym_lexical_declaration] = STATE(564), + [sym_statement_block] = STATE(564), + [sym_if_statement] = STATE(564), + [sym_switch_statement] = STATE(564), + [sym_for_statement] = STATE(564), + [sym_for_in_statement] = STATE(564), + [sym_while_statement] = STATE(564), + [sym_do_statement] = STATE(564), + [sym_try_statement] = STATE(564), + [sym_with_statement] = STATE(564), + [sym_break_statement] = STATE(564), + [sym_continue_statement] = STATE(564), + [sym_debugger_statement] = STATE(564), + [sym_return_statement] = STATE(564), + [sym_throw_statement] = STATE(564), + [sym_empty_statement] = STATE(564), + [sym_labeled_statement] = STATE(564), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(564), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(564), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(564), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(564), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(564), + [sym_abstract_class_declaration] = STATE(564), + [sym_module] = STATE(564), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(564), + [sym_interface_declaration] = STATE(564), + [sym_enum_declaration] = STATE(564), + [sym_type_alias_declaration] = STATE(564), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2379), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(429), + [anon_sym_type] = ACTIONS(401), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(431), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(433), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(435), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(437), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14300,7 +14521,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(439), + [anon_sym_async] = ACTIONS(413), [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -14322,96 +14543,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(441), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [anon_sym_declare] = ACTIONS(443), - [anon_sym_public] = ACTIONS(441), - [anon_sym_private] = ACTIONS(441), - [anon_sym_protected] = ACTIONS(441), - [anon_sym_module] = ACTIONS(445), - [anon_sym_any] = ACTIONS(441), - [anon_sym_number] = ACTIONS(441), - [anon_sym_boolean] = ACTIONS(441), - [anon_sym_string] = ACTIONS(441), - [anon_sym_symbol] = ACTIONS(441), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(441), + [sym_readonly] = ACTIONS(417), }, [34] = { - [sym_export_statement] = STATE(562), - [sym__declaration] = STATE(562), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(562), - [sym_expression_statement] = STATE(562), - [sym_variable_declaration] = STATE(562), - [sym_lexical_declaration] = STATE(562), - [sym_statement_block] = STATE(562), - [sym_if_statement] = STATE(562), - [sym_switch_statement] = STATE(562), - [sym_for_statement] = STATE(562), - [sym_for_in_statement] = STATE(562), - [sym_while_statement] = STATE(562), - [sym_do_statement] = STATE(562), - [sym_try_statement] = STATE(562), - [sym_with_statement] = STATE(562), - [sym_break_statement] = STATE(562), - [sym_continue_statement] = STATE(562), - [sym_debugger_statement] = STATE(562), - [sym_return_statement] = STATE(562), - [sym_throw_statement] = STATE(562), - [sym_empty_statement] = STATE(562), - [sym_labeled_statement] = STATE(562), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(562), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(562), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(562), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(555), + [sym__declaration] = STATE(555), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(555), + [sym_expression_statement] = STATE(555), + [sym_variable_declaration] = STATE(555), + [sym_lexical_declaration] = STATE(555), + [sym_statement_block] = STATE(555), + [sym_if_statement] = STATE(555), + [sym_switch_statement] = STATE(555), + [sym_for_statement] = STATE(555), + [sym_for_in_statement] = STATE(555), + [sym_while_statement] = STATE(555), + [sym_do_statement] = STATE(555), + [sym_try_statement] = STATE(555), + [sym_with_statement] = STATE(555), + [sym_break_statement] = STATE(555), + [sym_continue_statement] = STATE(555), + [sym_debugger_statement] = STATE(555), + [sym_return_statement] = STATE(555), + [sym_throw_statement] = STATE(555), + [sym_empty_statement] = STATE(555), + [sym_labeled_statement] = STATE(555), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(555), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(555), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(555), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(562), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(562), - [sym_abstract_class_declaration] = STATE(562), - [sym_module] = STATE(562), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(562), - [sym_interface_declaration] = STATE(562), - [sym_enum_declaration] = STATE(562), - [sym_type_alias_declaration] = STATE(562), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(555), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(555), + [sym_abstract_class_declaration] = STATE(555), + [sym_module] = STATE(555), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(555), + [sym_interface_declaration] = STATE(555), + [sym_enum_declaration] = STATE(555), + [sym_type_alias_declaration] = STATE(555), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -14484,77 +14705,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [35] = { - [sym_export_statement] = STATE(595), - [sym__declaration] = STATE(595), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(595), - [sym_expression_statement] = STATE(595), - [sym_variable_declaration] = STATE(595), - [sym_lexical_declaration] = STATE(595), - [sym_statement_block] = STATE(595), - [sym_if_statement] = STATE(595), - [sym_switch_statement] = STATE(595), - [sym_for_statement] = STATE(595), - [sym_for_in_statement] = STATE(595), - [sym_while_statement] = STATE(595), - [sym_do_statement] = STATE(595), - [sym_try_statement] = STATE(595), - [sym_with_statement] = STATE(595), - [sym_break_statement] = STATE(595), - [sym_continue_statement] = STATE(595), - [sym_debugger_statement] = STATE(595), - [sym_return_statement] = STATE(595), - [sym_throw_statement] = STATE(595), - [sym_empty_statement] = STATE(595), - [sym_labeled_statement] = STATE(595), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(595), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(595), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(595), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(602), + [sym__declaration] = STATE(602), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(602), + [sym_expression_statement] = STATE(602), + [sym_variable_declaration] = STATE(602), + [sym_lexical_declaration] = STATE(602), + [sym_statement_block] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_switch_statement] = STATE(602), + [sym_for_statement] = STATE(602), + [sym_for_in_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_do_statement] = STATE(602), + [sym_try_statement] = STATE(602), + [sym_with_statement] = STATE(602), + [sym_break_statement] = STATE(602), + [sym_continue_statement] = STATE(602), + [sym_debugger_statement] = STATE(602), + [sym_return_statement] = STATE(602), + [sym_throw_statement] = STATE(602), + [sym_empty_statement] = STATE(602), + [sym_labeled_statement] = STATE(602), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(602), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(602), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(602), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(595), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(595), - [sym_abstract_class_declaration] = STATE(595), - [sym_module] = STATE(595), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(595), - [sym_interface_declaration] = STATE(595), - [sym_enum_declaration] = STATE(595), - [sym_type_alias_declaration] = STATE(595), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2488), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(602), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(602), + [sym_abstract_class_declaration] = STATE(602), + [sym_module] = STATE(602), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(602), + [sym_interface_declaration] = STATE(602), + [sym_enum_declaration] = STATE(602), + [sym_type_alias_declaration] = STATE(602), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2411), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(427), @@ -14627,97 +14848,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(441), }, [36] = { - [sym_export_statement] = STATE(557), - [sym__declaration] = STATE(557), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(557), - [sym_expression_statement] = STATE(557), - [sym_variable_declaration] = STATE(557), - [sym_lexical_declaration] = STATE(557), - [sym_statement_block] = STATE(557), - [sym_if_statement] = STATE(557), - [sym_switch_statement] = STATE(557), - [sym_for_statement] = STATE(557), - [sym_for_in_statement] = STATE(557), - [sym_while_statement] = STATE(557), - [sym_do_statement] = STATE(557), - [sym_try_statement] = STATE(557), - [sym_with_statement] = STATE(557), - [sym_break_statement] = STATE(557), - [sym_continue_statement] = STATE(557), - [sym_debugger_statement] = STATE(557), - [sym_return_statement] = STATE(557), - [sym_throw_statement] = STATE(557), - [sym_empty_statement] = STATE(557), - [sym_labeled_statement] = STATE(557), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(557), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(557), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(557), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(2901), + [sym__declaration] = STATE(2901), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(2901), + [sym_expression_statement] = STATE(2901), + [sym_variable_declaration] = STATE(2901), + [sym_lexical_declaration] = STATE(2901), + [sym_statement_block] = STATE(2901), + [sym_if_statement] = STATE(2901), + [sym_switch_statement] = STATE(2901), + [sym_for_statement] = STATE(2901), + [sym_for_in_statement] = STATE(2901), + [sym_while_statement] = STATE(2901), + [sym_do_statement] = STATE(2901), + [sym_try_statement] = STATE(2901), + [sym_with_statement] = STATE(2901), + [sym_break_statement] = STATE(2901), + [sym_continue_statement] = STATE(2901), + [sym_debugger_statement] = STATE(2901), + [sym_return_statement] = STATE(2901), + [sym_throw_statement] = STATE(2901), + [sym_empty_statement] = STATE(2901), + [sym_labeled_statement] = STATE(2901), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(2901), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(2901), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(2901), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(557), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(557), - [sym_abstract_class_declaration] = STATE(557), - [sym_module] = STATE(557), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(557), - [sym_interface_declaration] = STATE(557), - [sym_enum_declaration] = STATE(557), - [sym_type_alias_declaration] = STATE(557), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2264), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(2901), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(2901), + [sym_abstract_class_declaration] = STATE(2901), + [sym_module] = STATE(2901), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(2901), + [sym_interface_declaration] = STATE(2901), + [sym_enum_declaration] = STATE(2901), + [sym_type_alias_declaration] = STATE(2901), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2379), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14728,9 +14949,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -14751,116 +14972,116 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, [37] = { - [sym_export_statement] = STATE(599), - [sym__declaration] = STATE(599), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(599), - [sym_expression_statement] = STATE(599), - [sym_variable_declaration] = STATE(599), - [sym_lexical_declaration] = STATE(599), - [sym_statement_block] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_switch_statement] = STATE(599), - [sym_for_statement] = STATE(599), - [sym_for_in_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_do_statement] = STATE(599), - [sym_try_statement] = STATE(599), - [sym_with_statement] = STATE(599), - [sym_break_statement] = STATE(599), - [sym_continue_statement] = STATE(599), - [sym_debugger_statement] = STATE(599), - [sym_return_statement] = STATE(599), - [sym_throw_statement] = STATE(599), - [sym_empty_statement] = STATE(599), - [sym_labeled_statement] = STATE(599), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(599), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(599), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(599), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(590), + [sym__declaration] = STATE(590), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(590), + [sym_expression_statement] = STATE(590), + [sym_variable_declaration] = STATE(590), + [sym_lexical_declaration] = STATE(590), + [sym_statement_block] = STATE(590), + [sym_if_statement] = STATE(590), + [sym_switch_statement] = STATE(590), + [sym_for_statement] = STATE(590), + [sym_for_in_statement] = STATE(590), + [sym_while_statement] = STATE(590), + [sym_do_statement] = STATE(590), + [sym_try_statement] = STATE(590), + [sym_with_statement] = STATE(590), + [sym_break_statement] = STATE(590), + [sym_continue_statement] = STATE(590), + [sym_debugger_statement] = STATE(590), + [sym_return_statement] = STATE(590), + [sym_throw_statement] = STATE(590), + [sym_empty_statement] = STATE(590), + [sym_labeled_statement] = STATE(590), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(590), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(590), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(590), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(599), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(599), - [sym_abstract_class_declaration] = STATE(599), - [sym_module] = STATE(599), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(599), - [sym_interface_declaration] = STATE(599), - [sym_enum_declaration] = STATE(599), - [sym_type_alias_declaration] = STATE(599), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2264), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(590), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(590), + [sym_abstract_class_declaration] = STATE(590), + [sym_module] = STATE(590), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(590), + [sym_interface_declaration] = STATE(590), + [sym_enum_declaration] = STATE(590), + [sym_type_alias_declaration] = STATE(590), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2411), + [sym_identifier] = ACTIONS(423), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(429), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(431), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(435), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(437), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -14871,9 +15092,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(439), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -14894,96 +15115,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(441), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(441), + [anon_sym_declare] = ACTIONS(443), + [anon_sym_public] = ACTIONS(441), + [anon_sym_private] = ACTIONS(441), + [anon_sym_protected] = ACTIONS(441), + [anon_sym_module] = ACTIONS(445), + [anon_sym_any] = ACTIONS(441), + [anon_sym_number] = ACTIONS(441), + [anon_sym_boolean] = ACTIONS(441), + [anon_sym_string] = ACTIONS(441), + [anon_sym_symbol] = ACTIONS(441), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(441), }, [38] = { - [sym_export_statement] = STATE(536), - [sym__declaration] = STATE(536), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_variable_declaration] = STATE(536), - [sym_lexical_declaration] = STATE(536), - [sym_statement_block] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_for_in_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_with_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_debugger_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_empty_statement] = STATE(536), - [sym_labeled_statement] = STATE(536), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(536), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(536), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(536), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(591), + [sym__declaration] = STATE(591), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_variable_declaration] = STATE(591), + [sym_lexical_declaration] = STATE(591), + [sym_statement_block] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_for_in_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_try_statement] = STATE(591), + [sym_with_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_debugger_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_throw_statement] = STATE(591), + [sym_empty_statement] = STATE(591), + [sym_labeled_statement] = STATE(591), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(591), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(591), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(591), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(536), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(536), - [sym_abstract_class_declaration] = STATE(536), - [sym_module] = STATE(536), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(536), - [sym_interface_declaration] = STATE(536), - [sym_enum_declaration] = STATE(536), - [sym_type_alias_declaration] = STATE(536), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(591), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(591), + [sym_abstract_class_declaration] = STATE(591), + [sym_module] = STATE(591), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(591), + [sym_interface_declaration] = STATE(591), + [sym_enum_declaration] = STATE(591), + [sym_type_alias_declaration] = STATE(591), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15056,97 +15277,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [39] = { - [sym_export_statement] = STATE(595), - [sym__declaration] = STATE(595), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(595), - [sym_expression_statement] = STATE(595), - [sym_variable_declaration] = STATE(595), - [sym_lexical_declaration] = STATE(595), - [sym_statement_block] = STATE(595), - [sym_if_statement] = STATE(595), - [sym_switch_statement] = STATE(595), - [sym_for_statement] = STATE(595), - [sym_for_in_statement] = STATE(595), - [sym_while_statement] = STATE(595), - [sym_do_statement] = STATE(595), - [sym_try_statement] = STATE(595), - [sym_with_statement] = STATE(595), - [sym_break_statement] = STATE(595), - [sym_continue_statement] = STATE(595), - [sym_debugger_statement] = STATE(595), - [sym_return_statement] = STATE(595), - [sym_throw_statement] = STATE(595), - [sym_empty_statement] = STATE(595), - [sym_labeled_statement] = STATE(595), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(595), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(595), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(595), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(549), + [sym__declaration] = STATE(549), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(549), + [sym_expression_statement] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym_lexical_declaration] = STATE(549), + [sym_statement_block] = STATE(549), + [sym_if_statement] = STATE(549), + [sym_switch_statement] = STATE(549), + [sym_for_statement] = STATE(549), + [sym_for_in_statement] = STATE(549), + [sym_while_statement] = STATE(549), + [sym_do_statement] = STATE(549), + [sym_try_statement] = STATE(549), + [sym_with_statement] = STATE(549), + [sym_break_statement] = STATE(549), + [sym_continue_statement] = STATE(549), + [sym_debugger_statement] = STATE(549), + [sym_return_statement] = STATE(549), + [sym_throw_statement] = STATE(549), + [sym_empty_statement] = STATE(549), + [sym_labeled_statement] = STATE(549), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(549), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(549), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(549), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(595), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(595), - [sym_abstract_class_declaration] = STATE(595), - [sym_module] = STATE(595), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(595), - [sym_interface_declaration] = STATE(595), - [sym_enum_declaration] = STATE(595), - [sym_type_alias_declaration] = STATE(595), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2264), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(549), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(549), + [sym_abstract_class_declaration] = STATE(549), + [sym_module] = STATE(549), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_type_alias_declaration] = STATE(549), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2411), + [sym_identifier] = ACTIONS(423), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(429), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(431), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(435), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(437), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -15157,9 +15378,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(439), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -15180,96 +15401,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(441), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(441), + [anon_sym_declare] = ACTIONS(443), + [anon_sym_public] = ACTIONS(441), + [anon_sym_private] = ACTIONS(441), + [anon_sym_protected] = ACTIONS(441), + [anon_sym_module] = ACTIONS(445), + [anon_sym_any] = ACTIONS(441), + [anon_sym_number] = ACTIONS(441), + [anon_sym_boolean] = ACTIONS(441), + [anon_sym_string] = ACTIONS(441), + [anon_sym_symbol] = ACTIONS(441), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(441), }, [40] = { - [sym_export_statement] = STATE(540), - [sym__declaration] = STATE(540), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(540), - [sym_expression_statement] = STATE(540), - [sym_variable_declaration] = STATE(540), - [sym_lexical_declaration] = STATE(540), - [sym_statement_block] = STATE(540), - [sym_if_statement] = STATE(540), - [sym_switch_statement] = STATE(540), - [sym_for_statement] = STATE(540), - [sym_for_in_statement] = STATE(540), - [sym_while_statement] = STATE(540), - [sym_do_statement] = STATE(540), - [sym_try_statement] = STATE(540), - [sym_with_statement] = STATE(540), - [sym_break_statement] = STATE(540), - [sym_continue_statement] = STATE(540), - [sym_debugger_statement] = STATE(540), - [sym_return_statement] = STATE(540), - [sym_throw_statement] = STATE(540), - [sym_empty_statement] = STATE(540), - [sym_labeled_statement] = STATE(540), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(540), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(540), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(540), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(571), + [sym__declaration] = STATE(571), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_variable_declaration] = STATE(571), + [sym_lexical_declaration] = STATE(571), + [sym_statement_block] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_for_in_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_with_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_debugger_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_empty_statement] = STATE(571), + [sym_labeled_statement] = STATE(571), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(571), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(571), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(571), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(540), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(540), - [sym_abstract_class_declaration] = STATE(540), - [sym_module] = STATE(540), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(540), - [sym_interface_declaration] = STATE(540), - [sym_enum_declaration] = STATE(540), - [sym_type_alias_declaration] = STATE(540), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(571), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(571), + [sym_abstract_class_declaration] = STATE(571), + [sym_module] = STATE(571), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(571), + [sym_interface_declaration] = STATE(571), + [sym_enum_declaration] = STATE(571), + [sym_type_alias_declaration] = STATE(571), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15342,220 +15563,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(93), }, [41] = { - [sym_export_statement] = STATE(599), - [sym__declaration] = STATE(599), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(599), - [sym_expression_statement] = STATE(599), - [sym_variable_declaration] = STATE(599), - [sym_lexical_declaration] = STATE(599), - [sym_statement_block] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_switch_statement] = STATE(599), - [sym_for_statement] = STATE(599), - [sym_for_in_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_do_statement] = STATE(599), - [sym_try_statement] = STATE(599), - [sym_with_statement] = STATE(599), - [sym_break_statement] = STATE(599), - [sym_continue_statement] = STATE(599), - [sym_debugger_statement] = STATE(599), - [sym_return_statement] = STATE(599), - [sym_throw_statement] = STATE(599), - [sym_empty_statement] = STATE(599), - [sym_labeled_statement] = STATE(599), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(599), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(599), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(599), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(599), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(599), - [sym_abstract_class_declaration] = STATE(599), - [sym_module] = STATE(599), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(599), - [sym_interface_declaration] = STATE(599), - [sym_enum_declaration] = STATE(599), - [sym_type_alias_declaration] = STATE(599), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(21), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(403), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), - [anon_sym_function] = ACTIONS(415), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), - [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(101), - [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), - }, - [42] = { - [sym_export_statement] = STATE(562), - [sym__declaration] = STATE(562), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(562), - [sym_expression_statement] = STATE(562), - [sym_variable_declaration] = STATE(562), - [sym_lexical_declaration] = STATE(562), - [sym_statement_block] = STATE(562), - [sym_if_statement] = STATE(562), - [sym_switch_statement] = STATE(562), - [sym_for_statement] = STATE(562), - [sym_for_in_statement] = STATE(562), - [sym_while_statement] = STATE(562), - [sym_do_statement] = STATE(562), - [sym_try_statement] = STATE(562), - [sym_with_statement] = STATE(562), - [sym_break_statement] = STATE(562), - [sym_continue_statement] = STATE(562), - [sym_debugger_statement] = STATE(562), - [sym_return_statement] = STATE(562), - [sym_throw_statement] = STATE(562), - [sym_empty_statement] = STATE(562), - [sym_labeled_statement] = STATE(562), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(562), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(562), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(562), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(555), + [sym__declaration] = STATE(555), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(555), + [sym_expression_statement] = STATE(555), + [sym_variable_declaration] = STATE(555), + [sym_lexical_declaration] = STATE(555), + [sym_statement_block] = STATE(555), + [sym_if_statement] = STATE(555), + [sym_switch_statement] = STATE(555), + [sym_for_statement] = STATE(555), + [sym_for_in_statement] = STATE(555), + [sym_while_statement] = STATE(555), + [sym_do_statement] = STATE(555), + [sym_try_statement] = STATE(555), + [sym_with_statement] = STATE(555), + [sym_break_statement] = STATE(555), + [sym_continue_statement] = STATE(555), + [sym_debugger_statement] = STATE(555), + [sym_return_statement] = STATE(555), + [sym_throw_statement] = STATE(555), + [sym_empty_statement] = STATE(555), + [sym_labeled_statement] = STATE(555), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(555), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(555), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(555), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(562), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(562), - [sym_abstract_class_declaration] = STATE(562), - [sym_module] = STATE(562), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(562), - [sym_interface_declaration] = STATE(562), - [sym_enum_declaration] = STATE(562), - [sym_type_alias_declaration] = STATE(562), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2488), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(555), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(555), + [sym_abstract_class_declaration] = STATE(555), + [sym_module] = STATE(555), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(555), + [sym_interface_declaration] = STATE(555), + [sym_enum_declaration] = STATE(555), + [sym_type_alias_declaration] = STATE(555), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2411), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(427), @@ -15627,78 +15705,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(441), }, - [43] = { - [sym_export_statement] = STATE(567), - [sym__declaration] = STATE(567), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(567), - [sym_expression_statement] = STATE(567), - [sym_variable_declaration] = STATE(567), - [sym_lexical_declaration] = STATE(567), - [sym_statement_block] = STATE(567), - [sym_if_statement] = STATE(567), - [sym_switch_statement] = STATE(567), - [sym_for_statement] = STATE(567), - [sym_for_in_statement] = STATE(567), - [sym_while_statement] = STATE(567), - [sym_do_statement] = STATE(567), - [sym_try_statement] = STATE(567), - [sym_with_statement] = STATE(567), - [sym_break_statement] = STATE(567), - [sym_continue_statement] = STATE(567), - [sym_debugger_statement] = STATE(567), - [sym_return_statement] = STATE(567), - [sym_throw_statement] = STATE(567), - [sym_empty_statement] = STATE(567), - [sym_labeled_statement] = STATE(567), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(567), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(567), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(567), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [42] = { + [sym_export_statement] = STATE(564), + [sym__declaration] = STATE(564), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(564), + [sym_expression_statement] = STATE(564), + [sym_variable_declaration] = STATE(564), + [sym_lexical_declaration] = STATE(564), + [sym_statement_block] = STATE(564), + [sym_if_statement] = STATE(564), + [sym_switch_statement] = STATE(564), + [sym_for_statement] = STATE(564), + [sym_for_in_statement] = STATE(564), + [sym_while_statement] = STATE(564), + [sym_do_statement] = STATE(564), + [sym_try_statement] = STATE(564), + [sym_with_statement] = STATE(564), + [sym_break_statement] = STATE(564), + [sym_continue_statement] = STATE(564), + [sym_debugger_statement] = STATE(564), + [sym_return_statement] = STATE(564), + [sym_throw_statement] = STATE(564), + [sym_empty_statement] = STATE(564), + [sym_labeled_statement] = STATE(564), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(564), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(564), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(564), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(567), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(567), - [sym_abstract_class_declaration] = STATE(567), - [sym_module] = STATE(567), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(567), - [sym_interface_declaration] = STATE(567), - [sym_enum_declaration] = STATE(567), - [sym_type_alias_declaration] = STATE(567), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2264), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(564), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(564), + [sym_abstract_class_declaration] = STATE(564), + [sym_module] = STATE(564), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(564), + [sym_interface_declaration] = STATE(564), + [sym_enum_declaration] = STATE(564), + [sym_type_alias_declaration] = STATE(564), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2337), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_namespace] = ACTIONS(13), @@ -15770,98 +15848,98 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(93), }, - [44] = { - [sym_export_statement] = STATE(576), - [sym__declaration] = STATE(576), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(576), - [sym_expression_statement] = STATE(576), - [sym_variable_declaration] = STATE(576), - [sym_lexical_declaration] = STATE(576), - [sym_statement_block] = STATE(576), - [sym_if_statement] = STATE(576), - [sym_switch_statement] = STATE(576), - [sym_for_statement] = STATE(576), - [sym_for_in_statement] = STATE(576), - [sym_while_statement] = STATE(576), - [sym_do_statement] = STATE(576), - [sym_try_statement] = STATE(576), - [sym_with_statement] = STATE(576), - [sym_break_statement] = STATE(576), - [sym_continue_statement] = STATE(576), - [sym_debugger_statement] = STATE(576), - [sym_return_statement] = STATE(576), - [sym_throw_statement] = STATE(576), - [sym_empty_statement] = STATE(576), - [sym_labeled_statement] = STATE(576), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(576), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(576), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(576), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [43] = { + [sym_export_statement] = STATE(3107), + [sym__declaration] = STATE(3107), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(3107), + [sym_expression_statement] = STATE(3107), + [sym_variable_declaration] = STATE(3107), + [sym_lexical_declaration] = STATE(3107), + [sym_statement_block] = STATE(3107), + [sym_if_statement] = STATE(3107), + [sym_switch_statement] = STATE(3107), + [sym_for_statement] = STATE(3107), + [sym_for_in_statement] = STATE(3107), + [sym_while_statement] = STATE(3107), + [sym_do_statement] = STATE(3107), + [sym_try_statement] = STATE(3107), + [sym_with_statement] = STATE(3107), + [sym_break_statement] = STATE(3107), + [sym_continue_statement] = STATE(3107), + [sym_debugger_statement] = STATE(3107), + [sym_return_statement] = STATE(3107), + [sym_throw_statement] = STATE(3107), + [sym_empty_statement] = STATE(3107), + [sym_labeled_statement] = STATE(3107), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(3107), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(3107), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(3107), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(576), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(576), - [sym_abstract_class_declaration] = STATE(576), - [sym_module] = STATE(576), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(576), - [sym_interface_declaration] = STATE(576), - [sym_enum_declaration] = STATE(576), - [sym_type_alias_declaration] = STATE(576), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2264), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(3107), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(3107), + [sym_abstract_class_declaration] = STATE(3107), + [sym_module] = STATE(3107), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(3107), + [sym_interface_declaration] = STATE(3107), + [sym_enum_declaration] = STATE(3107), + [sym_type_alias_declaration] = STATE(3107), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2411), + [sym_identifier] = ACTIONS(423), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(429), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(431), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(435), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(437), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -15872,9 +15950,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(439), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -15895,96 +15973,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(441), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(441), + [anon_sym_declare] = ACTIONS(443), + [anon_sym_public] = ACTIONS(441), + [anon_sym_private] = ACTIONS(441), + [anon_sym_protected] = ACTIONS(441), + [anon_sym_module] = ACTIONS(445), + [anon_sym_any] = ACTIONS(441), + [anon_sym_number] = ACTIONS(441), + [anon_sym_boolean] = ACTIONS(441), + [anon_sym_string] = ACTIONS(441), + [anon_sym_symbol] = ACTIONS(441), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(441), }, - [45] = { - [sym_export_statement] = STATE(595), - [sym__declaration] = STATE(595), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(595), - [sym_expression_statement] = STATE(595), - [sym_variable_declaration] = STATE(595), - [sym_lexical_declaration] = STATE(595), - [sym_statement_block] = STATE(595), - [sym_if_statement] = STATE(595), - [sym_switch_statement] = STATE(595), - [sym_for_statement] = STATE(595), - [sym_for_in_statement] = STATE(595), - [sym_while_statement] = STATE(595), - [sym_do_statement] = STATE(595), - [sym_try_statement] = STATE(595), - [sym_with_statement] = STATE(595), - [sym_break_statement] = STATE(595), - [sym_continue_statement] = STATE(595), - [sym_debugger_statement] = STATE(595), - [sym_return_statement] = STATE(595), - [sym_throw_statement] = STATE(595), - [sym_empty_statement] = STATE(595), - [sym_labeled_statement] = STATE(595), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(595), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(595), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(595), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [44] = { + [sym_export_statement] = STATE(550), + [sym__declaration] = STATE(550), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_variable_declaration] = STATE(550), + [sym_lexical_declaration] = STATE(550), + [sym_statement_block] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_for_in_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_with_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_debugger_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_empty_statement] = STATE(550), + [sym_labeled_statement] = STATE(550), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(550), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(550), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(550), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(595), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(595), - [sym_abstract_class_declaration] = STATE(595), - [sym_module] = STATE(595), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(595), - [sym_interface_declaration] = STATE(595), - [sym_enum_declaration] = STATE(595), - [sym_type_alias_declaration] = STATE(595), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2473), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(550), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(550), + [sym_abstract_class_declaration] = STATE(550), + [sym_module] = STATE(550), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(550), + [sym_interface_declaration] = STATE(550), + [sym_enum_declaration] = STATE(550), + [sym_type_alias_declaration] = STATE(550), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2379), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -16056,98 +16134,98 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(103), [sym_readonly] = ACTIONS(417), }, - [46] = { - [sym_export_statement] = STATE(562), - [sym__declaration] = STATE(562), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(562), - [sym_expression_statement] = STATE(562), - [sym_variable_declaration] = STATE(562), - [sym_lexical_declaration] = STATE(562), - [sym_statement_block] = STATE(562), - [sym_if_statement] = STATE(562), - [sym_switch_statement] = STATE(562), - [sym_for_statement] = STATE(562), - [sym_for_in_statement] = STATE(562), - [sym_while_statement] = STATE(562), - [sym_do_statement] = STATE(562), - [sym_try_statement] = STATE(562), - [sym_with_statement] = STATE(562), - [sym_break_statement] = STATE(562), - [sym_continue_statement] = STATE(562), - [sym_debugger_statement] = STATE(562), - [sym_return_statement] = STATE(562), - [sym_throw_statement] = STATE(562), - [sym_empty_statement] = STATE(562), - [sym_labeled_statement] = STATE(562), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(562), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(562), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(562), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [45] = { + [sym_export_statement] = STATE(607), + [sym__declaration] = STATE(607), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(607), + [sym_expression_statement] = STATE(607), + [sym_variable_declaration] = STATE(607), + [sym_lexical_declaration] = STATE(607), + [sym_statement_block] = STATE(607), + [sym_if_statement] = STATE(607), + [sym_switch_statement] = STATE(607), + [sym_for_statement] = STATE(607), + [sym_for_in_statement] = STATE(607), + [sym_while_statement] = STATE(607), + [sym_do_statement] = STATE(607), + [sym_try_statement] = STATE(607), + [sym_with_statement] = STATE(607), + [sym_break_statement] = STATE(607), + [sym_continue_statement] = STATE(607), + [sym_debugger_statement] = STATE(607), + [sym_return_statement] = STATE(607), + [sym_throw_statement] = STATE(607), + [sym_empty_statement] = STATE(607), + [sym_labeled_statement] = STATE(607), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(607), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(607), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(607), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(562), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(562), - [sym_abstract_class_declaration] = STATE(562), - [sym_module] = STATE(562), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(562), - [sym_interface_declaration] = STATE(562), - [sym_enum_declaration] = STATE(562), - [sym_type_alias_declaration] = STATE(562), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(607), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(607), + [sym_abstract_class_declaration] = STATE(607), + [sym_module] = STATE(607), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(607), + [sym_interface_declaration] = STATE(607), + [sym_enum_declaration] = STATE(607), + [sym_type_alias_declaration] = STATE(607), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2411), + [sym_identifier] = ACTIONS(423), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [anon_sym_type] = ACTIONS(429), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(431), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(435), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(437), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16159,7 +16237,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), + [anon_sym_async] = ACTIONS(439), [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -16181,116 +16259,116 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(441), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(441), + [anon_sym_declare] = ACTIONS(443), + [anon_sym_public] = ACTIONS(441), + [anon_sym_private] = ACTIONS(441), + [anon_sym_protected] = ACTIONS(441), + [anon_sym_module] = ACTIONS(445), + [anon_sym_any] = ACTIONS(441), + [anon_sym_number] = ACTIONS(441), + [anon_sym_boolean] = ACTIONS(441), + [anon_sym_string] = ACTIONS(441), + [anon_sym_symbol] = ACTIONS(441), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(441), }, - [47] = { - [sym_export_statement] = STATE(557), - [sym__declaration] = STATE(557), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(557), - [sym_expression_statement] = STATE(557), - [sym_variable_declaration] = STATE(557), - [sym_lexical_declaration] = STATE(557), - [sym_statement_block] = STATE(557), - [sym_if_statement] = STATE(557), - [sym_switch_statement] = STATE(557), - [sym_for_statement] = STATE(557), - [sym_for_in_statement] = STATE(557), - [sym_while_statement] = STATE(557), - [sym_do_statement] = STATE(557), - [sym_try_statement] = STATE(557), - [sym_with_statement] = STATE(557), - [sym_break_statement] = STATE(557), - [sym_continue_statement] = STATE(557), - [sym_debugger_statement] = STATE(557), - [sym_return_statement] = STATE(557), - [sym_throw_statement] = STATE(557), - [sym_empty_statement] = STATE(557), - [sym_labeled_statement] = STATE(557), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(557), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(557), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(557), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [46] = { + [sym_export_statement] = STATE(591), + [sym__declaration] = STATE(591), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_variable_declaration] = STATE(591), + [sym_lexical_declaration] = STATE(591), + [sym_statement_block] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_for_in_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_try_statement] = STATE(591), + [sym_with_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_debugger_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_throw_statement] = STATE(591), + [sym_empty_statement] = STATE(591), + [sym_labeled_statement] = STATE(591), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(591), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(591), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(591), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(557), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(557), - [sym_abstract_class_declaration] = STATE(557), - [sym_module] = STATE(557), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(557), - [sym_interface_declaration] = STATE(557), - [sym_enum_declaration] = STATE(557), - [sym_type_alias_declaration] = STATE(557), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(591), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(591), + [sym_abstract_class_declaration] = STATE(591), + [sym_module] = STATE(591), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(591), + [sym_interface_declaration] = STATE(591), + [sym_enum_declaration] = STATE(591), + [sym_type_alias_declaration] = STATE(591), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2411), + [sym_identifier] = ACTIONS(423), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [anon_sym_type] = ACTIONS(429), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(431), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(435), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(437), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16302,7 +16380,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), + [anon_sym_async] = ACTIONS(439), [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -16324,116 +16402,116 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(441), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(441), + [anon_sym_declare] = ACTIONS(443), + [anon_sym_public] = ACTIONS(441), + [anon_sym_private] = ACTIONS(441), + [anon_sym_protected] = ACTIONS(441), + [anon_sym_module] = ACTIONS(445), + [anon_sym_any] = ACTIONS(441), + [anon_sym_number] = ACTIONS(441), + [anon_sym_boolean] = ACTIONS(441), + [anon_sym_string] = ACTIONS(441), + [anon_sym_symbol] = ACTIONS(441), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(441), }, - [48] = { - [sym_export_statement] = STATE(536), - [sym__declaration] = STATE(536), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(536), - [sym_expression_statement] = STATE(536), - [sym_variable_declaration] = STATE(536), - [sym_lexical_declaration] = STATE(536), - [sym_statement_block] = STATE(536), - [sym_if_statement] = STATE(536), - [sym_switch_statement] = STATE(536), - [sym_for_statement] = STATE(536), - [sym_for_in_statement] = STATE(536), - [sym_while_statement] = STATE(536), - [sym_do_statement] = STATE(536), - [sym_try_statement] = STATE(536), - [sym_with_statement] = STATE(536), - [sym_break_statement] = STATE(536), - [sym_continue_statement] = STATE(536), - [sym_debugger_statement] = STATE(536), - [sym_return_statement] = STATE(536), - [sym_throw_statement] = STATE(536), - [sym_empty_statement] = STATE(536), - [sym_labeled_statement] = STATE(536), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(536), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(536), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(536), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(536), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(536), - [sym_abstract_class_declaration] = STATE(536), - [sym_module] = STATE(536), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(536), - [sym_interface_declaration] = STATE(536), - [sym_enum_declaration] = STATE(536), - [sym_type_alias_declaration] = STATE(536), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(393), - [anon_sym_export] = ACTIONS(395), - [anon_sym_namespace] = ACTIONS(397), + [47] = { + [sym_export_statement] = STATE(564), + [sym__declaration] = STATE(564), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(564), + [sym_expression_statement] = STATE(564), + [sym_variable_declaration] = STATE(564), + [sym_lexical_declaration] = STATE(564), + [sym_statement_block] = STATE(564), + [sym_if_statement] = STATE(564), + [sym_switch_statement] = STATE(564), + [sym_for_statement] = STATE(564), + [sym_for_in_statement] = STATE(564), + [sym_while_statement] = STATE(564), + [sym_do_statement] = STATE(564), + [sym_try_statement] = STATE(564), + [sym_with_statement] = STATE(564), + [sym_break_statement] = STATE(564), + [sym_continue_statement] = STATE(564), + [sym_debugger_statement] = STATE(564), + [sym_return_statement] = STATE(564), + [sym_throw_statement] = STATE(564), + [sym_empty_statement] = STATE(564), + [sym_labeled_statement] = STATE(564), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(564), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(564), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(564), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(564), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(564), + [sym_abstract_class_declaration] = STATE(564), + [sym_module] = STATE(564), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(564), + [sym_interface_declaration] = STATE(564), + [sym_enum_declaration] = STATE(564), + [sym_type_alias_declaration] = STATE(564), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2411), + [sym_identifier] = ACTIONS(423), + [anon_sym_export] = ACTIONS(425), + [anon_sym_namespace] = ACTIONS(427), [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(401), + [anon_sym_type] = ACTIONS(429), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(403), + [anon_sym_if] = ACTIONS(431), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(405), + [anon_sym_for] = ACTIONS(433), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(407), + [anon_sym_while] = ACTIONS(435), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(409), + [anon_sym_with] = ACTIONS(437), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16445,7 +16523,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(413), + [anon_sym_async] = ACTIONS(439), [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -16467,116 +16545,259 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(417), + [anon_sym_static] = ACTIONS(441), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(417), - [anon_sym_set] = ACTIONS(417), - [anon_sym_declare] = ACTIONS(419), - [anon_sym_public] = ACTIONS(417), - [anon_sym_private] = ACTIONS(417), - [anon_sym_protected] = ACTIONS(417), - [anon_sym_module] = ACTIONS(421), - [anon_sym_any] = ACTIONS(417), - [anon_sym_number] = ACTIONS(417), - [anon_sym_boolean] = ACTIONS(417), - [anon_sym_string] = ACTIONS(417), - [anon_sym_symbol] = ACTIONS(417), + [anon_sym_get] = ACTIONS(441), + [anon_sym_set] = ACTIONS(441), + [anon_sym_declare] = ACTIONS(443), + [anon_sym_public] = ACTIONS(441), + [anon_sym_private] = ACTIONS(441), + [anon_sym_protected] = ACTIONS(441), + [anon_sym_module] = ACTIONS(445), + [anon_sym_any] = ACTIONS(441), + [anon_sym_number] = ACTIONS(441), + [anon_sym_boolean] = ACTIONS(441), + [anon_sym_string] = ACTIONS(441), + [anon_sym_symbol] = ACTIONS(441), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(417), + [sym_readonly] = ACTIONS(441), + }, + [48] = { + [sym_export_statement] = STATE(550), + [sym__declaration] = STATE(550), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_variable_declaration] = STATE(550), + [sym_lexical_declaration] = STATE(550), + [sym_statement_block] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_for_in_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_with_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_debugger_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_empty_statement] = STATE(550), + [sym_labeled_statement] = STATE(550), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(550), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(550), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(550), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(550), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(550), + [sym_abstract_class_declaration] = STATE(550), + [sym_module] = STATE(550), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(550), + [sym_interface_declaration] = STATE(550), + [sym_enum_declaration] = STATE(550), + [sym_type_alias_declaration] = STATE(550), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2337), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(93), + [anon_sym_abstract] = ACTIONS(95), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), + [anon_sym_interface] = ACTIONS(101), + [anon_sym_enum] = ACTIONS(103), + [sym_readonly] = ACTIONS(93), }, [49] = { - [sym_export_statement] = STATE(597), - [sym__declaration] = STATE(597), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(597), - [sym_expression_statement] = STATE(597), - [sym_variable_declaration] = STATE(597), - [sym_lexical_declaration] = STATE(597), - [sym_statement_block] = STATE(597), - [sym_if_statement] = STATE(597), - [sym_switch_statement] = STATE(597), - [sym_for_statement] = STATE(597), - [sym_for_in_statement] = STATE(597), - [sym_while_statement] = STATE(597), - [sym_do_statement] = STATE(597), - [sym_try_statement] = STATE(597), - [sym_with_statement] = STATE(597), - [sym_break_statement] = STATE(597), - [sym_continue_statement] = STATE(597), - [sym_debugger_statement] = STATE(597), - [sym_return_statement] = STATE(597), - [sym_throw_statement] = STATE(597), - [sym_empty_statement] = STATE(597), - [sym_labeled_statement] = STATE(597), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(597), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(597), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(597), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(591), + [sym__declaration] = STATE(591), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(591), + [sym_expression_statement] = STATE(591), + [sym_variable_declaration] = STATE(591), + [sym_lexical_declaration] = STATE(591), + [sym_statement_block] = STATE(591), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(591), + [sym_for_statement] = STATE(591), + [sym_for_in_statement] = STATE(591), + [sym_while_statement] = STATE(591), + [sym_do_statement] = STATE(591), + [sym_try_statement] = STATE(591), + [sym_with_statement] = STATE(591), + [sym_break_statement] = STATE(591), + [sym_continue_statement] = STATE(591), + [sym_debugger_statement] = STATE(591), + [sym_return_statement] = STATE(591), + [sym_throw_statement] = STATE(591), + [sym_empty_statement] = STATE(591), + [sym_labeled_statement] = STATE(591), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(591), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(591), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(591), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(597), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(597), - [sym_abstract_class_declaration] = STATE(597), - [sym_module] = STATE(597), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(597), - [sym_interface_declaration] = STATE(597), - [sym_enum_declaration] = STATE(597), - [sym_type_alias_declaration] = STATE(597), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(427), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(591), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(591), + [sym_abstract_class_declaration] = STATE(591), + [sym_module] = STATE(591), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(591), + [sym_interface_declaration] = STATE(591), + [sym_enum_declaration] = STATE(591), + [sym_type_alias_declaration] = STATE(591), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2379), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(429), + [anon_sym_type] = ACTIONS(401), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(431), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(433), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(435), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(437), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16588,7 +16809,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(439), + [anon_sym_async] = ACTIONS(413), [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -16610,96 +16831,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(441), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [anon_sym_declare] = ACTIONS(443), - [anon_sym_public] = ACTIONS(441), - [anon_sym_private] = ACTIONS(441), - [anon_sym_protected] = ACTIONS(441), - [anon_sym_module] = ACTIONS(445), - [anon_sym_any] = ACTIONS(441), - [anon_sym_number] = ACTIONS(441), - [anon_sym_boolean] = ACTIONS(441), - [anon_sym_string] = ACTIONS(441), - [anon_sym_symbol] = ACTIONS(441), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(441), + [sym_readonly] = ACTIONS(417), }, [50] = { - [sym_export_statement] = STATE(540), - [sym__declaration] = STATE(540), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(540), - [sym_expression_statement] = STATE(540), - [sym_variable_declaration] = STATE(540), - [sym_lexical_declaration] = STATE(540), - [sym_statement_block] = STATE(540), - [sym_if_statement] = STATE(540), - [sym_switch_statement] = STATE(540), - [sym_for_statement] = STATE(540), - [sym_for_in_statement] = STATE(540), - [sym_while_statement] = STATE(540), - [sym_do_statement] = STATE(540), - [sym_try_statement] = STATE(540), - [sym_with_statement] = STATE(540), - [sym_break_statement] = STATE(540), - [sym_continue_statement] = STATE(540), - [sym_debugger_statement] = STATE(540), - [sym_return_statement] = STATE(540), - [sym_throw_statement] = STATE(540), - [sym_empty_statement] = STATE(540), - [sym_labeled_statement] = STATE(540), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(540), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(540), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(540), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(607), + [sym__declaration] = STATE(607), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(607), + [sym_expression_statement] = STATE(607), + [sym_variable_declaration] = STATE(607), + [sym_lexical_declaration] = STATE(607), + [sym_statement_block] = STATE(607), + [sym_if_statement] = STATE(607), + [sym_switch_statement] = STATE(607), + [sym_for_statement] = STATE(607), + [sym_for_in_statement] = STATE(607), + [sym_while_statement] = STATE(607), + [sym_do_statement] = STATE(607), + [sym_try_statement] = STATE(607), + [sym_with_statement] = STATE(607), + [sym_break_statement] = STATE(607), + [sym_continue_statement] = STATE(607), + [sym_debugger_statement] = STATE(607), + [sym_return_statement] = STATE(607), + [sym_throw_statement] = STATE(607), + [sym_empty_statement] = STATE(607), + [sym_labeled_statement] = STATE(607), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(607), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(607), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(607), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(540), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(540), - [sym_abstract_class_declaration] = STATE(540), - [sym_module] = STATE(540), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(540), - [sym_interface_declaration] = STATE(540), - [sym_enum_declaration] = STATE(540), - [sym_type_alias_declaration] = STATE(540), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2473), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(607), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(607), + [sym_abstract_class_declaration] = STATE(607), + [sym_module] = STATE(607), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(607), + [sym_interface_declaration] = STATE(607), + [sym_enum_declaration] = STATE(607), + [sym_type_alias_declaration] = STATE(607), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2379), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -16772,97 +16993,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(417), }, [51] = { - [sym_export_statement] = STATE(597), - [sym__declaration] = STATE(597), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(597), - [sym_expression_statement] = STATE(597), - [sym_variable_declaration] = STATE(597), - [sym_lexical_declaration] = STATE(597), - [sym_statement_block] = STATE(597), - [sym_if_statement] = STATE(597), - [sym_switch_statement] = STATE(597), - [sym_for_statement] = STATE(597), - [sym_for_in_statement] = STATE(597), - [sym_while_statement] = STATE(597), - [sym_do_statement] = STATE(597), - [sym_try_statement] = STATE(597), - [sym_with_statement] = STATE(597), - [sym_break_statement] = STATE(597), - [sym_continue_statement] = STATE(597), - [sym_debugger_statement] = STATE(597), - [sym_return_statement] = STATE(597), - [sym_throw_statement] = STATE(597), - [sym_empty_statement] = STATE(597), - [sym_labeled_statement] = STATE(597), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(597), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(597), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(597), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(555), + [sym__declaration] = STATE(555), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(555), + [sym_expression_statement] = STATE(555), + [sym_variable_declaration] = STATE(555), + [sym_lexical_declaration] = STATE(555), + [sym_statement_block] = STATE(555), + [sym_if_statement] = STATE(555), + [sym_switch_statement] = STATE(555), + [sym_for_statement] = STATE(555), + [sym_for_in_statement] = STATE(555), + [sym_while_statement] = STATE(555), + [sym_do_statement] = STATE(555), + [sym_try_statement] = STATE(555), + [sym_with_statement] = STATE(555), + [sym_break_statement] = STATE(555), + [sym_continue_statement] = STATE(555), + [sym_debugger_statement] = STATE(555), + [sym_return_statement] = STATE(555), + [sym_throw_statement] = STATE(555), + [sym_empty_statement] = STATE(555), + [sym_labeled_statement] = STATE(555), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(555), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(555), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(555), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(597), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(597), - [sym_abstract_class_declaration] = STATE(597), - [sym_module] = STATE(597), - [sym_internal_module] = STATE(99), - [sym_import_alias] = STATE(597), - [sym_interface_declaration] = STATE(597), - [sym_enum_declaration] = STATE(597), - [sym_type_alias_declaration] = STATE(597), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2264), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_namespace] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_type] = ACTIONS(17), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(555), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(555), + [sym_abstract_class_declaration] = STATE(555), + [sym_module] = STATE(555), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(555), + [sym_interface_declaration] = STATE(555), + [sym_enum_declaration] = STATE(555), + [sym_type_alias_declaration] = STATE(555), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2379), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_type] = ACTIONS(401), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(31), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -16873,9 +17094,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(411), + [anon_sym_async] = ACTIONS(413), + [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -16896,96 +17117,96 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(93), - [anon_sym_private] = ACTIONS(93), - [anon_sym_protected] = ACTIONS(93), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(93), - [anon_sym_number] = ACTIONS(93), - [anon_sym_boolean] = ACTIONS(93), - [anon_sym_string] = ACTIONS(93), - [anon_sym_symbol] = ACTIONS(93), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(93), + [sym_readonly] = ACTIONS(417), }, [52] = { - [sym_export_statement] = STATE(557), - [sym__declaration] = STATE(557), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(557), - [sym_expression_statement] = STATE(557), - [sym_variable_declaration] = STATE(557), - [sym_lexical_declaration] = STATE(557), - [sym_statement_block] = STATE(557), - [sym_if_statement] = STATE(557), - [sym_switch_statement] = STATE(557), - [sym_for_statement] = STATE(557), - [sym_for_in_statement] = STATE(557), - [sym_while_statement] = STATE(557), - [sym_do_statement] = STATE(557), - [sym_try_statement] = STATE(557), - [sym_with_statement] = STATE(557), - [sym_break_statement] = STATE(557), - [sym_continue_statement] = STATE(557), - [sym_debugger_statement] = STATE(557), - [sym_return_statement] = STATE(557), - [sym_throw_statement] = STATE(557), - [sym_empty_statement] = STATE(557), - [sym_labeled_statement] = STATE(557), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(557), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(557), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(557), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(550), + [sym__declaration] = STATE(550), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(550), + [sym_expression_statement] = STATE(550), + [sym_variable_declaration] = STATE(550), + [sym_lexical_declaration] = STATE(550), + [sym_statement_block] = STATE(550), + [sym_if_statement] = STATE(550), + [sym_switch_statement] = STATE(550), + [sym_for_statement] = STATE(550), + [sym_for_in_statement] = STATE(550), + [sym_while_statement] = STATE(550), + [sym_do_statement] = STATE(550), + [sym_try_statement] = STATE(550), + [sym_with_statement] = STATE(550), + [sym_break_statement] = STATE(550), + [sym_continue_statement] = STATE(550), + [sym_debugger_statement] = STATE(550), + [sym_return_statement] = STATE(550), + [sym_throw_statement] = STATE(550), + [sym_empty_statement] = STATE(550), + [sym_labeled_statement] = STATE(550), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(550), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(550), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(550), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(557), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(557), - [sym_abstract_class_declaration] = STATE(557), - [sym_module] = STATE(557), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(557), - [sym_interface_declaration] = STATE(557), - [sym_enum_declaration] = STATE(557), - [sym_type_alias_declaration] = STATE(557), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2488), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(550), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(550), + [sym_abstract_class_declaration] = STATE(550), + [sym_module] = STATE(550), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(550), + [sym_interface_declaration] = STATE(550), + [sym_enum_declaration] = STATE(550), + [sym_type_alias_declaration] = STATE(550), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2411), [sym_identifier] = ACTIONS(423), [anon_sym_export] = ACTIONS(425), [anon_sym_namespace] = ACTIONS(427), @@ -17058,77 +17279,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(441), }, [53] = { - [sym_export_statement] = STATE(2874), - [sym__declaration] = STATE(2874), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(2874), - [sym_expression_statement] = STATE(2874), - [sym_variable_declaration] = STATE(2874), - [sym_lexical_declaration] = STATE(2874), - [sym_statement_block] = STATE(2874), - [sym_if_statement] = STATE(2874), - [sym_switch_statement] = STATE(2874), - [sym_for_statement] = STATE(2874), - [sym_for_in_statement] = STATE(2874), - [sym_while_statement] = STATE(2874), - [sym_do_statement] = STATE(2874), - [sym_try_statement] = STATE(2874), - [sym_with_statement] = STATE(2874), - [sym_break_statement] = STATE(2874), - [sym_continue_statement] = STATE(2874), - [sym_debugger_statement] = STATE(2874), - [sym_return_statement] = STATE(2874), - [sym_throw_statement] = STATE(2874), - [sym_empty_statement] = STATE(2874), - [sym_labeled_statement] = STATE(2874), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(2874), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(2874), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(2874), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(549), + [sym__declaration] = STATE(549), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(549), + [sym_expression_statement] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym_lexical_declaration] = STATE(549), + [sym_statement_block] = STATE(549), + [sym_if_statement] = STATE(549), + [sym_switch_statement] = STATE(549), + [sym_for_statement] = STATE(549), + [sym_for_in_statement] = STATE(549), + [sym_while_statement] = STATE(549), + [sym_do_statement] = STATE(549), + [sym_try_statement] = STATE(549), + [sym_with_statement] = STATE(549), + [sym_break_statement] = STATE(549), + [sym_continue_statement] = STATE(549), + [sym_debugger_statement] = STATE(549), + [sym_return_statement] = STATE(549), + [sym_throw_statement] = STATE(549), + [sym_empty_statement] = STATE(549), + [sym_labeled_statement] = STATE(549), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(549), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(549), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(549), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(2874), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(2874), - [sym_abstract_class_declaration] = STATE(2874), - [sym_module] = STATE(2874), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(2874), - [sym_interface_declaration] = STATE(2874), - [sym_enum_declaration] = STATE(2874), - [sym_type_alias_declaration] = STATE(2874), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2473), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(549), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(549), + [sym_abstract_class_declaration] = STATE(549), + [sym_module] = STATE(549), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_type_alias_declaration] = STATE(549), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2379), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -17201,77 +17422,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(417), }, [54] = { - [sym_export_statement] = STATE(597), - [sym__declaration] = STATE(597), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(597), - [sym_expression_statement] = STATE(597), - [sym_variable_declaration] = STATE(597), - [sym_lexical_declaration] = STATE(597), - [sym_statement_block] = STATE(597), - [sym_if_statement] = STATE(597), - [sym_switch_statement] = STATE(597), - [sym_for_statement] = STATE(597), - [sym_for_in_statement] = STATE(597), - [sym_while_statement] = STATE(597), - [sym_do_statement] = STATE(597), - [sym_try_statement] = STATE(597), - [sym_with_statement] = STATE(597), - [sym_break_statement] = STATE(597), - [sym_continue_statement] = STATE(597), - [sym_debugger_statement] = STATE(597), - [sym_return_statement] = STATE(597), - [sym_throw_statement] = STATE(597), - [sym_empty_statement] = STATE(597), - [sym_labeled_statement] = STATE(597), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(597), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(597), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(597), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(590), + [sym__declaration] = STATE(590), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(590), + [sym_expression_statement] = STATE(590), + [sym_variable_declaration] = STATE(590), + [sym_lexical_declaration] = STATE(590), + [sym_statement_block] = STATE(590), + [sym_if_statement] = STATE(590), + [sym_switch_statement] = STATE(590), + [sym_for_statement] = STATE(590), + [sym_for_in_statement] = STATE(590), + [sym_while_statement] = STATE(590), + [sym_do_statement] = STATE(590), + [sym_try_statement] = STATE(590), + [sym_with_statement] = STATE(590), + [sym_break_statement] = STATE(590), + [sym_continue_statement] = STATE(590), + [sym_debugger_statement] = STATE(590), + [sym_return_statement] = STATE(590), + [sym_throw_statement] = STATE(590), + [sym_empty_statement] = STATE(590), + [sym_labeled_statement] = STATE(590), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(590), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(590), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(590), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(597), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(597), - [sym_abstract_class_declaration] = STATE(597), - [sym_module] = STATE(597), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(597), - [sym_interface_declaration] = STATE(597), - [sym_enum_declaration] = STATE(597), - [sym_type_alias_declaration] = STATE(597), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2473), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(590), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(590), + [sym_abstract_class_declaration] = STATE(590), + [sym_module] = STATE(590), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(590), + [sym_interface_declaration] = STATE(590), + [sym_enum_declaration] = STATE(590), + [sym_type_alias_declaration] = STATE(590), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2379), [sym_identifier] = ACTIONS(393), [anon_sym_export] = ACTIONS(395), [anon_sym_namespace] = ACTIONS(397), @@ -17344,97 +17565,97 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(417), }, [55] = { - [sym_export_statement] = STATE(567), - [sym__declaration] = STATE(567), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(567), - [sym_expression_statement] = STATE(567), - [sym_variable_declaration] = STATE(567), - [sym_lexical_declaration] = STATE(567), - [sym_statement_block] = STATE(567), - [sym_if_statement] = STATE(567), - [sym_switch_statement] = STATE(567), - [sym_for_statement] = STATE(567), - [sym_for_in_statement] = STATE(567), - [sym_while_statement] = STATE(567), - [sym_do_statement] = STATE(567), - [sym_try_statement] = STATE(567), - [sym_with_statement] = STATE(567), - [sym_break_statement] = STATE(567), - [sym_continue_statement] = STATE(567), - [sym_debugger_statement] = STATE(567), - [sym_return_statement] = STATE(567), - [sym_throw_statement] = STATE(567), - [sym_empty_statement] = STATE(567), - [sym_labeled_statement] = STATE(567), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(567), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(567), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(567), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(602), + [sym__declaration] = STATE(602), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(602), + [sym_expression_statement] = STATE(602), + [sym_variable_declaration] = STATE(602), + [sym_lexical_declaration] = STATE(602), + [sym_statement_block] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_switch_statement] = STATE(602), + [sym_for_statement] = STATE(602), + [sym_for_in_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_do_statement] = STATE(602), + [sym_try_statement] = STATE(602), + [sym_with_statement] = STATE(602), + [sym_break_statement] = STATE(602), + [sym_continue_statement] = STATE(602), + [sym_debugger_statement] = STATE(602), + [sym_return_statement] = STATE(602), + [sym_throw_statement] = STATE(602), + [sym_empty_statement] = STATE(602), + [sym_labeled_statement] = STATE(602), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(602), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(602), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(602), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(567), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(567), - [sym_abstract_class_declaration] = STATE(567), - [sym_module] = STATE(567), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(567), - [sym_interface_declaration] = STATE(567), - [sym_enum_declaration] = STATE(567), - [sym_type_alias_declaration] = STATE(567), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(427), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(602), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(602), + [sym_abstract_class_declaration] = STATE(602), + [sym_module] = STATE(602), + [sym_internal_module] = STATE(1343), + [sym_import_alias] = STATE(602), + [sym_interface_declaration] = STATE(602), + [sym_enum_declaration] = STATE(602), + [sym_type_alias_declaration] = STATE(602), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2379), + [sym_identifier] = ACTIONS(393), + [anon_sym_export] = ACTIONS(395), + [anon_sym_namespace] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(429), + [anon_sym_type] = ACTIONS(401), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(431), + [anon_sym_if] = ACTIONS(403), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(433), + [anon_sym_for] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(435), + [anon_sym_while] = ACTIONS(407), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(437), + [anon_sym_with] = ACTIONS(409), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17446,7 +17667,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(439), + [anon_sym_async] = ACTIONS(413), [anon_sym_function] = ACTIONS(415), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -17468,116 +17689,116 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(441), + [anon_sym_static] = ACTIONS(417), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [anon_sym_declare] = ACTIONS(443), - [anon_sym_public] = ACTIONS(441), - [anon_sym_private] = ACTIONS(441), - [anon_sym_protected] = ACTIONS(441), - [anon_sym_module] = ACTIONS(445), - [anon_sym_any] = ACTIONS(441), - [anon_sym_number] = ACTIONS(441), - [anon_sym_boolean] = ACTIONS(441), - [anon_sym_string] = ACTIONS(441), - [anon_sym_symbol] = ACTIONS(441), + [anon_sym_get] = ACTIONS(417), + [anon_sym_set] = ACTIONS(417), + [anon_sym_declare] = ACTIONS(419), + [anon_sym_public] = ACTIONS(417), + [anon_sym_private] = ACTIONS(417), + [anon_sym_protected] = ACTIONS(417), + [anon_sym_module] = ACTIONS(421), + [anon_sym_any] = ACTIONS(417), + [anon_sym_number] = ACTIONS(417), + [anon_sym_boolean] = ACTIONS(417), + [anon_sym_string] = ACTIONS(417), + [anon_sym_symbol] = ACTIONS(417), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(441), + [sym_readonly] = ACTIONS(417), }, [56] = { - [sym_export_statement] = STATE(599), - [sym__declaration] = STATE(599), - [sym_import] = STATE(1420), - [sym_import_statement] = STATE(599), - [sym_expression_statement] = STATE(599), - [sym_variable_declaration] = STATE(599), - [sym_lexical_declaration] = STATE(599), - [sym_statement_block] = STATE(599), - [sym_if_statement] = STATE(599), - [sym_switch_statement] = STATE(599), - [sym_for_statement] = STATE(599), - [sym_for_in_statement] = STATE(599), - [sym_while_statement] = STATE(599), - [sym_do_statement] = STATE(599), - [sym_try_statement] = STATE(599), - [sym_with_statement] = STATE(599), - [sym_break_statement] = STATE(599), - [sym_continue_statement] = STATE(599), - [sym_debugger_statement] = STATE(599), - [sym_return_statement] = STATE(599), - [sym_throw_statement] = STATE(599), - [sym_empty_statement] = STATE(599), - [sym_labeled_statement] = STATE(599), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_class_declaration] = STATE(599), - [sym_function] = STATE(1420), - [sym_function_declaration] = STATE(599), - [sym_generator_function] = STATE(1420), - [sym_generator_function_declaration] = STATE(599), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_export_statement] = STATE(549), + [sym__declaration] = STATE(549), + [sym_import] = STATE(1473), + [sym_import_statement] = STATE(549), + [sym_expression_statement] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym_lexical_declaration] = STATE(549), + [sym_statement_block] = STATE(549), + [sym_if_statement] = STATE(549), + [sym_switch_statement] = STATE(549), + [sym_for_statement] = STATE(549), + [sym_for_in_statement] = STATE(549), + [sym_while_statement] = STATE(549), + [sym_do_statement] = STATE(549), + [sym_try_statement] = STATE(549), + [sym_with_statement] = STATE(549), + [sym_break_statement] = STATE(549), + [sym_continue_statement] = STATE(549), + [sym_debugger_statement] = STATE(549), + [sym_return_statement] = STATE(549), + [sym_throw_statement] = STATE(549), + [sym_empty_statement] = STATE(549), + [sym_labeled_statement] = STATE(549), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_class_declaration] = STATE(549), + [sym_function] = STATE(1473), + [sym_function_declaration] = STATE(549), + [sym_generator_function] = STATE(1473), + [sym_generator_function_declaration] = STATE(549), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_function_signature] = STATE(599), - [sym_as_expression] = STATE(1284), - [sym_ambient_declaration] = STATE(599), - [sym_abstract_class_declaration] = STATE(599), - [sym_module] = STATE(599), - [sym_internal_module] = STATE(1335), - [sym_import_alias] = STATE(599), - [sym_interface_declaration] = STATE(599), - [sym_enum_declaration] = STATE(599), - [sym_type_alias_declaration] = STATE(599), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(423), - [anon_sym_export] = ACTIONS(425), - [anon_sym_namespace] = ACTIONS(427), - [anon_sym_LBRACE] = ACTIONS(399), - [anon_sym_type] = ACTIONS(429), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_function_signature] = STATE(549), + [sym_as_expression] = STATE(1263), + [sym_ambient_declaration] = STATE(549), + [sym_abstract_class_declaration] = STATE(549), + [sym_module] = STATE(549), + [sym_internal_module] = STATE(104), + [sym_import_alias] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_type_alias_declaration] = STATE(549), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2337), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_type] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(431), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(433), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(435), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(437), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17588,9 +17809,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(411), - [anon_sym_async] = ACTIONS(439), - [anon_sym_function] = ACTIONS(415), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(71), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -17611,90 +17832,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(441), + [anon_sym_static] = ACTIONS(93), [anon_sym_abstract] = ACTIONS(95), - [anon_sym_get] = ACTIONS(441), - [anon_sym_set] = ACTIONS(441), - [anon_sym_declare] = ACTIONS(443), - [anon_sym_public] = ACTIONS(441), - [anon_sym_private] = ACTIONS(441), - [anon_sym_protected] = ACTIONS(441), - [anon_sym_module] = ACTIONS(445), - [anon_sym_any] = ACTIONS(441), - [anon_sym_number] = ACTIONS(441), - [anon_sym_boolean] = ACTIONS(441), - [anon_sym_string] = ACTIONS(441), - [anon_sym_symbol] = ACTIONS(441), + [anon_sym_get] = ACTIONS(93), + [anon_sym_set] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(93), + [anon_sym_private] = ACTIONS(93), + [anon_sym_protected] = ACTIONS(93), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(93), + [anon_sym_number] = ACTIONS(93), + [anon_sym_boolean] = ACTIONS(93), + [anon_sym_string] = ACTIONS(93), + [anon_sym_symbol] = ACTIONS(93), [anon_sym_interface] = ACTIONS(101), [anon_sym_enum] = ACTIONS(103), - [sym_readonly] = ACTIONS(441), + [sym_readonly] = ACTIONS(93), }, [57] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1154), - [sym_yield_expression] = STATE(1154), - [sym_object] = STATE(1557), - [sym_array] = STATE(1520), - [sym_jsx_element] = STATE(1154), - [sym_jsx_fragment] = STATE(1154), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1154), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1154), - [sym_await_expression] = STATE(1154), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1154), - [sym_augmented_assignment_expression] = STATE(1154), - [sym_ternary_expression] = STATE(1154), - [sym_binary_expression] = STATE(1154), - [sym_unary_expression] = STATE(1154), - [sym_update_expression] = STATE(1154), - [sym_sequence_expression] = STATE(3124), - [sym_string] = STATE(1663), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1144), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1461), + [sym_array] = STATE(1468), + [sym_jsx_element] = STATE(1144), + [sym_jsx_fragment] = STATE(1144), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1144), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1144), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3121), + [sym_string] = STATE(1699), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2579), - [sym_rest_parameter] = STATE(2666), - [sym_non_null_expression] = STATE(1154), - [sym_as_expression] = STATE(1154), - [sym_internal_module] = STATE(1154), - [sym_nested_type_identifier] = STATE(1923), + [sym_formal_parameters] = STATE(2602), + [sym_rest_parameter] = STATE(2725), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), + [sym_nested_type_identifier] = STATE(1924), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym__type] = STATE(2696), - [sym_constructor_type] = STATE(2696), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2922), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2696), - [sym_intersection_type] = STATE(2696), - [sym_function_type] = STATE(2696), - [aux_sym_export_statement_repeat1] = STATE(1791), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym__type] = STATE(2735), + [sym_constructor_type] = STATE(2735), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2924), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2735), + [sym_intersection_type] = STATE(2735), + [sym_function_type] = STATE(2735), + [aux_sym_export_statement_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -17756,71 +17977,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [58] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1030), - [sym_yield_expression] = STATE(1030), - [sym_object] = STATE(1557), - [sym_array] = STATE(1520), - [sym_jsx_element] = STATE(1030), - [sym_jsx_fragment] = STATE(1030), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1030), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1030), - [sym_await_expression] = STATE(1030), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1030), - [sym_augmented_assignment_expression] = STATE(1030), - [sym_ternary_expression] = STATE(1030), - [sym_binary_expression] = STATE(1030), - [sym_unary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_sequence_expression] = STATE(3309), - [sym_string] = STATE(1663), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1048), + [sym_yield_expression] = STATE(1048), + [sym_object] = STATE(1461), + [sym_array] = STATE(1468), + [sym_jsx_element] = STATE(1048), + [sym_jsx_fragment] = STATE(1048), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1048), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1048), + [sym_await_expression] = STATE(1048), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1048), + [sym_augmented_assignment_expression] = STATE(1048), + [sym_ternary_expression] = STATE(1048), + [sym_binary_expression] = STATE(1048), + [sym_unary_expression] = STATE(1048), + [sym_update_expression] = STATE(1048), + [sym_sequence_expression] = STATE(3103), + [sym_string] = STATE(1699), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2579), - [sym_rest_parameter] = STATE(2666), - [sym_non_null_expression] = STATE(1030), - [sym_as_expression] = STATE(1030), - [sym_internal_module] = STATE(1030), - [sym_nested_type_identifier] = STATE(1923), + [sym_formal_parameters] = STATE(2602), + [sym_rest_parameter] = STATE(2725), + [sym_non_null_expression] = STATE(1048), + [sym_as_expression] = STATE(1048), + [sym_internal_module] = STATE(1048), + [sym_nested_type_identifier] = STATE(1924), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym__type] = STATE(2691), - [sym_constructor_type] = STATE(2691), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2922), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2691), - [sym_intersection_type] = STATE(2691), - [sym_function_type] = STATE(2691), - [aux_sym_export_statement_repeat1] = STATE(1791), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym__type] = STATE(2735), + [sym_constructor_type] = STATE(2735), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2924), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2735), + [sym_intersection_type] = STATE(2735), + [sym_function_type] = STATE(2735), + [aux_sym_export_statement_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -17882,71 +18103,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [59] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1030), - [sym_yield_expression] = STATE(1030), - [sym_object] = STATE(1557), - [sym_array] = STATE(1520), - [sym_jsx_element] = STATE(1030), - [sym_jsx_fragment] = STATE(1030), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1030), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1030), - [sym_await_expression] = STATE(1030), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1030), - [sym_augmented_assignment_expression] = STATE(1030), - [sym_ternary_expression] = STATE(1030), - [sym_binary_expression] = STATE(1030), - [sym_unary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_sequence_expression] = STATE(3309), - [sym_string] = STATE(1663), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1056), + [sym_yield_expression] = STATE(1056), + [sym_object] = STATE(1461), + [sym_array] = STATE(1468), + [sym_jsx_element] = STATE(1056), + [sym_jsx_fragment] = STATE(1056), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1056), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1056), + [sym_await_expression] = STATE(1056), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1056), + [sym_augmented_assignment_expression] = STATE(1056), + [sym_ternary_expression] = STATE(1056), + [sym_binary_expression] = STATE(1056), + [sym_unary_expression] = STATE(1056), + [sym_update_expression] = STATE(1056), + [sym_sequence_expression] = STATE(3158), + [sym_string] = STATE(1699), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2579), - [sym_rest_parameter] = STATE(2666), - [sym_non_null_expression] = STATE(1030), - [sym_as_expression] = STATE(1030), - [sym_internal_module] = STATE(1030), - [sym_nested_type_identifier] = STATE(1923), + [sym_formal_parameters] = STATE(2602), + [sym_rest_parameter] = STATE(2725), + [sym_non_null_expression] = STATE(1056), + [sym_as_expression] = STATE(1056), + [sym_internal_module] = STATE(1056), + [sym_nested_type_identifier] = STATE(1924), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym__type] = STATE(2696), - [sym_constructor_type] = STATE(2696), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2922), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2696), - [sym_intersection_type] = STATE(2696), - [sym_function_type] = STATE(2696), - [aux_sym_export_statement_repeat1] = STATE(1791), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym__type] = STATE(2695), + [sym_constructor_type] = STATE(2695), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2924), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2695), + [sym_intersection_type] = STATE(2695), + [sym_function_type] = STATE(2695), + [aux_sym_export_statement_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -18008,71 +18229,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [60] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1045), - [sym_yield_expression] = STATE(1045), - [sym_object] = STATE(1557), - [sym_array] = STATE(1520), - [sym_jsx_element] = STATE(1045), - [sym_jsx_fragment] = STATE(1045), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1045), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1045), - [sym_await_expression] = STATE(1045), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1045), - [sym_augmented_assignment_expression] = STATE(1045), - [sym_ternary_expression] = STATE(1045), - [sym_binary_expression] = STATE(1045), - [sym_unary_expression] = STATE(1045), - [sym_update_expression] = STATE(1045), - [sym_sequence_expression] = STATE(3139), - [sym_string] = STATE(1663), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1056), + [sym_yield_expression] = STATE(1056), + [sym_object] = STATE(1461), + [sym_array] = STATE(1468), + [sym_jsx_element] = STATE(1056), + [sym_jsx_fragment] = STATE(1056), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1056), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1056), + [sym_await_expression] = STATE(1056), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1056), + [sym_augmented_assignment_expression] = STATE(1056), + [sym_ternary_expression] = STATE(1056), + [sym_binary_expression] = STATE(1056), + [sym_unary_expression] = STATE(1056), + [sym_update_expression] = STATE(1056), + [sym_sequence_expression] = STATE(3158), + [sym_string] = STATE(1699), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2579), - [sym_rest_parameter] = STATE(2666), - [sym_non_null_expression] = STATE(1045), - [sym_as_expression] = STATE(1045), - [sym_internal_module] = STATE(1045), - [sym_nested_type_identifier] = STATE(1923), + [sym_formal_parameters] = STATE(2602), + [sym_rest_parameter] = STATE(2725), + [sym_non_null_expression] = STATE(1056), + [sym_as_expression] = STATE(1056), + [sym_internal_module] = STATE(1056), + [sym_nested_type_identifier] = STATE(1924), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym__type] = STATE(2696), - [sym_constructor_type] = STATE(2696), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2922), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2696), - [sym_intersection_type] = STATE(2696), - [sym_function_type] = STATE(2696), - [aux_sym_export_statement_repeat1] = STATE(1791), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym__type] = STATE(2735), + [sym_constructor_type] = STATE(2735), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2924), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2735), + [sym_intersection_type] = STATE(2735), + [sym_function_type] = STATE(2735), + [aux_sym_export_statement_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(447), [anon_sym_export] = ACTIONS(449), [anon_sym_STAR] = ACTIONS(451), @@ -18134,67 +18355,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [61] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1283), - [sym_yield_expression] = STATE(1283), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1283), - [sym_jsx_fragment] = STATE(1283), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1283), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1283), - [sym_await_expression] = STATE(1283), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1283), - [sym_augmented_assignment_expression] = STATE(1283), - [sym_spread_element] = STATE(2733), - [sym_ternary_expression] = STATE(1283), - [sym_binary_expression] = STATE(1283), - [sym_unary_expression] = STATE(1283), - [sym_update_expression] = STATE(1283), - [sym_string] = STATE(1712), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1234), + [sym_yield_expression] = STATE(1234), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1234), + [sym_jsx_fragment] = STATE(1234), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1234), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1234), + [sym_await_expression] = STATE(1234), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(1234), + [sym_spread_element] = STATE(2756), + [sym_ternary_expression] = STATE(1234), + [sym_binary_expression] = STATE(1234), + [sym_unary_expression] = STATE(1234), + [sym_update_expression] = STATE(1234), + [sym_string] = STATE(1702), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2579), - [sym_non_null_expression] = STATE(1283), - [sym_as_expression] = STATE(1283), - [sym_internal_module] = STATE(1283), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2371), - [sym_constructor_type] = STATE(2371), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2922), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2371), - [sym_intersection_type] = STATE(2371), - [sym_function_type] = STATE(2371), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2734), + [sym_formal_parameters] = STATE(2602), + [sym_non_null_expression] = STATE(1234), + [sym_as_expression] = STATE(1234), + [sym_internal_module] = STATE(1234), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2271), + [sym_constructor_type] = STATE(2271), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2924), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2271), + [sym_intersection_type] = STATE(2271), + [sym_function_type] = STATE(2271), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2802), [sym_identifier] = ACTIONS(525), [anon_sym_export] = ACTIONS(527), [anon_sym_STAR] = ACTIONS(451), @@ -18257,67 +18478,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [62] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1260), - [sym_yield_expression] = STATE(1260), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1260), - [sym_jsx_fragment] = STATE(1260), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1260), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1260), - [sym_await_expression] = STATE(1260), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1260), - [sym_augmented_assignment_expression] = STATE(1260), - [sym_spread_element] = STATE(2737), - [sym_ternary_expression] = STATE(1260), - [sym_binary_expression] = STATE(1260), - [sym_unary_expression] = STATE(1260), - [sym_update_expression] = STATE(1260), - [sym_string] = STATE(1712), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1237), + [sym_yield_expression] = STATE(1237), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1237), + [sym_jsx_fragment] = STATE(1237), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1237), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1237), + [sym_await_expression] = STATE(1237), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1237), + [sym_augmented_assignment_expression] = STATE(1237), + [sym_spread_element] = STATE(2673), + [sym_ternary_expression] = STATE(1237), + [sym_binary_expression] = STATE(1237), + [sym_unary_expression] = STATE(1237), + [sym_update_expression] = STATE(1237), + [sym_string] = STATE(1702), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2579), - [sym_non_null_expression] = STATE(1260), - [sym_as_expression] = STATE(1260), - [sym_internal_module] = STATE(1260), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2371), - [sym_constructor_type] = STATE(2371), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2922), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2371), - [sym_intersection_type] = STATE(2371), - [sym_function_type] = STATE(2371), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2650), + [sym_formal_parameters] = STATE(2602), + [sym_non_null_expression] = STATE(1237), + [sym_as_expression] = STATE(1237), + [sym_internal_module] = STATE(1237), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2271), + [sym_constructor_type] = STATE(2271), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2924), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2271), + [sym_intersection_type] = STATE(2271), + [sym_function_type] = STATE(2271), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2674), [sym_identifier] = ACTIONS(525), [anon_sym_export] = ACTIONS(527), [anon_sym_STAR] = ACTIONS(451), @@ -18380,67 +18601,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [63] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1192), - [sym_jsx_fragment] = STATE(1192), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1192), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1192), - [sym_augmented_assignment_expression] = STATE(1192), - [sym_spread_element] = STATE(2813), - [sym_ternary_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_unary_expression] = STATE(1192), - [sym_update_expression] = STATE(1192), - [sym_string] = STATE(1712), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1308), + [sym_yield_expression] = STATE(1308), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1308), + [sym_jsx_fragment] = STATE(1308), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1308), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1308), + [sym_await_expression] = STATE(1308), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1308), + [sym_augmented_assignment_expression] = STATE(1308), + [sym_spread_element] = STATE(2739), + [sym_ternary_expression] = STATE(1308), + [sym_binary_expression] = STATE(1308), + [sym_unary_expression] = STATE(1308), + [sym_update_expression] = STATE(1308), + [sym_string] = STATE(1702), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2579), - [sym_non_null_expression] = STATE(1192), - [sym_as_expression] = STATE(1192), - [sym_internal_module] = STATE(1192), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2416), - [sym_constructor_type] = STATE(2416), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2922), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2416), - [sym_intersection_type] = STATE(2416), - [sym_function_type] = STATE(2416), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2809), + [sym_formal_parameters] = STATE(2602), + [sym_non_null_expression] = STATE(1308), + [sym_as_expression] = STATE(1308), + [sym_internal_module] = STATE(1308), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2271), + [sym_constructor_type] = STATE(2271), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2924), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2271), + [sym_intersection_type] = STATE(2271), + [sym_function_type] = STATE(2271), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2740), [sym_identifier] = ACTIONS(525), [anon_sym_export] = ACTIONS(527), [anon_sym_STAR] = ACTIONS(451), @@ -18503,67 +18724,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [64] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1192), - [sym_jsx_fragment] = STATE(1192), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1192), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1192), - [sym_augmented_assignment_expression] = STATE(1192), - [sym_spread_element] = STATE(2813), - [sym_ternary_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_unary_expression] = STATE(1192), - [sym_update_expression] = STATE(1192), - [sym_string] = STATE(1712), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1304), + [sym_yield_expression] = STATE(1304), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1304), + [sym_jsx_fragment] = STATE(1304), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1304), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1304), + [sym_await_expression] = STATE(1304), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1304), + [sym_augmented_assignment_expression] = STATE(1304), + [sym_spread_element] = STATE(2787), + [sym_ternary_expression] = STATE(1304), + [sym_binary_expression] = STATE(1304), + [sym_unary_expression] = STATE(1304), + [sym_update_expression] = STATE(1304), + [sym_string] = STATE(1702), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2579), - [sym_non_null_expression] = STATE(1192), - [sym_as_expression] = STATE(1192), - [sym_internal_module] = STATE(1192), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2371), - [sym_constructor_type] = STATE(2371), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2922), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2371), - [sym_intersection_type] = STATE(2371), - [sym_function_type] = STATE(2371), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2809), + [sym_formal_parameters] = STATE(2602), + [sym_non_null_expression] = STATE(1304), + [sym_as_expression] = STATE(1304), + [sym_internal_module] = STATE(1304), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2328), + [sym_constructor_type] = STATE(2328), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2924), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2328), + [sym_intersection_type] = STATE(2328), + [sym_function_type] = STATE(2328), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2786), [sym_identifier] = ACTIONS(525), [anon_sym_export] = ACTIONS(527), [anon_sym_STAR] = ACTIONS(451), @@ -18578,7 +18799,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_RBRACK] = ACTIONS(553), + [anon_sym_RBRACK] = ACTIONS(555), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -18626,67 +18847,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [65] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1313), - [sym_yield_expression] = STATE(1313), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1313), - [sym_jsx_fragment] = STATE(1313), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1313), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1313), - [sym_await_expression] = STATE(1313), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1313), - [sym_augmented_assignment_expression] = STATE(1313), - [sym_spread_element] = STATE(2662), - [sym_ternary_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_unary_expression] = STATE(1313), - [sym_update_expression] = STATE(1313), - [sym_string] = STATE(1712), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1304), + [sym_yield_expression] = STATE(1304), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1304), + [sym_jsx_fragment] = STATE(1304), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1304), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1304), + [sym_await_expression] = STATE(1304), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1304), + [sym_augmented_assignment_expression] = STATE(1304), + [sym_spread_element] = STATE(2787), + [sym_ternary_expression] = STATE(1304), + [sym_binary_expression] = STATE(1304), + [sym_unary_expression] = STATE(1304), + [sym_update_expression] = STATE(1304), + [sym_string] = STATE(1702), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2579), - [sym_non_null_expression] = STATE(1313), - [sym_as_expression] = STATE(1313), - [sym_internal_module] = STATE(1313), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2371), - [sym_constructor_type] = STATE(2371), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2922), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2371), - [sym_intersection_type] = STATE(2371), - [sym_function_type] = STATE(2371), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2663), + [sym_formal_parameters] = STATE(2602), + [sym_non_null_expression] = STATE(1304), + [sym_as_expression] = STATE(1304), + [sym_internal_module] = STATE(1304), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2271), + [sym_constructor_type] = STATE(2271), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2924), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2271), + [sym_intersection_type] = STATE(2271), + [sym_function_type] = STATE(2271), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2786), [sym_identifier] = ACTIONS(525), [anon_sym_export] = ACTIONS(527), [anon_sym_STAR] = ACTIONS(451), @@ -18749,43 +18970,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [66] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1013), - [sym_yield_expression] = STATE(1013), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1013), - [sym_jsx_fragment] = STATE(1013), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1013), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1013), - [sym_await_expression] = STATE(1013), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1013), - [sym_augmented_assignment_expression] = STATE(1013), - [sym_ternary_expression] = STATE(1013), - [sym_binary_expression] = STATE(1013), - [sym_unary_expression] = STATE(1013), - [sym_update_expression] = STATE(1013), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1019), + [sym_yield_expression] = STATE(1019), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1019), + [sym_jsx_fragment] = STATE(1019), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1019), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1019), + [sym_await_expression] = STATE(1019), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1019), + [sym_augmented_assignment_expression] = STATE(1019), + [sym_ternary_expression] = STATE(1019), + [sym_binary_expression] = STATE(1019), + [sym_unary_expression] = STATE(1019), + [sym_update_expression] = STATE(1019), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1013), - [sym_as_expression] = STATE(1013), - [sym_internal_module] = STATE(1013), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1019), + [sym_as_expression] = STATE(1019), + [sym_internal_module] = STATE(1019), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_STAR] = ACTIONS(559), @@ -18869,42 +19090,42 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [67] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1144), - [sym_yield_expression] = STATE(1144), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1144), - [sym_jsx_fragment] = STATE(1144), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1144), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1144), - [sym_await_expression] = STATE(1144), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1144), - [sym_augmented_assignment_expression] = STATE(1144), - [sym_ternary_expression] = STATE(1144), - [sym_binary_expression] = STATE(1144), - [sym_unary_expression] = STATE(1144), - [sym_update_expression] = STATE(1144), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1183), + [sym_yield_expression] = STATE(1183), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1183), + [sym_jsx_fragment] = STATE(1183), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1183), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1183), + [sym_await_expression] = STATE(1183), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1183), + [sym_augmented_assignment_expression] = STATE(1183), + [sym_ternary_expression] = STATE(1183), + [sym_binary_expression] = STATE(1183), + [sym_unary_expression] = STATE(1183), + [sym_update_expression] = STATE(1183), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1144), - [sym_as_expression] = STATE(1144), - [sym_internal_module] = STATE(1144), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1183), + [sym_as_expression] = STATE(1183), + [sym_internal_module] = STATE(1183), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -18988,457 +19209,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(565), }, [68] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1193), - [sym_yield_expression] = STATE(1193), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1193), - [sym_jsx_fragment] = STATE(1193), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1193), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1193), - [sym_await_expression] = STATE(1193), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1193), - [sym_augmented_assignment_expression] = STATE(1193), - [sym_ternary_expression] = STATE(1193), - [sym_binary_expression] = STATE(1193), - [sym_unary_expression] = STATE(1193), - [sym_update_expression] = STATE(1193), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(994), + [sym_yield_expression] = STATE(994), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(994), + [sym_jsx_fragment] = STATE(994), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(994), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(994), + [sym_await_expression] = STATE(994), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(994), + [sym_augmented_assignment_expression] = STATE(994), + [sym_ternary_expression] = STATE(994), + [sym_binary_expression] = STATE(994), + [sym_unary_expression] = STATE(994), + [sym_update_expression] = STATE(994), + [sym_string] = STATE(1115), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1193), - [sym_as_expression] = STATE(1193), - [sym_internal_module] = STATE(1193), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2548), + [sym_non_null_expression] = STATE(994), + [sym_as_expression] = STATE(994), + [sym_internal_module] = STATE(994), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2465), + [sym_constructor_type] = STATE(2465), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(2376), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2999), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2465), + [sym_intersection_type] = STATE(2465), + [sym_function_type] = STATE(2465), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(607), - [anon_sym_as] = ACTIONS(561), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_RBRACE] = ACTIONS(565), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_in] = ACTIONS(561), - [anon_sym_COLON] = ACTIONS(565), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(565), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(561), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_new] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(561), - [anon_sym_AMP_AMP] = ACTIONS(565), - [anon_sym_PIPE_PIPE] = ACTIONS(565), - [anon_sym_GT_GT] = ACTIONS(561), - [anon_sym_GT_GT_GT] = ACTIONS(565), - [anon_sym_LT_LT] = ACTIONS(565), - [anon_sym_AMP] = ACTIONS(561), - [anon_sym_CARET] = ACTIONS(565), - [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(565), - [anon_sym_STAR_STAR] = ACTIONS(565), - [anon_sym_LT_EQ] = ACTIONS(565), - [anon_sym_EQ_EQ] = ACTIONS(561), - [anon_sym_EQ_EQ_EQ] = ACTIONS(565), - [anon_sym_BANG_EQ] = ACTIONS(561), - [anon_sym_BANG_EQ_EQ] = ACTIONS(565), - [anon_sym_GT_EQ] = ACTIONS(565), - [anon_sym_QMARK_QMARK] = ACTIONS(565), - [anon_sym_instanceof] = ACTIONS(561), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), - }, - [69] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1294), - [sym_yield_expression] = STATE(1294), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1294), - [sym_jsx_fragment] = STATE(1294), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1294), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1294), - [sym_augmented_assignment_expression] = STATE(1294), - [sym_ternary_expression] = STATE(1294), - [sym_binary_expression] = STATE(1294), - [sym_unary_expression] = STATE(1294), - [sym_update_expression] = STATE(1294), - [sym_string] = STATE(1164), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2541), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_internal_module] = STATE(1294), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2410), - [sym_constructor_type] = STATE(2410), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(2424), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2902), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2410), - [sym_intersection_type] = STATE(2410), - [sym_function_type] = STATE(2410), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(629), - [anon_sym_export] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(637), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(649), - [anon_sym_QMARK] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(657), - [anon_sym_DASH] = ACTIONS(657), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(665), - [sym_this] = ACTIONS(667), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(671), - [anon_sym_number] = ACTIONS(671), - [anon_sym_boolean] = ACTIONS(671), - [anon_sym_string] = ACTIONS(671), - [anon_sym_symbol] = ACTIONS(671), - [sym_readonly] = ACTIONS(631), - [anon_sym_keyof] = ACTIONS(521), - [anon_sym_LBRACE_PIPE] = ACTIONS(523), - }, - [70] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1216), - [sym_yield_expression] = STATE(1216), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1216), - [sym_jsx_fragment] = STATE(1216), - [sym_jsx_opening_element] = STATE(2054), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1216), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1216), - [sym_await_expression] = STATE(1216), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1216), - [sym_augmented_assignment_expression] = STATE(1216), - [sym_ternary_expression] = STATE(1216), - [sym_binary_expression] = STATE(1216), - [sym_unary_expression] = STATE(1216), - [sym_update_expression] = STATE(1216), - [sym_string] = STATE(1575), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2541), - [sym_non_null_expression] = STATE(1216), - [sym_as_expression] = STATE(1216), - [sym_internal_module] = STATE(1216), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2410), - [sym_constructor_type] = STATE(2410), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(2424), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2902), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2410), - [sym_intersection_type] = STATE(2410), - [sym_function_type] = STATE(2410), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(673), - [anon_sym_export] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(679), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(681), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(705), - [anon_sym_QMARK] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(707), - [anon_sym_DASH] = ACTIONS(707), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(709), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(721), - [sym_this] = ACTIONS(723), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(727), - [sym_false] = ACTIONS(727), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(729), - [anon_sym_number] = ACTIONS(729), - [anon_sym_boolean] = ACTIONS(729), - [anon_sym_string] = ACTIONS(729), - [anon_sym_symbol] = ACTIONS(729), - [sym_readonly] = ACTIONS(675), - [anon_sym_keyof] = ACTIONS(521), - [anon_sym_LBRACE_PIPE] = ACTIONS(523), - }, - [71] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1330), - [sym_yield_expression] = STATE(1330), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1330), - [sym_jsx_fragment] = STATE(1330), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3086), - [sym_jsx_self_closing_element] = STATE(1330), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1330), - [sym_await_expression] = STATE(1330), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1330), - [sym_augmented_assignment_expression] = STATE(1330), - [sym_ternary_expression] = STATE(1330), - [sym_binary_expression] = STATE(1330), - [sym_unary_expression] = STATE(1330), - [sym_update_expression] = STATE(1330), - [sym_string] = STATE(1361), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2588), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(1330), - [sym_internal_module] = STATE(1330), - [sym_nested_type_identifier] = STATE(1952), - [sym__type] = STATE(2040), - [sym_constructor_type] = STATE(2040), - [sym__primary_type] = STATE(1979), - [sym_generic_type] = STATE(1979), - [sym_type_predicate] = STATE(1979), - [sym_type_query] = STATE(1979), - [sym_index_type_query] = STATE(1979), - [sym_lookup_type] = STATE(1979), - [sym_literal_type] = STATE(1979), - [sym__number] = STATE(1987), - [sym_existential_type] = STATE(1979), - [sym_flow_maybe_type] = STATE(1979), - [sym_parenthesized_type] = STATE(1979), - [sym_predefined_type] = STATE(1979), - [sym_object_type] = STATE(1979), - [sym_type_parameters] = STATE(3058), - [sym_array_type] = STATE(1979), - [sym_tuple_type] = STATE(1979), - [sym_union_type] = STATE(2040), - [sym_intersection_type] = STATE(2040), - [sym_function_type] = STATE(2040), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(731), [anon_sym_export] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(451), [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(605), [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(737), + [anon_sym_typeof] = ACTIONS(607), [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(739), + [anon_sym_LPAREN] = ACTIONS(463), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(471), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(743), - [anon_sym_QMARK] = ACTIONS(745), - [anon_sym_AMP] = ACTIONS(747), - [anon_sym_PIPE] = ACTIONS(749), - [anon_sym_PLUS] = ACTIONS(751), - [anon_sym_DASH] = ACTIONS(751), + [anon_sym_new] = ACTIONS(609), + [anon_sym_QMARK] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(617), + [anon_sym_DASH] = ACTIONS(617), [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(753), + [anon_sym_void] = ACTIONS(495), [anon_sym_delete] = ACTIONS(497), [anon_sym_PLUS_PLUS] = ACTIONS(499), [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(755), - [sym_this] = ACTIONS(757), + [sym_number] = ACTIONS(619), + [sym_this] = ACTIONS(621), [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(759), - [sym_false] = ACTIONS(759), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), @@ -19450,101 +19317,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(527), [anon_sym_protected] = ACTIONS(527), [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(761), - [anon_sym_number] = ACTIONS(761), - [anon_sym_boolean] = ACTIONS(761), - [anon_sym_string] = ACTIONS(761), - [anon_sym_symbol] = ACTIONS(761), + [anon_sym_any] = ACTIONS(625), + [anon_sym_number] = ACTIONS(625), + [anon_sym_boolean] = ACTIONS(625), + [anon_sym_string] = ACTIONS(625), + [anon_sym_symbol] = ACTIONS(625), [sym_readonly] = ACTIONS(527), - [anon_sym_keyof] = ACTIONS(763), - [anon_sym_LBRACE_PIPE] = ACTIONS(765), + [anon_sym_keyof] = ACTIONS(521), + [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, - [72] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1081), - [sym_yield_expression] = STATE(1081), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1081), - [sym_jsx_fragment] = STATE(1081), - [sym_jsx_opening_element] = STATE(2057), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1081), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1081), - [sym_await_expression] = STATE(1081), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1081), - [sym_augmented_assignment_expression] = STATE(1081), - [sym_ternary_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_unary_expression] = STATE(1081), - [sym_update_expression] = STATE(1081), - [sym_string] = STATE(1546), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [69] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1168), + [sym_yield_expression] = STATE(1168), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1168), + [sym_jsx_fragment] = STATE(1168), + [sym_jsx_opening_element] = STATE(2038), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1168), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1168), + [sym_await_expression] = STATE(1168), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1168), + [sym_augmented_assignment_expression] = STATE(1168), + [sym_ternary_expression] = STATE(1168), + [sym_binary_expression] = STATE(1168), + [sym_unary_expression] = STATE(1168), + [sym_update_expression] = STATE(1168), + [sym_string] = STATE(1536), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2541), - [sym_non_null_expression] = STATE(1081), - [sym_as_expression] = STATE(1081), - [sym_internal_module] = STATE(1081), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2410), - [sym_constructor_type] = STATE(2410), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(2424), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2902), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2410), - [sym_intersection_type] = STATE(2410), - [sym_function_type] = STATE(2410), + [sym_formal_parameters] = STATE(2548), + [sym_non_null_expression] = STATE(1168), + [sym_as_expression] = STATE(1168), + [sym_internal_module] = STATE(1168), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2465), + [sym_constructor_type] = STATE(2465), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(2376), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2999), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2465), + [sym_intersection_type] = STATE(2465), + [sym_function_type] = STATE(2465), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(767), + [sym_identifier] = ACTIONS(627), [anon_sym_export] = ACTIONS(583), [anon_sym_STAR] = ACTIONS(451), [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(771), + [anon_sym_typeof] = ACTIONS(631), [anon_sym_import] = ACTIONS(591), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(633), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(635), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(777), - [anon_sym_QMARK] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(779), - [anon_sym_DASH] = ACTIONS(779), + [anon_sym_new] = ACTIONS(637), + [anon_sym_QMARK] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(781), + [anon_sym_void] = ACTIONS(641), [anon_sym_delete] = ACTIONS(19), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -19552,11 +19419,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(783), - [sym_this] = ACTIONS(785), + [sym_number] = ACTIONS(643), + [sym_this] = ACTIONS(645), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(787), - [sym_false] = ACTIONS(787), + [sym_true] = ACTIONS(647), + [sym_false] = ACTIONS(647), [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), @@ -19568,231 +19435,585 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(583), [anon_sym_protected] = ACTIONS(583), [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(789), - [anon_sym_number] = ACTIONS(789), - [anon_sym_boolean] = ACTIONS(789), - [anon_sym_string] = ACTIONS(789), - [anon_sym_symbol] = ACTIONS(789), + [anon_sym_any] = ACTIONS(649), + [anon_sym_number] = ACTIONS(649), + [anon_sym_boolean] = ACTIONS(649), + [anon_sym_string] = ACTIONS(649), + [anon_sym_symbol] = ACTIONS(649), [sym_readonly] = ACTIONS(583), [anon_sym_keyof] = ACTIONS(521), [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, + [70] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1288), + [sym_yield_expression] = STATE(1288), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1288), + [sym_jsx_fragment] = STATE(1288), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1288), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1288), + [sym_await_expression] = STATE(1288), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1288), + [sym_augmented_assignment_expression] = STATE(1288), + [sym_ternary_expression] = STATE(1288), + [sym_binary_expression] = STATE(1288), + [sym_unary_expression] = STATE(1288), + [sym_update_expression] = STATE(1288), + [sym_string] = STATE(1466), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2548), + [sym_non_null_expression] = STATE(1288), + [sym_as_expression] = STATE(1288), + [sym_internal_module] = STATE(1288), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2465), + [sym_constructor_type] = STATE(2465), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(2376), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2999), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2465), + [sym_intersection_type] = STATE(2465), + [sym_function_type] = STATE(2465), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(651), + [anon_sym_export] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(657), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(463), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(667), + [anon_sym_QMARK] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(669), + [anon_sym_DASH] = ACTIONS(669), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(671), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(677), + [sym_this] = ACTIONS(679), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(683), + [anon_sym_number] = ACTIONS(683), + [anon_sym_boolean] = ACTIONS(683), + [anon_sym_string] = ACTIONS(683), + [anon_sym_symbol] = ACTIONS(683), + [sym_readonly] = ACTIONS(653), + [anon_sym_keyof] = ACTIONS(521), + [anon_sym_LBRACE_PIPE] = ACTIONS(523), + }, + [71] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1209), + [sym_yield_expression] = STATE(1209), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1209), + [sym_jsx_fragment] = STATE(1209), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1209), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1209), + [sym_await_expression] = STATE(1209), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1209), + [sym_augmented_assignment_expression] = STATE(1209), + [sym_ternary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_unary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_string] = STATE(1115), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2548), + [sym_non_null_expression] = STATE(1209), + [sym_as_expression] = STATE(1209), + [sym_internal_module] = STATE(1209), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2465), + [sym_constructor_type] = STATE(2465), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(2376), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2999), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2465), + [sym_intersection_type] = STATE(2465), + [sym_function_type] = STATE(2465), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(685), + [anon_sym_export] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(691), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(463), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(703), + [anon_sym_QMARK] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(705), + [anon_sym_DASH] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(707), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(619), + [sym_this] = ACTIONS(621), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(713), + [anon_sym_number] = ACTIONS(713), + [anon_sym_boolean] = ACTIONS(713), + [anon_sym_string] = ACTIONS(713), + [anon_sym_symbol] = ACTIONS(713), + [sym_readonly] = ACTIONS(687), + [anon_sym_keyof] = ACTIONS(521), + [anon_sym_LBRACE_PIPE] = ACTIONS(523), + }, + [72] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1225), + [sym_yield_expression] = STATE(1225), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1225), + [sym_jsx_fragment] = STATE(1225), + [sym_jsx_opening_element] = STATE(2029), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1225), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1225), + [sym_await_expression] = STATE(1225), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1225), + [sym_augmented_assignment_expression] = STATE(1225), + [sym_ternary_expression] = STATE(1225), + [sym_binary_expression] = STATE(1225), + [sym_unary_expression] = STATE(1225), + [sym_update_expression] = STATE(1225), + [sym_string] = STATE(1680), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2548), + [sym_non_null_expression] = STATE(1225), + [sym_as_expression] = STATE(1225), + [sym_internal_module] = STATE(1225), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2465), + [sym_constructor_type] = STATE(2465), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(2376), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2999), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2465), + [sym_intersection_type] = STATE(2465), + [sym_function_type] = STATE(2465), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(715), + [anon_sym_export] = ACTIONS(717), + [anon_sym_STAR] = ACTIONS(451), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(723), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(735), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(747), + [anon_sym_QMARK] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(751), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(763), + [sym_this] = ACTIONS(765), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(769), + [sym_false] = ACTIONS(769), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(771), + [anon_sym_number] = ACTIONS(771), + [anon_sym_boolean] = ACTIONS(771), + [anon_sym_string] = ACTIONS(771), + [anon_sym_symbol] = ACTIONS(771), + [sym_readonly] = ACTIONS(717), + [anon_sym_keyof] = ACTIONS(521), + [anon_sym_LBRACE_PIPE] = ACTIONS(523), + }, [73] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1410), - [sym_yield_expression] = STATE(1410), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1410), - [sym_jsx_fragment] = STATE(1410), - [sym_jsx_opening_element] = STATE(2057), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1410), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1410), - [sym_await_expression] = STATE(1410), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1410), - [sym_augmented_assignment_expression] = STATE(1410), - [sym_ternary_expression] = STATE(1410), - [sym_binary_expression] = STATE(1410), - [sym_unary_expression] = STATE(1410), - [sym_update_expression] = STATE(1410), - [sym_string] = STATE(1670), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1385), + [sym_yield_expression] = STATE(1385), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1385), + [sym_jsx_fragment] = STATE(1385), + [sym_jsx_opening_element] = STATE(2038), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1385), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1385), + [sym_await_expression] = STATE(1385), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1385), + [sym_augmented_assignment_expression] = STATE(1385), + [sym_ternary_expression] = STATE(1385), + [sym_binary_expression] = STATE(1385), + [sym_unary_expression] = STATE(1385), + [sym_update_expression] = STATE(1385), + [sym_string] = STATE(1651), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2541), - [sym_non_null_expression] = STATE(1410), - [sym_as_expression] = STATE(1410), - [sym_internal_module] = STATE(1410), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2410), - [sym_constructor_type] = STATE(2410), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(2424), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2902), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2410), - [sym_intersection_type] = STATE(2410), - [sym_function_type] = STATE(2410), + [sym_formal_parameters] = STATE(2548), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1385), + [sym_internal_module] = STATE(1385), + [sym_nested_type_identifier] = STATE(1924), + [sym__type] = STATE(2465), + [sym_constructor_type] = STATE(2465), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(2376), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2999), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2465), + [sym_intersection_type] = STATE(2465), + [sym_function_type] = STATE(2465), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(791), - [anon_sym_export] = ACTIONS(793), + [sym_identifier] = ACTIONS(773), + [anon_sym_export] = ACTIONS(775), [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(769), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(797), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(779), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(773), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(635), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(807), - [anon_sym_QMARK] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(811), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(793), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(817), - [sym_this] = ACTIONS(819), + [sym_number] = ACTIONS(799), + [sym_this] = ACTIONS(801), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(821), - [sym_false] = ACTIONS(821), + [sym_true] = ACTIONS(803), + [sym_false] = ACTIONS(803), [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(823), - [anon_sym_number] = ACTIONS(823), - [anon_sym_boolean] = ACTIONS(823), - [anon_sym_string] = ACTIONS(823), - [anon_sym_symbol] = ACTIONS(823), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(805), + [anon_sym_number] = ACTIONS(805), + [anon_sym_boolean] = ACTIONS(805), + [anon_sym_string] = ACTIONS(805), + [anon_sym_symbol] = ACTIONS(805), + [sym_readonly] = ACTIONS(775), [anon_sym_keyof] = ACTIONS(521), [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [74] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(995), - [sym_yield_expression] = STATE(995), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(995), - [sym_jsx_fragment] = STATE(995), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(995), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(995), - [sym_await_expression] = STATE(995), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(995), - [sym_augmented_assignment_expression] = STATE(995), - [sym_ternary_expression] = STATE(995), - [sym_binary_expression] = STATE(995), - [sym_unary_expression] = STATE(995), - [sym_update_expression] = STATE(995), - [sym_string] = STATE(1164), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1328), + [sym_yield_expression] = STATE(1328), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1328), + [sym_jsx_fragment] = STATE(1328), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3090), + [sym_jsx_self_closing_element] = STATE(1328), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1328), + [sym_await_expression] = STATE(1328), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1328), + [sym_augmented_assignment_expression] = STATE(1328), + [sym_ternary_expression] = STATE(1328), + [sym_binary_expression] = STATE(1328), + [sym_unary_expression] = STATE(1328), + [sym_update_expression] = STATE(1328), + [sym_string] = STATE(1383), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2541), - [sym_non_null_expression] = STATE(995), - [sym_as_expression] = STATE(995), - [sym_internal_module] = STATE(995), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2410), - [sym_constructor_type] = STATE(2410), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(2424), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2902), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2410), - [sym_intersection_type] = STATE(2410), - [sym_function_type] = STATE(2410), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(825), + [sym_formal_parameters] = STATE(2594), + [sym_non_null_expression] = STATE(1328), + [sym_as_expression] = STATE(1328), + [sym_internal_module] = STATE(1328), + [sym_nested_type_identifier] = STATE(1950), + [sym__type] = STATE(2048), + [sym_constructor_type] = STATE(2048), + [sym__primary_type] = STATE(2002), + [sym_generic_type] = STATE(2002), + [sym_type_predicate] = STATE(2002), + [sym_type_query] = STATE(2002), + [sym_index_type_query] = STATE(2002), + [sym_lookup_type] = STATE(2002), + [sym_literal_type] = STATE(2002), + [sym__number] = STATE(2003), + [sym_existential_type] = STATE(2002), + [sym_flow_maybe_type] = STATE(2002), + [sym_parenthesized_type] = STATE(2002), + [sym_predefined_type] = STATE(2002), + [sym_object_type] = STATE(2002), + [sym_type_parameters] = STATE(3060), + [sym_array_type] = STATE(2002), + [sym_tuple_type] = STATE(2002), + [sym_union_type] = STATE(2048), + [sym_intersection_type] = STATE(2048), + [sym_function_type] = STATE(2048), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(807), [anon_sym_export] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(451), + [anon_sym_STAR] = ACTIONS(809), [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(635), + [anon_sym_LBRACE] = ACTIONS(811), [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(827), + [anon_sym_typeof] = ACTIONS(813), [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(817), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(829), - [anon_sym_QMARK] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), + [anon_sym_new] = ACTIONS(819), + [anon_sym_QMARK] = ACTIONS(821), + [anon_sym_AMP] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(825), + [anon_sym_PLUS] = ACTIONS(827), + [anon_sym_DASH] = ACTIONS(827), [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(495), + [anon_sym_void] = ACTIONS(829), [anon_sym_delete] = ACTIONS(497), [anon_sym_PLUS_PLUS] = ACTIONS(499), [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(665), - [sym_this] = ACTIONS(667), + [sym_number] = ACTIONS(831), + [sym_this] = ACTIONS(833), [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), + [sym_true] = ACTIONS(835), + [sym_false] = ACTIONS(835), [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), @@ -19804,196 +20025,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(527), [anon_sym_protected] = ACTIONS(527), [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(833), - [anon_sym_number] = ACTIONS(833), - [anon_sym_boolean] = ACTIONS(833), - [anon_sym_string] = ACTIONS(833), - [anon_sym_symbol] = ACTIONS(833), + [anon_sym_any] = ACTIONS(837), + [anon_sym_number] = ACTIONS(837), + [anon_sym_boolean] = ACTIONS(837), + [anon_sym_string] = ACTIONS(837), + [anon_sym_symbol] = ACTIONS(837), [sym_readonly] = ACTIONS(527), - [anon_sym_keyof] = ACTIONS(521), - [anon_sym_LBRACE_PIPE] = ACTIONS(523), + [anon_sym_keyof] = ACTIONS(839), + [anon_sym_LBRACE_PIPE] = ACTIONS(841), }, [75] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1242), - [sym_yield_expression] = STATE(1242), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1242), - [sym_jsx_fragment] = STATE(1242), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1242), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1242), - [sym_await_expression] = STATE(1242), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1242), - [sym_augmented_assignment_expression] = STATE(1242), - [sym_ternary_expression] = STATE(1242), - [sym_binary_expression] = STATE(1242), - [sym_unary_expression] = STATE(1242), - [sym_update_expression] = STATE(1242), - [sym_string] = STATE(1436), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2541), - [sym_non_null_expression] = STATE(1242), - [sym_as_expression] = STATE(1242), - [sym_internal_module] = STATE(1242), - [sym_nested_type_identifier] = STATE(1923), - [sym__type] = STATE(2410), - [sym_constructor_type] = STATE(2410), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(2424), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2902), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2410), - [sym_intersection_type] = STATE(2410), - [sym_function_type] = STATE(2410), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(835), - [anon_sym_export] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(635), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(837), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(463), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(471), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(839), - [anon_sym_QMARK] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_PIPE] = ACTIONS(655), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(843), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(845), - [sym_this] = ACTIONS(847), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(849), - [sym_false] = ACTIONS(849), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(851), - [anon_sym_number] = ACTIONS(851), - [anon_sym_boolean] = ACTIONS(851), - [anon_sym_string] = ACTIONS(851), - [anon_sym_symbol] = ACTIONS(851), - [sym_readonly] = ACTIONS(605), - [anon_sym_keyof] = ACTIONS(521), - [anon_sym_LBRACE_PIPE] = ACTIONS(523), - }, - [76] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1389), - [sym_yield_expression] = STATE(1389), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1389), - [sym_jsx_fragment] = STATE(1389), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1389), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1389), - [sym_await_expression] = STATE(1389), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1389), - [sym_augmented_assignment_expression] = STATE(1389), - [sym_ternary_expression] = STATE(1389), - [sym_binary_expression] = STATE(1389), - [sym_unary_expression] = STATE(1389), - [sym_update_expression] = STATE(1389), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1199), + [sym_yield_expression] = STATE(1199), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1199), + [sym_jsx_fragment] = STATE(1199), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1199), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1199), + [sym_await_expression] = STATE(1199), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1199), + [sym_augmented_assignment_expression] = STATE(1199), + [sym_ternary_expression] = STATE(1199), + [sym_binary_expression] = STATE(1199), + [sym_unary_expression] = STATE(1199), + [sym_update_expression] = STATE(1199), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1389), - [sym_as_expression] = STATE(1389), - [sym_internal_module] = STATE(1389), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(855), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1199), + [sym_as_expression] = STATE(1199), + [sym_internal_module] = STATE(1199), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(845), [anon_sym_as] = ACTIONS(561), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(565), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), [anon_sym_in] = ACTIONS(561), - [anon_sym_SEMI] = ACTIONS(565), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(595), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(573), [anon_sym_GT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_DOT] = ACTIONS(561), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_new] = ACTIONS(859), + [anon_sym_new] = ACTIONS(849), [anon_sym_QMARK] = ACTIONS(561), [anon_sym_AMP_AMP] = ACTIONS(565), [anon_sym_PIPE_PIPE] = ACTIONS(565), @@ -20003,8 +20108,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(561), [anon_sym_CARET] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), [anon_sym_PERCENT] = ACTIONS(565), [anon_sym_STAR_STAR] = ACTIONS(565), [anon_sym_LT_EQ] = ACTIONS(565), @@ -20015,102 +20120,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(565), [anon_sym_QMARK_QMARK] = ACTIONS(565), [anon_sym_instanceof] = ACTIONS(561), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), - [sym__automatic_semicolon] = ACTIONS(565), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [77] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1205), - [sym_yield_expression] = STATE(1205), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1205), - [sym_jsx_fragment] = STATE(1205), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1205), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1205), - [sym_await_expression] = STATE(1205), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1205), - [sym_augmented_assignment_expression] = STATE(1205), - [sym_ternary_expression] = STATE(1205), - [sym_binary_expression] = STATE(1205), - [sym_unary_expression] = STATE(1205), - [sym_update_expression] = STATE(1205), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [76] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1309), + [sym_yield_expression] = STATE(1309), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1309), + [sym_jsx_fragment] = STATE(1309), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1309), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1309), + [sym_await_expression] = STATE(1309), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1309), + [sym_augmented_assignment_expression] = STATE(1309), + [sym_ternary_expression] = STATE(1309), + [sym_binary_expression] = STATE(1309), + [sym_unary_expression] = STATE(1309), + [sym_update_expression] = STATE(1309), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1205), - [sym_as_expression] = STATE(1205), - [sym_internal_module] = STATE(1205), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(865), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1309), + [sym_as_expression] = STATE(1309), + [sym_internal_module] = STATE(1309), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_STAR] = ACTIONS(855), [anon_sym_as] = ACTIONS(561), - [anon_sym_namespace] = ACTIONS(633), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(857), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), + [anon_sym_await] = ACTIONS(695), [anon_sym_in] = ACTIONS(561), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(573), [anon_sym_GT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_DOT] = ACTIONS(561), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), [anon_sym_QMARK_DOT] = ACTIONS(565), - [anon_sym_new] = ACTIONS(869), + [anon_sym_new] = ACTIONS(859), [anon_sym_QMARK] = ACTIONS(561), [anon_sym_AMP_AMP] = ACTIONS(565), [anon_sym_PIPE_PIPE] = ACTIONS(565), @@ -20120,8 +20224,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(561), [anon_sym_CARET] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(561), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), [anon_sym_PERCENT] = ACTIONS(565), [anon_sym_STAR_STAR] = ACTIONS(565), [anon_sym_LT_EQ] = ACTIONS(565), @@ -20132,11 +20236,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(565), [anon_sym_QMARK_QMARK] = ACTIONS(565), [anon_sym_instanceof] = ACTIONS(561), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -20149,83 +20253,200 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), [anon_sym_implements] = ACTIONS(561), - [sym_readonly] = ACTIONS(631), + [sym_readonly] = ACTIONS(687), }, - [78] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1252), - [sym_yield_expression] = STATE(1252), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1252), - [sym_jsx_fragment] = STATE(1252), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1252), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1252), - [sym_await_expression] = STATE(1252), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1252), - [sym_augmented_assignment_expression] = STATE(1252), - [sym_ternary_expression] = STATE(1252), - [sym_binary_expression] = STATE(1252), - [sym_unary_expression] = STATE(1252), - [sym_update_expression] = STATE(1252), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1252), - [sym_as_expression] = STATE(1252), - [sym_internal_module] = STATE(1252), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_STAR] = ACTIONS(875), + [77] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1340), + [sym_yield_expression] = STATE(1340), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1340), + [sym_jsx_fragment] = STATE(1340), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1340), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1340), + [sym_await_expression] = STATE(1340), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1340), + [sym_augmented_assignment_expression] = STATE(1340), + [sym_ternary_expression] = STATE(1340), + [sym_binary_expression] = STATE(1340), + [sym_unary_expression] = STATE(1340), + [sym_update_expression] = STATE(1340), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1340), + [sym_as_expression] = STATE(1340), + [sym_internal_module] = STATE(1340), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(865), [anon_sym_as] = ACTIONS(561), - [anon_sym_namespace] = ACTIONS(677), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(783), + [anon_sym_in] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(565), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(595), + [anon_sym_GT] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(561), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(787), + [anon_sym_function] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(565), + [anon_sym_new] = ACTIONS(869), + [anon_sym_QMARK] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(561), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(561), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(561), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_EQ_EQ] = ACTIONS(561), + [anon_sym_EQ_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(561), + [anon_sym_BANG_EQ_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_QMARK_QMARK] = ACTIONS(565), + [anon_sym_instanceof] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), + [sym__automatic_semicolon] = ACTIONS(565), + }, + [78] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1200), + [sym_yield_expression] = STATE(1200), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1200), + [sym_jsx_fragment] = STATE(1200), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1200), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1200), + [sym_await_expression] = STATE(1200), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1200), + [sym_augmented_assignment_expression] = STATE(1200), + [sym_ternary_expression] = STATE(1200), + [sym_binary_expression] = STATE(1200), + [sym_unary_expression] = STATE(1200), + [sym_update_expression] = STATE(1200), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1200), + [sym_as_expression] = STATE(1200), + [sym_internal_module] = STATE(1200), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_as] = ACTIONS(561), + [anon_sym_namespace] = ACTIONS(719), [anon_sym_LBRACE] = ACTIONS(877), [anon_sym_COMMA] = ACTIONS(565), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), [anon_sym_BANG] = ACTIONS(879), [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), + [anon_sym_await] = ACTIONS(731), [anon_sym_in] = ACTIONS(561), - [anon_sym_yield] = ACTIONS(691), + [anon_sym_yield] = ACTIONS(733), [anon_sym_LBRACK] = ACTIONS(883), [anon_sym_LT] = ACTIONS(885), [anon_sym_GT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(697), + [anon_sym_SLASH] = ACTIONS(739), [anon_sym_DOT] = ACTIONS(561), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), [anon_sym_QMARK_DOT] = ACTIONS(565), [anon_sym_new] = ACTIONS(887), [anon_sym_QMARK] = ACTIONS(561), @@ -20249,50 +20470,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(565), [anon_sym_QMARK_QMARK] = ACTIONS(565), [anon_sym_instanceof] = ACTIONS(561), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), [anon_sym_LBRACE_PIPE] = ACTIONS(565), }, [79] = { - [sym_statement_block] = STATE(97), [ts_builtin_sym_end] = ACTIONS(893), [sym_identifier] = ACTIONS(895), [anon_sym_export] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(895), + [anon_sym_STAR] = ACTIONS(897), [anon_sym_default] = ACTIONS(895), - [anon_sym_as] = ACTIONS(895), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_as] = ACTIONS(897), [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(899), [anon_sym_RBRACE] = ACTIONS(893), [anon_sym_type] = ACTIONS(895), [anon_sym_typeof] = ACTIONS(895), @@ -20307,7 +20528,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(895), [anon_sym_LPAREN] = ACTIONS(893), [anon_sym_await] = ACTIONS(895), - [anon_sym_in] = ACTIONS(895), + [anon_sym_in] = ACTIONS(897), [anon_sym_while] = ACTIONS(895), [anon_sym_do] = ACTIONS(895), [anon_sym_try] = ACTIONS(895), @@ -20322,35 +20543,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(895), [anon_sym_LBRACK] = ACTIONS(893), [anon_sym_LT] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(897), [anon_sym_SLASH] = ACTIONS(895), - [anon_sym_DOT] = ACTIONS(895), + [anon_sym_DOT] = ACTIONS(897), [anon_sym_class] = ACTIONS(895), [anon_sym_async] = ACTIONS(895), [anon_sym_function] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(893), + [anon_sym_QMARK_DOT] = ACTIONS(899), [anon_sym_new] = ACTIONS(895), - [anon_sym_QMARK] = ACTIONS(895), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(895), - [anon_sym_GT_GT_GT] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(895), - [anon_sym_CARET] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_QMARK] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(899), + [anon_sym_PIPE_PIPE] = ACTIONS(899), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_GT_GT_GT] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(899), + [anon_sym_AMP] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(899), + [anon_sym_PIPE] = ACTIONS(897), [anon_sym_PLUS] = ACTIONS(895), [anon_sym_DASH] = ACTIONS(895), - [anon_sym_PERCENT] = ACTIONS(893), - [anon_sym_STAR_STAR] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_EQ_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_QMARK_QMARK] = ACTIONS(893), - [anon_sym_instanceof] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(899), + [anon_sym_STAR_STAR] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ_EQ] = ACTIONS(899), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_QMARK_QMARK] = ACTIONS(899), + [anon_sym_instanceof] = ACTIONS(897), [anon_sym_TILDE] = ACTIONS(893), [anon_sym_void] = ACTIONS(895), [anon_sym_delete] = ACTIONS(895), @@ -20385,217 +20606,217 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(895), [anon_sym_enum] = ACTIONS(895), [sym_readonly] = ACTIONS(895), - [sym__automatic_semicolon] = ACTIONS(893), + [sym__automatic_semicolon] = ACTIONS(901), }, [80] = { - [sym_statement_block] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(893), - [sym_identifier] = ACTIONS(895), - [anon_sym_export] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(895), - [anon_sym_default] = ACTIONS(895), - [anon_sym_as] = ACTIONS(895), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(893), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_type] = ACTIONS(895), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_let] = ACTIONS(895), - [anon_sym_const] = ACTIONS(895), - [anon_sym_BANG] = ACTIONS(895), - [anon_sym_if] = ACTIONS(895), - [anon_sym_else] = ACTIONS(895), - [anon_sym_switch] = ACTIONS(895), - [anon_sym_for] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_await] = ACTIONS(895), - [anon_sym_in] = ACTIONS(895), - [anon_sym_while] = ACTIONS(895), - [anon_sym_do] = ACTIONS(895), - [anon_sym_try] = ACTIONS(895), - [anon_sym_with] = ACTIONS(895), - [anon_sym_break] = ACTIONS(895), - [anon_sym_continue] = ACTIONS(895), - [anon_sym_debugger] = ACTIONS(895), - [anon_sym_return] = ACTIONS(895), - [anon_sym_throw] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_case] = ACTIONS(895), - [anon_sym_yield] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_LT] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(895), - [anon_sym_DOT] = ACTIONS(899), - [anon_sym_class] = ACTIONS(895), - [anon_sym_async] = ACTIONS(895), - [anon_sym_function] = ACTIONS(895), - [anon_sym_QMARK_DOT] = ACTIONS(893), - [anon_sym_new] = ACTIONS(895), - [anon_sym_QMARK] = ACTIONS(895), - [anon_sym_AMP_AMP] = ACTIONS(893), - [anon_sym_PIPE_PIPE] = ACTIONS(893), - [anon_sym_GT_GT] = ACTIONS(895), - [anon_sym_GT_GT_GT] = ACTIONS(893), - [anon_sym_LT_LT] = ACTIONS(893), - [anon_sym_AMP] = ACTIONS(895), - [anon_sym_CARET] = ACTIONS(893), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_PERCENT] = ACTIONS(893), - [anon_sym_STAR_STAR] = ACTIONS(893), - [anon_sym_LT_EQ] = ACTIONS(893), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_EQ_EQ_EQ] = ACTIONS(893), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ_EQ] = ACTIONS(893), - [anon_sym_GT_EQ] = ACTIONS(893), - [anon_sym_QMARK_QMARK] = ACTIONS(893), - [anon_sym_instanceof] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(893), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(893), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(893), - [sym_number] = ACTIONS(893), - [sym_this] = ACTIONS(895), - [sym_super] = ACTIONS(895), - [sym_true] = ACTIONS(895), - [sym_false] = ACTIONS(895), - [sym_null] = ACTIONS(895), - [sym_undefined] = ACTIONS(895), - [anon_sym_AT] = ACTIONS(893), - [anon_sym_static] = ACTIONS(895), - [anon_sym_abstract] = ACTIONS(895), - [anon_sym_get] = ACTIONS(895), - [anon_sym_set] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [anon_sym_public] = ACTIONS(895), - [anon_sym_private] = ACTIONS(895), - [anon_sym_protected] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_any] = ACTIONS(895), - [anon_sym_number] = ACTIONS(895), - [anon_sym_boolean] = ACTIONS(895), - [anon_sym_string] = ACTIONS(895), - [anon_sym_symbol] = ACTIONS(895), - [anon_sym_interface] = ACTIONS(895), - [anon_sym_enum] = ACTIONS(895), - [sym_readonly] = ACTIONS(895), - [sym__automatic_semicolon] = ACTIONS(893), + [sym_statement_block] = STATE(100), + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(905), + [anon_sym_export] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_as] = ACTIONS(905), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_type] = ACTIONS(905), + [anon_sym_typeof] = ACTIONS(905), + [anon_sym_import] = ACTIONS(905), + [anon_sym_var] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_else] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_await] = ACTIONS(905), + [anon_sym_in] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_try] = ACTIONS(905), + [anon_sym_with] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_debugger] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_throw] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_case] = ACTIONS(905), + [anon_sym_yield] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(905), + [anon_sym_class] = ACTIONS(905), + [anon_sym_async] = ACTIONS(905), + [anon_sym_function] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(903), + [anon_sym_new] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(903), + [anon_sym_PIPE_PIPE] = ACTIONS(903), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_GT_GT_GT] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_CARET] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PERCENT] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_EQ_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_QMARK_QMARK] = ACTIONS(903), + [anon_sym_instanceof] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_void] = ACTIONS(905), + [anon_sym_delete] = ACTIONS(905), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(903), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(903), + [sym_number] = ACTIONS(903), + [sym_this] = ACTIONS(905), + [sym_super] = ACTIONS(905), + [sym_true] = ACTIONS(905), + [sym_false] = ACTIONS(905), + [sym_null] = ACTIONS(905), + [sym_undefined] = ACTIONS(905), + [anon_sym_AT] = ACTIONS(903), + [anon_sym_static] = ACTIONS(905), + [anon_sym_abstract] = ACTIONS(905), + [anon_sym_get] = ACTIONS(905), + [anon_sym_set] = ACTIONS(905), + [anon_sym_declare] = ACTIONS(905), + [anon_sym_public] = ACTIONS(905), + [anon_sym_private] = ACTIONS(905), + [anon_sym_protected] = ACTIONS(905), + [anon_sym_module] = ACTIONS(905), + [anon_sym_any] = ACTIONS(905), + [anon_sym_number] = ACTIONS(905), + [anon_sym_boolean] = ACTIONS(905), + [anon_sym_string] = ACTIONS(905), + [anon_sym_symbol] = ACTIONS(905), + [anon_sym_interface] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [sym_readonly] = ACTIONS(905), + [sym__automatic_semicolon] = ACTIONS(903), }, [81] = { - [ts_builtin_sym_end] = ACTIONS(901), - [sym_identifier] = ACTIONS(903), - [anon_sym_export] = ACTIONS(903), + [sym_statement_block] = STATE(100), + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(905), + [anon_sym_export] = ACTIONS(905), [anon_sym_STAR] = ACTIONS(905), - [anon_sym_default] = ACTIONS(903), - [anon_sym_EQ] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), [anon_sym_as] = ACTIONS(905), - [anon_sym_namespace] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_COMMA] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_type] = ACTIONS(903), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_import] = ACTIONS(903), - [anon_sym_var] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_else] = ACTIONS(903), - [anon_sym_switch] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_await] = ACTIONS(903), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_type] = ACTIONS(905), + [anon_sym_typeof] = ACTIONS(905), + [anon_sym_import] = ACTIONS(905), + [anon_sym_var] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_else] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_await] = ACTIONS(905), [anon_sym_in] = ACTIONS(905), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_try] = ACTIONS(903), - [anon_sym_with] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_debugger] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_throw] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_case] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(903), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_try] = ACTIONS(905), + [anon_sym_with] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_debugger] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_throw] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_case] = ACTIONS(905), + [anon_sym_yield] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(905), [anon_sym_GT] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(905), - [anon_sym_class] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_function] = ACTIONS(903), - [anon_sym_QMARK_DOT] = ACTIONS(907), - [anon_sym_new] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(909), + [anon_sym_class] = ACTIONS(905), + [anon_sym_async] = ACTIONS(905), + [anon_sym_function] = ACTIONS(905), + [anon_sym_QMARK_DOT] = ACTIONS(903), + [anon_sym_new] = ACTIONS(905), [anon_sym_QMARK] = ACTIONS(905), - [anon_sym_AMP_AMP] = ACTIONS(907), - [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(903), + [anon_sym_PIPE_PIPE] = ACTIONS(903), [anon_sym_GT_GT] = ACTIONS(905), - [anon_sym_GT_GT_GT] = ACTIONS(907), - [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT_GT] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(903), [anon_sym_AMP] = ACTIONS(905), - [anon_sym_CARET] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(903), [anon_sym_PIPE] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_STAR_STAR] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_PERCENT] = ACTIONS(903), + [anon_sym_STAR_STAR] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_EQ_EQ_EQ] = ACTIONS(907), + [anon_sym_EQ_EQ_EQ] = ACTIONS(903), [anon_sym_BANG_EQ] = ACTIONS(905), - [anon_sym_BANG_EQ_EQ] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_QMARK_QMARK] = ACTIONS(907), + [anon_sym_BANG_EQ_EQ] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_QMARK_QMARK] = ACTIONS(903), [anon_sym_instanceof] = ACTIONS(905), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_void] = ACTIONS(903), - [anon_sym_delete] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_SQUOTE] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(901), - [sym_number] = ACTIONS(901), - [sym_this] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_true] = ACTIONS(903), - [sym_false] = ACTIONS(903), - [sym_null] = ACTIONS(903), - [sym_undefined] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_static] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(903), - [anon_sym_get] = ACTIONS(903), - [anon_sym_set] = ACTIONS(903), - [anon_sym_declare] = ACTIONS(903), - [anon_sym_public] = ACTIONS(903), - [anon_sym_private] = ACTIONS(903), - [anon_sym_protected] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_any] = ACTIONS(903), - [anon_sym_number] = ACTIONS(903), - [anon_sym_boolean] = ACTIONS(903), - [anon_sym_string] = ACTIONS(903), - [anon_sym_symbol] = ACTIONS(903), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [sym_readonly] = ACTIONS(903), - [sym__automatic_semicolon] = ACTIONS(909), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_void] = ACTIONS(905), + [anon_sym_delete] = ACTIONS(905), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(903), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(903), + [sym_number] = ACTIONS(903), + [sym_this] = ACTIONS(905), + [sym_super] = ACTIONS(905), + [sym_true] = ACTIONS(905), + [sym_false] = ACTIONS(905), + [sym_null] = ACTIONS(905), + [sym_undefined] = ACTIONS(905), + [anon_sym_AT] = ACTIONS(903), + [anon_sym_static] = ACTIONS(905), + [anon_sym_abstract] = ACTIONS(905), + [anon_sym_get] = ACTIONS(905), + [anon_sym_set] = ACTIONS(905), + [anon_sym_declare] = ACTIONS(905), + [anon_sym_public] = ACTIONS(905), + [anon_sym_private] = ACTIONS(905), + [anon_sym_protected] = ACTIONS(905), + [anon_sym_module] = ACTIONS(905), + [anon_sym_any] = ACTIONS(905), + [anon_sym_number] = ACTIONS(905), + [anon_sym_boolean] = ACTIONS(905), + [anon_sym_string] = ACTIONS(905), + [anon_sym_symbol] = ACTIONS(905), + [anon_sym_interface] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [sym_readonly] = ACTIONS(905), + [sym__automatic_semicolon] = ACTIONS(903), }, [82] = { [ts_builtin_sym_end] = ACTIONS(911), @@ -20705,12 +20926,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(921), [sym_identifier] = ACTIONS(923), [anon_sym_export] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), [anon_sym_default] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), + [anon_sym_as] = ACTIONS(925), [anon_sym_namespace] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(927), [anon_sym_RBRACE] = ACTIONS(921), [anon_sym_type] = ACTIONS(923), [anon_sym_typeof] = ACTIONS(923), @@ -20725,7 +20946,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(923), [anon_sym_LPAREN] = ACTIONS(921), [anon_sym_await] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), + [anon_sym_in] = ACTIONS(925), [anon_sym_while] = ACTIONS(923), [anon_sym_do] = ACTIONS(923), [anon_sym_try] = ACTIONS(923), @@ -20740,35 +20961,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(923), [anon_sym_LBRACK] = ACTIONS(921), [anon_sym_LT] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(925), [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(925), [anon_sym_class] = ACTIONS(923), [anon_sym_async] = ACTIONS(923), [anon_sym_function] = ACTIONS(923), - [anon_sym_QMARK_DOT] = ACTIONS(921), + [anon_sym_QMARK_DOT] = ACTIONS(927), [anon_sym_new] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(921), - [anon_sym_PIPE_PIPE] = ACTIONS(921), - [anon_sym_GT_GT] = ACTIONS(923), - [anon_sym_GT_GT_GT] = ACTIONS(921), - [anon_sym_LT_LT] = ACTIONS(921), - [anon_sym_AMP] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_AMP_AMP] = ACTIONS(927), + [anon_sym_PIPE_PIPE] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_GT_GT_GT] = ACTIONS(927), + [anon_sym_LT_LT] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(925), [anon_sym_PLUS] = ACTIONS(923), [anon_sym_DASH] = ACTIONS(923), - [anon_sym_PERCENT] = ACTIONS(921), - [anon_sym_STAR_STAR] = ACTIONS(921), - [anon_sym_LT_EQ] = ACTIONS(921), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_EQ_EQ_EQ] = ACTIONS(921), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ_EQ] = ACTIONS(921), - [anon_sym_GT_EQ] = ACTIONS(921), - [anon_sym_QMARK_QMARK] = ACTIONS(921), - [anon_sym_instanceof] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_QMARK_QMARK] = ACTIONS(927), + [anon_sym_instanceof] = ACTIONS(925), [anon_sym_TILDE] = ACTIONS(921), [anon_sym_void] = ACTIONS(923), [anon_sym_delete] = ACTIONS(923), @@ -20803,321 +21024,113 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(923), [anon_sym_enum] = ACTIONS(923), [sym_readonly] = ACTIONS(923), - [sym__automatic_semicolon] = ACTIONS(921), + [sym__automatic_semicolon] = ACTIONS(929), }, [84] = { - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [anon_sym_export] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(929), - [anon_sym_default] = ACTIONS(927), - [anon_sym_as] = ACTIONS(929), - [anon_sym_namespace] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_type] = ACTIONS(927), - [anon_sym_typeof] = ACTIONS(927), - [anon_sym_import] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_else] = ACTIONS(927), - [anon_sym_switch] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_await] = ACTIONS(927), - [anon_sym_in] = ACTIONS(929), - [anon_sym_while] = ACTIONS(927), - [anon_sym_do] = ACTIONS(927), - [anon_sym_try] = ACTIONS(927), - [anon_sym_with] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_debugger] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_throw] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_case] = ACTIONS(927), - [anon_sym_yield] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(929), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(929), - [anon_sym_class] = ACTIONS(927), - [anon_sym_async] = ACTIONS(927), - [anon_sym_function] = ACTIONS(927), - [anon_sym_QMARK_DOT] = ACTIONS(931), - [anon_sym_new] = ACTIONS(927), - [anon_sym_QMARK] = ACTIONS(929), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(929), - [anon_sym_GT_GT_GT] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(929), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(929), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(929), - [anon_sym_EQ_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(929), - [anon_sym_BANG_EQ_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_QMARK_QMARK] = ACTIONS(931), - [anon_sym_instanceof] = ACTIONS(929), - [anon_sym_TILDE] = ACTIONS(925), - [anon_sym_void] = ACTIONS(927), - [anon_sym_delete] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_DASH_DASH] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(925), - [sym_number] = ACTIONS(925), - [sym_this] = ACTIONS(927), - [sym_super] = ACTIONS(927), - [sym_true] = ACTIONS(927), - [sym_false] = ACTIONS(927), - [sym_null] = ACTIONS(927), - [sym_undefined] = ACTIONS(927), - [anon_sym_AT] = ACTIONS(925), - [anon_sym_static] = ACTIONS(927), - [anon_sym_abstract] = ACTIONS(927), - [anon_sym_get] = ACTIONS(927), - [anon_sym_set] = ACTIONS(927), - [anon_sym_declare] = ACTIONS(927), - [anon_sym_public] = ACTIONS(927), - [anon_sym_private] = ACTIONS(927), - [anon_sym_protected] = ACTIONS(927), - [anon_sym_module] = ACTIONS(927), - [anon_sym_any] = ACTIONS(927), - [anon_sym_number] = ACTIONS(927), - [anon_sym_boolean] = ACTIONS(927), - [anon_sym_string] = ACTIONS(927), - [anon_sym_symbol] = ACTIONS(927), - [anon_sym_interface] = ACTIONS(927), - [anon_sym_enum] = ACTIONS(927), - [sym_readonly] = ACTIONS(927), - [sym__automatic_semicolon] = ACTIONS(933), - }, - [85] = { - [ts_builtin_sym_end] = ACTIONS(935), - [sym_identifier] = ACTIONS(937), - [anon_sym_export] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_as] = ACTIONS(937), - [anon_sym_namespace] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_typeof] = ACTIONS(937), - [anon_sym_import] = ACTIONS(937), - [anon_sym_var] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_else] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_await] = ACTIONS(937), - [anon_sym_in] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [anon_sym_try] = ACTIONS(937), - [anon_sym_with] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_debugger] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_throw] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_case] = ACTIONS(937), - [anon_sym_yield] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_class] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(937), - [anon_sym_QMARK_DOT] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_AMP_AMP] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_GT_GT_GT] = ACTIONS(935), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_EQ_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_instanceof] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_void] = ACTIONS(937), - [anon_sym_delete] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(935), - [sym_number] = ACTIONS(935), - [sym_this] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_true] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [sym_undefined] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(935), - [anon_sym_static] = ACTIONS(937), - [anon_sym_abstract] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [anon_sym_declare] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_any] = ACTIONS(937), - [anon_sym_number] = ACTIONS(937), - [anon_sym_boolean] = ACTIONS(937), - [anon_sym_string] = ACTIONS(937), - [anon_sym_symbol] = ACTIONS(937), - [anon_sym_interface] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [sym_readonly] = ACTIONS(937), - [sym__automatic_semicolon] = ACTIONS(935), - }, - [86] = { - [ts_builtin_sym_end] = ACTIONS(935), - [sym_identifier] = ACTIONS(937), - [anon_sym_export] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_as] = ACTIONS(937), - [anon_sym_namespace] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_typeof] = ACTIONS(937), - [anon_sym_import] = ACTIONS(937), - [anon_sym_var] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_else] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_await] = ACTIONS(937), - [anon_sym_in] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [anon_sym_try] = ACTIONS(937), - [anon_sym_with] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_debugger] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_throw] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_case] = ACTIONS(937), - [anon_sym_yield] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_class] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(937), - [anon_sym_QMARK_DOT] = ACTIONS(935), - [anon_sym_new] = ACTIONS(937), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_AMP_AMP] = ACTIONS(935), - [anon_sym_PIPE_PIPE] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_GT_GT_GT] = ACTIONS(935), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_STAR_STAR] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_EQ_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_QMARK_QMARK] = ACTIONS(935), - [anon_sym_instanceof] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_void] = ACTIONS(937), - [anon_sym_delete] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(935), - [sym_number] = ACTIONS(935), - [sym_this] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_true] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [sym_undefined] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(935), - [anon_sym_static] = ACTIONS(937), - [anon_sym_abstract] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [anon_sym_declare] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_any] = ACTIONS(937), - [anon_sym_number] = ACTIONS(937), - [anon_sym_boolean] = ACTIONS(937), - [anon_sym_string] = ACTIONS(937), - [anon_sym_symbol] = ACTIONS(937), - [anon_sym_interface] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [sym_readonly] = ACTIONS(937), + [ts_builtin_sym_end] = ACTIONS(931), + [sym_identifier] = ACTIONS(933), + [anon_sym_export] = ACTIONS(933), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_default] = ACTIONS(933), + [anon_sym_as] = ACTIONS(935), + [anon_sym_namespace] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_type] = ACTIONS(933), + [anon_sym_typeof] = ACTIONS(933), + [anon_sym_import] = ACTIONS(933), + [anon_sym_var] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_await] = ACTIONS(933), + [anon_sym_in] = ACTIONS(935), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_try] = ACTIONS(933), + [anon_sym_with] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_throw] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_case] = ACTIONS(933), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_class] = ACTIONS(933), + [anon_sym_async] = ACTIONS(933), + [anon_sym_function] = ACTIONS(933), + [anon_sym_QMARK_DOT] = ACTIONS(937), + [anon_sym_new] = ACTIONS(933), + [anon_sym_QMARK] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_GT_GT_GT] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_STAR_STAR] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ_EQ] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_QMARK_QMARK] = ACTIONS(937), + [anon_sym_instanceof] = ACTIONS(935), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_void] = ACTIONS(933), + [anon_sym_delete] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [sym_this] = ACTIONS(933), + [sym_super] = ACTIONS(933), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), + [sym_undefined] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(931), + [anon_sym_static] = ACTIONS(933), + [anon_sym_abstract] = ACTIONS(933), + [anon_sym_get] = ACTIONS(933), + [anon_sym_set] = ACTIONS(933), + [anon_sym_declare] = ACTIONS(933), + [anon_sym_public] = ACTIONS(933), + [anon_sym_private] = ACTIONS(933), + [anon_sym_protected] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_any] = ACTIONS(933), + [anon_sym_number] = ACTIONS(933), + [anon_sym_boolean] = ACTIONS(933), + [anon_sym_string] = ACTIONS(933), + [anon_sym_symbol] = ACTIONS(933), + [anon_sym_interface] = ACTIONS(933), + [anon_sym_enum] = ACTIONS(933), + [sym_readonly] = ACTIONS(933), [sym__automatic_semicolon] = ACTIONS(939), }, - [87] = { + [85] = { [ts_builtin_sym_end] = ACTIONS(941), [sym_identifier] = ACTIONS(943), [anon_sym_export] = ACTIONS(943), @@ -21221,16 +21234,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(943), [sym__automatic_semicolon] = ACTIONS(949), }, - [88] = { + [86] = { [ts_builtin_sym_end] = ACTIONS(951), [sym_identifier] = ACTIONS(953), [anon_sym_export] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(955), [anon_sym_default] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), + [anon_sym_as] = ACTIONS(955), [anon_sym_namespace] = ACTIONS(953), [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_COMMA] = ACTIONS(957), [anon_sym_RBRACE] = ACTIONS(951), [anon_sym_type] = ACTIONS(953), [anon_sym_typeof] = ACTIONS(953), @@ -21245,7 +21258,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), [anon_sym_await] = ACTIONS(953), - [anon_sym_in] = ACTIONS(953), + [anon_sym_in] = ACTIONS(955), [anon_sym_while] = ACTIONS(953), [anon_sym_do] = ACTIONS(953), [anon_sym_try] = ACTIONS(953), @@ -21260,35 +21273,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(953), [anon_sym_LBRACK] = ACTIONS(951), [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(955), [anon_sym_SLASH] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(955), [anon_sym_class] = ACTIONS(953), [anon_sym_async] = ACTIONS(953), [anon_sym_function] = ACTIONS(953), - [anon_sym_QMARK_DOT] = ACTIONS(951), + [anon_sym_QMARK_DOT] = ACTIONS(957), [anon_sym_new] = ACTIONS(953), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(951), - [anon_sym_PIPE_PIPE] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_GT_GT_GT] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_QMARK] = ACTIONS(955), + [anon_sym_AMP_AMP] = ACTIONS(957), + [anon_sym_PIPE_PIPE] = ACTIONS(957), + [anon_sym_GT_GT] = ACTIONS(955), + [anon_sym_GT_GT_GT] = ACTIONS(957), + [anon_sym_LT_LT] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_CARET] = ACTIONS(957), + [anon_sym_PIPE] = ACTIONS(955), [anon_sym_PLUS] = ACTIONS(953), [anon_sym_DASH] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_STAR_STAR] = ACTIONS(951), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_EQ_EQ_EQ] = ACTIONS(951), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ_EQ] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_QMARK_QMARK] = ACTIONS(951), - [anon_sym_instanceof] = ACTIONS(953), + [anon_sym_PERCENT] = ACTIONS(957), + [anon_sym_STAR_STAR] = ACTIONS(957), + [anon_sym_LT_EQ] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(957), + [anon_sym_BANG_EQ] = ACTIONS(955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(957), + [anon_sym_GT_EQ] = ACTIONS(957), + [anon_sym_QMARK_QMARK] = ACTIONS(957), + [anon_sym_instanceof] = ACTIONS(955), [anon_sym_TILDE] = ACTIONS(951), [anon_sym_void] = ACTIONS(953), [anon_sym_delete] = ACTIONS(953), @@ -21323,217 +21336,217 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(953), [anon_sym_enum] = ACTIONS(953), [sym_readonly] = ACTIONS(953), - [sym__automatic_semicolon] = ACTIONS(951), - }, - [89] = { - [ts_builtin_sym_end] = ACTIONS(955), - [sym_identifier] = ACTIONS(957), - [anon_sym_export] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(957), - [anon_sym_default] = ACTIONS(957), - [anon_sym_as] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_COMMA] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_type] = ACTIONS(957), - [anon_sym_typeof] = ACTIONS(957), - [anon_sym_import] = ACTIONS(957), - [anon_sym_var] = ACTIONS(957), - [anon_sym_let] = ACTIONS(957), - [anon_sym_const] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_if] = ACTIONS(957), - [anon_sym_else] = ACTIONS(957), - [anon_sym_switch] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_await] = ACTIONS(957), - [anon_sym_in] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [anon_sym_do] = ACTIONS(957), - [anon_sym_try] = ACTIONS(957), - [anon_sym_with] = ACTIONS(957), - [anon_sym_break] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_debugger] = ACTIONS(957), - [anon_sym_return] = ACTIONS(957), - [anon_sym_throw] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_case] = ACTIONS(957), - [anon_sym_yield] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_SLASH] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(957), - [anon_sym_class] = ACTIONS(957), - [anon_sym_async] = ACTIONS(957), - [anon_sym_function] = ACTIONS(957), - [anon_sym_QMARK_DOT] = ACTIONS(955), - [anon_sym_new] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(955), - [anon_sym_PIPE_PIPE] = ACTIONS(955), - [anon_sym_GT_GT] = ACTIONS(957), - [anon_sym_GT_GT_GT] = ACTIONS(955), - [anon_sym_LT_LT] = ACTIONS(955), - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_CARET] = ACTIONS(955), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_PERCENT] = ACTIONS(955), - [anon_sym_STAR_STAR] = ACTIONS(955), - [anon_sym_LT_EQ] = ACTIONS(955), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_EQ_EQ_EQ] = ACTIONS(955), - [anon_sym_BANG_EQ] = ACTIONS(957), - [anon_sym_BANG_EQ_EQ] = ACTIONS(955), - [anon_sym_GT_EQ] = ACTIONS(955), - [anon_sym_QMARK_QMARK] = ACTIONS(955), - [anon_sym_instanceof] = ACTIONS(957), - [anon_sym_TILDE] = ACTIONS(955), - [anon_sym_void] = ACTIONS(957), - [anon_sym_delete] = ACTIONS(957), - [anon_sym_PLUS_PLUS] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(955), - [anon_sym_SQUOTE] = ACTIONS(955), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(955), - [sym_number] = ACTIONS(955), - [sym_this] = ACTIONS(957), - [sym_super] = ACTIONS(957), - [sym_true] = ACTIONS(957), - [sym_false] = ACTIONS(957), - [sym_null] = ACTIONS(957), - [sym_undefined] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(955), - [anon_sym_static] = ACTIONS(957), - [anon_sym_abstract] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - [anon_sym_interface] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(957), - [sym_readonly] = ACTIONS(957), - [sym__automatic_semicolon] = ACTIONS(955), + [sym__automatic_semicolon] = ACTIONS(959), }, - [90] = { - [ts_builtin_sym_end] = ACTIONS(959), - [sym_identifier] = ACTIONS(961), - [anon_sym_export] = ACTIONS(961), + [87] = { + [ts_builtin_sym_end] = ACTIONS(961), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(963), [anon_sym_STAR] = ACTIONS(963), - [anon_sym_default] = ACTIONS(961), + [anon_sym_default] = ACTIONS(963), [anon_sym_as] = ACTIONS(963), - [anon_sym_namespace] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_type] = ACTIONS(961), - [anon_sym_typeof] = ACTIONS(961), - [anon_sym_import] = ACTIONS(961), - [anon_sym_var] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_switch] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_await] = ACTIONS(961), + [anon_sym_namespace] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_type] = ACTIONS(963), + [anon_sym_typeof] = ACTIONS(963), + [anon_sym_import] = ACTIONS(963), + [anon_sym_var] = ACTIONS(963), + [anon_sym_let] = ACTIONS(963), + [anon_sym_const] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_else] = ACTIONS(963), + [anon_sym_switch] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_await] = ACTIONS(963), [anon_sym_in] = ACTIONS(963), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_try] = ACTIONS(961), - [anon_sym_with] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_debugger] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_throw] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_case] = ACTIONS(961), - [anon_sym_yield] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(961), + [anon_sym_while] = ACTIONS(963), + [anon_sym_do] = ACTIONS(963), + [anon_sym_try] = ACTIONS(963), + [anon_sym_with] = ACTIONS(963), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(963), + [anon_sym_debugger] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_throw] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_case] = ACTIONS(963), + [anon_sym_yield] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(963), [anon_sym_GT] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(963), [anon_sym_DOT] = ACTIONS(963), - [anon_sym_class] = ACTIONS(961), - [anon_sym_async] = ACTIONS(961), - [anon_sym_function] = ACTIONS(961), - [anon_sym_QMARK_DOT] = ACTIONS(965), - [anon_sym_new] = ACTIONS(961), + [anon_sym_class] = ACTIONS(963), + [anon_sym_async] = ACTIONS(963), + [anon_sym_function] = ACTIONS(963), + [anon_sym_QMARK_DOT] = ACTIONS(961), + [anon_sym_new] = ACTIONS(963), [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_GT_GT_GT] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_STAR_STAR] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_QMARK_QMARK] = ACTIONS(961), + [anon_sym_instanceof] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(961), + [anon_sym_void] = ACTIONS(963), + [anon_sym_delete] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_number] = ACTIONS(961), + [sym_this] = ACTIONS(963), + [sym_super] = ACTIONS(963), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + [sym_null] = ACTIONS(963), + [sym_undefined] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(961), + [anon_sym_static] = ACTIONS(963), + [anon_sym_abstract] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_interface] = ACTIONS(963), + [anon_sym_enum] = ACTIONS(963), + [sym_readonly] = ACTIONS(963), + [sym__automatic_semicolon] = ACTIONS(961), + }, + [88] = { + [ts_builtin_sym_end] = ACTIONS(965), + [sym_identifier] = ACTIONS(967), + [anon_sym_export] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_default] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_type] = ACTIONS(967), + [anon_sym_typeof] = ACTIONS(967), + [anon_sym_import] = ACTIONS(967), + [anon_sym_var] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_await] = ACTIONS(967), + [anon_sym_in] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_try] = ACTIONS(967), + [anon_sym_with] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_debugger] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_throw] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_case] = ACTIONS(967), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_class] = ACTIONS(967), + [anon_sym_async] = ACTIONS(967), + [anon_sym_function] = ACTIONS(967), + [anon_sym_QMARK_DOT] = ACTIONS(965), + [anon_sym_new] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(967), [anon_sym_AMP_AMP] = ACTIONS(965), [anon_sym_PIPE_PIPE] = ACTIONS(965), - [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(967), [anon_sym_GT_GT_GT] = ACTIONS(965), [anon_sym_LT_LT] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(967), [anon_sym_CARET] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), [anon_sym_PERCENT] = ACTIONS(965), [anon_sym_STAR_STAR] = ACTIONS(965), [anon_sym_LT_EQ] = ACTIONS(965), - [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(967), [anon_sym_EQ_EQ_EQ] = ACTIONS(965), - [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(967), [anon_sym_BANG_EQ_EQ] = ACTIONS(965), [anon_sym_GT_EQ] = ACTIONS(965), [anon_sym_QMARK_QMARK] = ACTIONS(965), - [anon_sym_instanceof] = ACTIONS(963), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_void] = ACTIONS(961), - [anon_sym_delete] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [sym_this] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - [sym_null] = ACTIONS(961), - [sym_undefined] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_static] = ACTIONS(961), - [anon_sym_abstract] = ACTIONS(961), - [anon_sym_get] = ACTIONS(961), - [anon_sym_set] = ACTIONS(961), - [anon_sym_declare] = ACTIONS(961), - [anon_sym_public] = ACTIONS(961), - [anon_sym_private] = ACTIONS(961), - [anon_sym_protected] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_any] = ACTIONS(961), - [anon_sym_number] = ACTIONS(961), - [anon_sym_boolean] = ACTIONS(961), - [anon_sym_string] = ACTIONS(961), - [anon_sym_symbol] = ACTIONS(961), - [anon_sym_interface] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [sym_readonly] = ACTIONS(961), - [sym__automatic_semicolon] = ACTIONS(967), + [anon_sym_instanceof] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(965), + [anon_sym_void] = ACTIONS(967), + [anon_sym_delete] = ACTIONS(967), + [anon_sym_PLUS_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(965), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(965), + [sym_number] = ACTIONS(965), + [sym_this] = ACTIONS(967), + [sym_super] = ACTIONS(967), + [sym_true] = ACTIONS(967), + [sym_false] = ACTIONS(967), + [sym_null] = ACTIONS(967), + [sym_undefined] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_static] = ACTIONS(967), + [anon_sym_abstract] = ACTIONS(967), + [anon_sym_get] = ACTIONS(967), + [anon_sym_set] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(967), + [anon_sym_public] = ACTIONS(967), + [anon_sym_private] = ACTIONS(967), + [anon_sym_protected] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_any] = ACTIONS(967), + [anon_sym_number] = ACTIONS(967), + [anon_sym_boolean] = ACTIONS(967), + [anon_sym_string] = ACTIONS(967), + [anon_sym_symbol] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(967), + [sym_readonly] = ACTIONS(967), + [sym__automatic_semicolon] = ACTIONS(965), }, - [91] = { + [89] = { [ts_builtin_sym_end] = ACTIONS(969), [sym_identifier] = ACTIONS(971), [anon_sym_export] = ACTIONS(971), @@ -21637,16 +21650,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(971), [sym__automatic_semicolon] = ACTIONS(977), }, - [92] = { + [90] = { [ts_builtin_sym_end] = ACTIONS(979), [sym_identifier] = ACTIONS(981), [anon_sym_export] = ACTIONS(981), - [anon_sym_STAR] = ACTIONS(983), + [anon_sym_STAR] = ACTIONS(981), [anon_sym_default] = ACTIONS(981), - [anon_sym_as] = ACTIONS(983), + [anon_sym_as] = ACTIONS(981), [anon_sym_namespace] = ACTIONS(981), [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(985), + [anon_sym_COMMA] = ACTIONS(979), [anon_sym_RBRACE] = ACTIONS(979), [anon_sym_type] = ACTIONS(981), [anon_sym_typeof] = ACTIONS(981), @@ -21661,7 +21674,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(981), [anon_sym_LPAREN] = ACTIONS(979), [anon_sym_await] = ACTIONS(981), - [anon_sym_in] = ACTIONS(983), + [anon_sym_in] = ACTIONS(981), [anon_sym_while] = ACTIONS(981), [anon_sym_do] = ACTIONS(981), [anon_sym_try] = ACTIONS(981), @@ -21676,35 +21689,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(981), [anon_sym_LBRACK] = ACTIONS(979), [anon_sym_LT] = ACTIONS(981), - [anon_sym_GT] = ACTIONS(983), + [anon_sym_GT] = ACTIONS(981), [anon_sym_SLASH] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(983), + [anon_sym_DOT] = ACTIONS(981), [anon_sym_class] = ACTIONS(981), [anon_sym_async] = ACTIONS(981), [anon_sym_function] = ACTIONS(981), - [anon_sym_QMARK_DOT] = ACTIONS(985), + [anon_sym_QMARK_DOT] = ACTIONS(979), [anon_sym_new] = ACTIONS(981), - [anon_sym_QMARK] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(983), - [anon_sym_GT_GT_GT] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_QMARK] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(981), + [anon_sym_GT_GT_GT] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(981), + [anon_sym_CARET] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(981), [anon_sym_PLUS] = ACTIONS(981), [anon_sym_DASH] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_STAR_STAR] = ACTIONS(985), - [anon_sym_LT_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(985), - [anon_sym_BANG_EQ] = ACTIONS(983), - [anon_sym_BANG_EQ_EQ] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(985), - [anon_sym_QMARK_QMARK] = ACTIONS(985), - [anon_sym_instanceof] = ACTIONS(983), + [anon_sym_PERCENT] = ACTIONS(979), + [anon_sym_STAR_STAR] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_EQ_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ_EQ] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_QMARK_QMARK] = ACTIONS(979), + [anon_sym_instanceof] = ACTIONS(981), [anon_sym_TILDE] = ACTIONS(979), [anon_sym_void] = ACTIONS(981), [anon_sym_delete] = ACTIONS(981), @@ -21739,538 +21752,746 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(981), [anon_sym_enum] = ACTIONS(981), [sym_readonly] = ACTIONS(981), - [sym__automatic_semicolon] = ACTIONS(987), + [sym__automatic_semicolon] = ACTIONS(979), }, - [93] = { - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(991), - [anon_sym_export] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(993), - [anon_sym_default] = ACTIONS(991), - [anon_sym_as] = ACTIONS(993), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_COMMA] = ACTIONS(995), - [anon_sym_RBRACE] = ACTIONS(989), - [anon_sym_type] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(991), - [anon_sym_import] = ACTIONS(991), - [anon_sym_var] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_else] = ACTIONS(991), - [anon_sym_switch] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_await] = ACTIONS(991), - [anon_sym_in] = ACTIONS(993), - [anon_sym_while] = ACTIONS(991), - [anon_sym_do] = ACTIONS(991), - [anon_sym_try] = ACTIONS(991), - [anon_sym_with] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_debugger] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_throw] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_case] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(993), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(993), - [anon_sym_class] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_function] = ACTIONS(991), - [anon_sym_QMARK_DOT] = ACTIONS(995), - [anon_sym_new] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_AMP_AMP] = ACTIONS(995), - [anon_sym_PIPE_PIPE] = ACTIONS(995), - [anon_sym_GT_GT] = ACTIONS(993), - [anon_sym_GT_GT_GT] = ACTIONS(995), - [anon_sym_LT_LT] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(993), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(995), - [anon_sym_STAR_STAR] = ACTIONS(995), - [anon_sym_LT_EQ] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_EQ_EQ_EQ] = ACTIONS(995), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ_EQ] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(995), - [anon_sym_QMARK_QMARK] = ACTIONS(995), - [anon_sym_instanceof] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(989), - [anon_sym_void] = ACTIONS(991), - [anon_sym_delete] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_DASH_DASH] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_SQUOTE] = ACTIONS(989), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(989), - [sym_number] = ACTIONS(989), - [sym_this] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_true] = ACTIONS(991), - [sym_false] = ACTIONS(991), - [sym_null] = ACTIONS(991), - [sym_undefined] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(989), - [anon_sym_static] = ACTIONS(991), - [anon_sym_abstract] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_interface] = ACTIONS(991), - [anon_sym_enum] = ACTIONS(991), - [sym_readonly] = ACTIONS(991), - [sym__automatic_semicolon] = ACTIONS(997), + [91] = { + [ts_builtin_sym_end] = ACTIONS(983), + [sym_identifier] = ACTIONS(985), + [anon_sym_export] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_namespace] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_COMMA] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_type] = ACTIONS(985), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(985), + [anon_sym_var] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_switch] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_await] = ACTIONS(985), + [anon_sym_in] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_with] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_debugger] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_throw] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_case] = ACTIONS(985), + [anon_sym_yield] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_class] = ACTIONS(985), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(985), + [anon_sym_QMARK_DOT] = ACTIONS(983), + [anon_sym_new] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(983), + [anon_sym_PIPE_PIPE] = ACTIONS(983), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_GT_GT_GT] = ACTIONS(983), + [anon_sym_LT_LT] = ACTIONS(983), + [anon_sym_AMP] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(983), + [anon_sym_STAR_STAR] = ACTIONS(983), + [anon_sym_LT_EQ] = ACTIONS(983), + [anon_sym_EQ_EQ] = ACTIONS(985), + [anon_sym_EQ_EQ_EQ] = ACTIONS(983), + [anon_sym_BANG_EQ] = ACTIONS(985), + [anon_sym_BANG_EQ_EQ] = ACTIONS(983), + [anon_sym_GT_EQ] = ACTIONS(983), + [anon_sym_QMARK_QMARK] = ACTIONS(983), + [anon_sym_instanceof] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(983), + [sym_number] = ACTIONS(983), + [sym_this] = ACTIONS(985), + [sym_super] = ACTIONS(985), + [sym_true] = ACTIONS(985), + [sym_false] = ACTIONS(985), + [sym_null] = ACTIONS(985), + [sym_undefined] = ACTIONS(985), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_static] = ACTIONS(985), + [anon_sym_abstract] = ACTIONS(985), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(985), + [anon_sym_declare] = ACTIONS(985), + [anon_sym_public] = ACTIONS(985), + [anon_sym_private] = ACTIONS(985), + [anon_sym_protected] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_any] = ACTIONS(985), + [anon_sym_number] = ACTIONS(985), + [anon_sym_boolean] = ACTIONS(985), + [anon_sym_string] = ACTIONS(985), + [anon_sym_symbol] = ACTIONS(985), + [anon_sym_interface] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [sym_readonly] = ACTIONS(985), + [sym__automatic_semicolon] = ACTIONS(983), }, - [94] = { - [ts_builtin_sym_end] = ACTIONS(999), - [sym_identifier] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(1001), + [92] = { + [ts_builtin_sym_end] = ACTIONS(987), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(991), + [anon_sym_default] = ACTIONS(989), + [anon_sym_as] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_type] = ACTIONS(989), + [anon_sym_typeof] = ACTIONS(989), + [anon_sym_import] = ACTIONS(989), + [anon_sym_var] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_await] = ACTIONS(989), + [anon_sym_in] = ACTIONS(991), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_try] = ACTIONS(989), + [anon_sym_with] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_debugger] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_throw] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_case] = ACTIONS(989), + [anon_sym_yield] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(991), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_class] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_function] = ACTIONS(989), + [anon_sym_QMARK_DOT] = ACTIONS(993), + [anon_sym_new] = ACTIONS(989), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_AMP_AMP] = ACTIONS(993), + [anon_sym_PIPE_PIPE] = ACTIONS(993), + [anon_sym_GT_GT] = ACTIONS(991), + [anon_sym_GT_GT_GT] = ACTIONS(993), + [anon_sym_LT_LT] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_STAR_STAR] = ACTIONS(993), + [anon_sym_LT_EQ] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_EQ_EQ_EQ] = ACTIONS(993), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ_EQ] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(993), + [anon_sym_QMARK_QMARK] = ACTIONS(993), + [anon_sym_instanceof] = ACTIONS(991), + [anon_sym_TILDE] = ACTIONS(987), + [anon_sym_void] = ACTIONS(989), + [anon_sym_delete] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(987), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(987), + [sym_number] = ACTIONS(987), + [sym_this] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [sym_undefined] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(987), + [anon_sym_static] = ACTIONS(989), + [anon_sym_abstract] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_interface] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [sym_readonly] = ACTIONS(989), + [sym__automatic_semicolon] = ACTIONS(995), + }, + [93] = { + [ts_builtin_sym_end] = ACTIONS(997), + [sym_identifier] = ACTIONS(999), + [anon_sym_export] = ACTIONS(999), [anon_sym_STAR] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(999), [anon_sym_as] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_type] = ACTIONS(1001), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(1001), - [anon_sym_var] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_else] = ACTIONS(1001), - [anon_sym_switch] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_await] = ACTIONS(1001), + [anon_sym_namespace] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(997), + [anon_sym_type] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(999), + [anon_sym_var] = ACTIONS(999), + [anon_sym_let] = ACTIONS(999), + [anon_sym_const] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_if] = ACTIONS(999), + [anon_sym_else] = ACTIONS(999), + [anon_sym_switch] = ACTIONS(999), + [anon_sym_for] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_await] = ACTIONS(999), [anon_sym_in] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_with] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_debugger] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_throw] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_case] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LT] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(999), + [anon_sym_do] = ACTIONS(999), + [anon_sym_try] = ACTIONS(999), + [anon_sym_with] = ACTIONS(999), + [anon_sym_break] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(999), + [anon_sym_debugger] = ACTIONS(999), + [anon_sym_return] = ACTIONS(999), + [anon_sym_throw] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_case] = ACTIONS(999), + [anon_sym_yield] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(999), [anon_sym_GT] = ACTIONS(1001), - [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(999), [anon_sym_DOT] = ACTIONS(1001), - [anon_sym_class] = ACTIONS(1001), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_function] = ACTIONS(1001), - [anon_sym_QMARK_DOT] = ACTIONS(999), - [anon_sym_new] = ACTIONS(1001), + [anon_sym_class] = ACTIONS(999), + [anon_sym_async] = ACTIONS(999), + [anon_sym_function] = ACTIONS(999), + [anon_sym_QMARK_DOT] = ACTIONS(1003), + [anon_sym_new] = ACTIONS(999), [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), [anon_sym_GT_GT] = ACTIONS(1001), - [anon_sym_GT_GT_GT] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(999), + [anon_sym_GT_GT_GT] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1003), [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(999), + [anon_sym_CARET] = ACTIONS(1003), [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_PERCENT] = ACTIONS(999), - [anon_sym_STAR_STAR] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_STAR_STAR] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1003), [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_EQ_EQ_EQ] = ACTIONS(999), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1003), [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ_EQ] = ACTIONS(999), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_QMARK_QMARK] = ACTIONS(999), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_QMARK_QMARK] = ACTIONS(1003), [anon_sym_instanceof] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(999), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(999), - [sym_number] = ACTIONS(999), - [sym_this] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), - [sym_true] = ACTIONS(1001), - [sym_false] = ACTIONS(1001), - [sym_null] = ACTIONS(1001), - [sym_undefined] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(999), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_abstract] = ACTIONS(1001), - [anon_sym_get] = ACTIONS(1001), - [anon_sym_set] = ACTIONS(1001), - [anon_sym_declare] = ACTIONS(1001), - [anon_sym_public] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1001), - [anon_sym_protected] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_any] = ACTIONS(1001), - [anon_sym_number] = ACTIONS(1001), - [anon_sym_boolean] = ACTIONS(1001), - [anon_sym_string] = ACTIONS(1001), - [anon_sym_symbol] = ACTIONS(1001), - [anon_sym_interface] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [sym_readonly] = ACTIONS(1001), - [sym__automatic_semicolon] = ACTIONS(999), + [anon_sym_TILDE] = ACTIONS(997), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(997), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(997), + [sym_number] = ACTIONS(997), + [sym_this] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_true] = ACTIONS(999), + [sym_false] = ACTIONS(999), + [sym_null] = ACTIONS(999), + [sym_undefined] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(997), + [anon_sym_static] = ACTIONS(999), + [anon_sym_abstract] = ACTIONS(999), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(999), + [anon_sym_declare] = ACTIONS(999), + [anon_sym_public] = ACTIONS(999), + [anon_sym_private] = ACTIONS(999), + [anon_sym_protected] = ACTIONS(999), + [anon_sym_module] = ACTIONS(999), + [anon_sym_any] = ACTIONS(999), + [anon_sym_number] = ACTIONS(999), + [anon_sym_boolean] = ACTIONS(999), + [anon_sym_string] = ACTIONS(999), + [anon_sym_symbol] = ACTIONS(999), + [anon_sym_interface] = ACTIONS(999), + [anon_sym_enum] = ACTIONS(999), + [sym_readonly] = ACTIONS(999), + [sym__automatic_semicolon] = ACTIONS(1005), }, - [95] = { - [ts_builtin_sym_end] = ACTIONS(1003), - [sym_identifier] = ACTIONS(1005), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_default] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1007), - [anon_sym_namespace] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_type] = ACTIONS(1005), - [anon_sym_typeof] = ACTIONS(1005), - [anon_sym_import] = ACTIONS(1005), - [anon_sym_var] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_await] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_with] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_debugger] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_throw] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_case] = ACTIONS(1005), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(1005), - [anon_sym_QMARK_DOT] = ACTIONS(1009), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_QMARK] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_GT_GT_GT] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_CARET] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_PERCENT] = ACTIONS(1009), - [anon_sym_STAR_STAR] = ACTIONS(1009), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_EQ_EQ] = ACTIONS(1007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(1007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1009), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_QMARK_QMARK] = ACTIONS(1009), - [anon_sym_instanceof] = ACTIONS(1007), - [anon_sym_TILDE] = ACTIONS(1003), - [anon_sym_void] = ACTIONS(1005), - [anon_sym_delete] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1003), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1003), - [sym_number] = ACTIONS(1003), - [sym_this] = ACTIONS(1005), - [sym_super] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [sym_null] = ACTIONS(1005), - [sym_undefined] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym_static] = ACTIONS(1005), - [anon_sym_abstract] = ACTIONS(1005), - [anon_sym_get] = ACTIONS(1005), - [anon_sym_set] = ACTIONS(1005), - [anon_sym_declare] = ACTIONS(1005), - [anon_sym_public] = ACTIONS(1005), - [anon_sym_private] = ACTIONS(1005), - [anon_sym_protected] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_any] = ACTIONS(1005), - [anon_sym_number] = ACTIONS(1005), - [anon_sym_boolean] = ACTIONS(1005), - [anon_sym_string] = ACTIONS(1005), - [anon_sym_symbol] = ACTIONS(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1005), - [sym_readonly] = ACTIONS(1005), - [sym__automatic_semicolon] = ACTIONS(1011), + [94] = { + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1009), + [anon_sym_export] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_as] = ACTIONS(1009), + [anon_sym_namespace] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_typeof] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_in] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_try] = ACTIONS(1009), + [anon_sym_with] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_debugger] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_throw] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_case] = ACTIONS(1009), + [anon_sym_yield] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_DOT] = ACTIONS(1009), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_function] = ACTIONS(1009), + [anon_sym_QMARK_DOT] = ACTIONS(1007), + [anon_sym_new] = ACTIONS(1009), + [anon_sym_QMARK] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1007), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_GT_GT_GT] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_CARET] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_PERCENT] = ACTIONS(1007), + [anon_sym_STAR_STAR] = ACTIONS(1007), + [anon_sym_LT_EQ] = ACTIONS(1007), + [anon_sym_EQ_EQ] = ACTIONS(1009), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1007), + [anon_sym_BANG_EQ] = ACTIONS(1009), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1007), + [anon_sym_GT_EQ] = ACTIONS(1007), + [anon_sym_QMARK_QMARK] = ACTIONS(1007), + [anon_sym_instanceof] = ACTIONS(1009), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_void] = ACTIONS(1009), + [anon_sym_delete] = ACTIONS(1009), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1007), + [sym_number] = ACTIONS(1007), + [sym_this] = ACTIONS(1009), + [sym_super] = ACTIONS(1009), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), + [sym_undefined] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(1009), + [anon_sym_get] = ACTIONS(1009), + [anon_sym_set] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1009), + [anon_sym_public] = ACTIONS(1009), + [anon_sym_private] = ACTIONS(1009), + [anon_sym_protected] = ACTIONS(1009), + [anon_sym_module] = ACTIONS(1009), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [sym_readonly] = ACTIONS(1009), + [sym__automatic_semicolon] = ACTIONS(1007), }, - [96] = { - [ts_builtin_sym_end] = ACTIONS(1013), - [sym_identifier] = ACTIONS(1015), - [anon_sym_export] = ACTIONS(1015), + [95] = { + [ts_builtin_sym_end] = ACTIONS(1011), + [sym_identifier] = ACTIONS(1013), + [anon_sym_export] = ACTIONS(1013), [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_default] = ACTIONS(1015), + [anon_sym_default] = ACTIONS(1013), [anon_sym_as] = ACTIONS(1015), - [anon_sym_namespace] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1015), - [anon_sym_typeof] = ACTIONS(1015), - [anon_sym_import] = ACTIONS(1015), - [anon_sym_var] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_switch] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(1015), + [anon_sym_namespace] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_typeof] = ACTIONS(1013), + [anon_sym_import] = ACTIONS(1013), + [anon_sym_var] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_await] = ACTIONS(1013), [anon_sym_in] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_with] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_debugger] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_throw] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_yield] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1013), + [anon_sym_with] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_debugger] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_throw] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_case] = ACTIONS(1013), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1011), + [anon_sym_LT] = ACTIONS(1013), [anon_sym_GT] = ACTIONS(1015), - [anon_sym_SLASH] = ACTIONS(1015), + [anon_sym_SLASH] = ACTIONS(1013), [anon_sym_DOT] = ACTIONS(1015), - [anon_sym_class] = ACTIONS(1015), - [anon_sym_async] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1015), - [anon_sym_QMARK_DOT] = ACTIONS(1013), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_GT_GT] = ACTIONS(1015), - [anon_sym_GT_GT_GT] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1015), - [anon_sym_CARET] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1015), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_PERCENT] = ACTIONS(1013), - [anon_sym_STAR_STAR] = ACTIONS(1013), - [anon_sym_LT_EQ] = ACTIONS(1013), - [anon_sym_EQ_EQ] = ACTIONS(1015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1013), - [anon_sym_GT_EQ] = ACTIONS(1013), - [anon_sym_QMARK_QMARK] = ACTIONS(1013), - [anon_sym_instanceof] = ACTIONS(1015), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_void] = ACTIONS(1015), - [anon_sym_delete] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1013), - [sym_number] = ACTIONS(1013), - [sym_this] = ACTIONS(1015), - [sym_super] = ACTIONS(1015), - [sym_true] = ACTIONS(1015), - [sym_false] = ACTIONS(1015), - [sym_null] = ACTIONS(1015), - [sym_undefined] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1015), - [anon_sym_abstract] = ACTIONS(1015), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1015), - [anon_sym_declare] = ACTIONS(1015), - [anon_sym_public] = ACTIONS(1015), - [anon_sym_private] = ACTIONS(1015), - [anon_sym_protected] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_any] = ACTIONS(1015), - [anon_sym_number] = ACTIONS(1015), - [anon_sym_boolean] = ACTIONS(1015), - [anon_sym_string] = ACTIONS(1015), - [anon_sym_symbol] = ACTIONS(1015), - [anon_sym_interface] = ACTIONS(1015), - [anon_sym_enum] = ACTIONS(1015), - [sym_readonly] = ACTIONS(1015), - [sym__automatic_semicolon] = ACTIONS(1013), - }, - [97] = { - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_identifier] = ACTIONS(1019), - [anon_sym_export] = ACTIONS(1019), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_default] = ACTIONS(1019), - [anon_sym_as] = ACTIONS(1019), - [anon_sym_namespace] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_type] = ACTIONS(1019), - [anon_sym_typeof] = ACTIONS(1019), - [anon_sym_import] = ACTIONS(1019), - [anon_sym_var] = ACTIONS(1019), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_const] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_if] = ACTIONS(1019), - [anon_sym_else] = ACTIONS(1019), - [anon_sym_switch] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_await] = ACTIONS(1019), - [anon_sym_in] = ACTIONS(1019), - [anon_sym_while] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_try] = ACTIONS(1019), - [anon_sym_with] = ACTIONS(1019), - [anon_sym_break] = ACTIONS(1019), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_debugger] = ACTIONS(1019), - [anon_sym_return] = ACTIONS(1019), - [anon_sym_throw] = ACTIONS(1019), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1019), - [anon_sym_GT] = ACTIONS(1019), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_class] = ACTIONS(1019), - [anon_sym_async] = ACTIONS(1019), - [anon_sym_function] = ACTIONS(1019), + [anon_sym_class] = ACTIONS(1013), + [anon_sym_async] = ACTIONS(1013), + [anon_sym_function] = ACTIONS(1013), [anon_sym_QMARK_DOT] = ACTIONS(1017), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_QMARK] = ACTIONS(1019), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_QMARK] = ACTIONS(1015), [anon_sym_AMP_AMP] = ACTIONS(1017), [anon_sym_PIPE_PIPE] = ACTIONS(1017), - [anon_sym_GT_GT] = ACTIONS(1019), + [anon_sym_GT_GT] = ACTIONS(1015), [anon_sym_GT_GT_GT] = ACTIONS(1017), [anon_sym_LT_LT] = ACTIONS(1017), - [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1015), [anon_sym_CARET] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), [anon_sym_PERCENT] = ACTIONS(1017), [anon_sym_STAR_STAR] = ACTIONS(1017), [anon_sym_LT_EQ] = ACTIONS(1017), - [anon_sym_EQ_EQ] = ACTIONS(1019), + [anon_sym_EQ_EQ] = ACTIONS(1015), [anon_sym_EQ_EQ_EQ] = ACTIONS(1017), - [anon_sym_BANG_EQ] = ACTIONS(1019), + [anon_sym_BANG_EQ] = ACTIONS(1015), [anon_sym_BANG_EQ_EQ] = ACTIONS(1017), [anon_sym_GT_EQ] = ACTIONS(1017), [anon_sym_QMARK_QMARK] = ACTIONS(1017), - [anon_sym_instanceof] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1017), - [anon_sym_void] = ACTIONS(1019), - [anon_sym_delete] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [anon_sym_SQUOTE] = ACTIONS(1017), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1017), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1019), - [sym_super] = ACTIONS(1019), - [sym_true] = ACTIONS(1019), - [sym_false] = ACTIONS(1019), - [sym_null] = ACTIONS(1019), - [sym_undefined] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1017), - [anon_sym_static] = ACTIONS(1019), - [anon_sym_abstract] = ACTIONS(1019), - [anon_sym_get] = ACTIONS(1019), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_declare] = ACTIONS(1019), - [anon_sym_public] = ACTIONS(1019), - [anon_sym_private] = ACTIONS(1019), - [anon_sym_protected] = ACTIONS(1019), - [anon_sym_module] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1019), - [anon_sym_number] = ACTIONS(1019), - [anon_sym_boolean] = ACTIONS(1019), - [anon_sym_string] = ACTIONS(1019), - [anon_sym_symbol] = ACTIONS(1019), - [anon_sym_interface] = ACTIONS(1019), - [anon_sym_enum] = ACTIONS(1019), - [sym_readonly] = ACTIONS(1019), - [sym__automatic_semicolon] = ACTIONS(1017), + [anon_sym_instanceof] = ACTIONS(1015), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_void] = ACTIONS(1013), + [anon_sym_delete] = ACTIONS(1013), + [anon_sym_PLUS_PLUS] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1011), + [sym_number] = ACTIONS(1011), + [sym_this] = ACTIONS(1013), + [sym_super] = ACTIONS(1013), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), + [sym_undefined] = ACTIONS(1013), + [anon_sym_AT] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_abstract] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_interface] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [sym_readonly] = ACTIONS(1013), + [sym__automatic_semicolon] = ACTIONS(1019), + }, + [96] = { + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1023), + [anon_sym_export] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(1023), + [anon_sym_as] = ACTIONS(1023), + [anon_sym_namespace] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_type] = ACTIONS(1023), + [anon_sym_typeof] = ACTIONS(1023), + [anon_sym_import] = ACTIONS(1023), + [anon_sym_var] = ACTIONS(1023), + [anon_sym_let] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1023), + [anon_sym_else] = ACTIONS(1023), + [anon_sym_switch] = ACTIONS(1023), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_await] = ACTIONS(1023), + [anon_sym_in] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1023), + [anon_sym_with] = ACTIONS(1023), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1023), + [anon_sym_debugger] = ACTIONS(1023), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_throw] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_case] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1023), + [anon_sym_GT] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(1023), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1023), + [anon_sym_QMARK_DOT] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1023), + [anon_sym_QMARK] = ACTIONS(1023), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_GT_GT] = ACTIONS(1023), + [anon_sym_GT_GT_GT] = ACTIONS(1021), + [anon_sym_LT_LT] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_CARET] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_PERCENT] = ACTIONS(1021), + [anon_sym_STAR_STAR] = ACTIONS(1021), + [anon_sym_LT_EQ] = ACTIONS(1021), + [anon_sym_EQ_EQ] = ACTIONS(1023), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1021), + [anon_sym_BANG_EQ] = ACTIONS(1023), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1021), + [anon_sym_GT_EQ] = ACTIONS(1021), + [anon_sym_QMARK_QMARK] = ACTIONS(1021), + [anon_sym_instanceof] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1021), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1023), + [anon_sym_PLUS_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_SQUOTE] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1021), + [sym_number] = ACTIONS(1021), + [sym_this] = ACTIONS(1023), + [sym_super] = ACTIONS(1023), + [sym_true] = ACTIONS(1023), + [sym_false] = ACTIONS(1023), + [sym_null] = ACTIONS(1023), + [sym_undefined] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1021), + [anon_sym_static] = ACTIONS(1023), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1023), + [anon_sym_declare] = ACTIONS(1023), + [anon_sym_public] = ACTIONS(1023), + [anon_sym_private] = ACTIONS(1023), + [anon_sym_protected] = ACTIONS(1023), + [anon_sym_module] = ACTIONS(1023), + [anon_sym_any] = ACTIONS(1023), + [anon_sym_number] = ACTIONS(1023), + [anon_sym_boolean] = ACTIONS(1023), + [anon_sym_string] = ACTIONS(1023), + [anon_sym_symbol] = ACTIONS(1023), + [anon_sym_interface] = ACTIONS(1023), + [anon_sym_enum] = ACTIONS(1023), + [sym_readonly] = ACTIONS(1023), + [sym__automatic_semicolon] = ACTIONS(1021), + }, + [97] = { + [ts_builtin_sym_end] = ACTIONS(1025), + [sym_identifier] = ACTIONS(1027), + [anon_sym_export] = ACTIONS(1027), + [anon_sym_STAR] = ACTIONS(1027), + [anon_sym_default] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(1027), + [anon_sym_namespace] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_type] = ACTIONS(1027), + [anon_sym_typeof] = ACTIONS(1027), + [anon_sym_import] = ACTIONS(1027), + [anon_sym_var] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_switch] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_await] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_try] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_debugger] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_case] = ACTIONS(1027), + [anon_sym_yield] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1027), + [anon_sym_SLASH] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1027), + [anon_sym_function] = ACTIONS(1027), + [anon_sym_QMARK_DOT] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1027), + [anon_sym_AMP_AMP] = ACTIONS(1025), + [anon_sym_PIPE_PIPE] = ACTIONS(1025), + [anon_sym_GT_GT] = ACTIONS(1027), + [anon_sym_GT_GT_GT] = ACTIONS(1025), + [anon_sym_LT_LT] = ACTIONS(1025), + [anon_sym_AMP] = ACTIONS(1027), + [anon_sym_CARET] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_PERCENT] = ACTIONS(1025), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_LT_EQ] = ACTIONS(1025), + [anon_sym_EQ_EQ] = ACTIONS(1027), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1025), + [anon_sym_BANG_EQ] = ACTIONS(1027), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1025), + [anon_sym_GT_EQ] = ACTIONS(1025), + [anon_sym_QMARK_QMARK] = ACTIONS(1025), + [anon_sym_instanceof] = ACTIONS(1027), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_void] = ACTIONS(1027), + [anon_sym_delete] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1025), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1025), + [sym_number] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), + [sym_super] = ACTIONS(1027), + [sym_true] = ACTIONS(1027), + [sym_false] = ACTIONS(1027), + [sym_null] = ACTIONS(1027), + [sym_undefined] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1027), + [anon_sym_get] = ACTIONS(1027), + [anon_sym_set] = ACTIONS(1027), + [anon_sym_declare] = ACTIONS(1027), + [anon_sym_public] = ACTIONS(1027), + [anon_sym_private] = ACTIONS(1027), + [anon_sym_protected] = ACTIONS(1027), + [anon_sym_module] = ACTIONS(1027), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_interface] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1027), + [sym_readonly] = ACTIONS(1027), + [sym__automatic_semicolon] = ACTIONS(1025), }, [98] = { [ts_builtin_sym_end] = ACTIONS(1021), [sym_identifier] = ACTIONS(1023), [anon_sym_export] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1023), [anon_sym_default] = ACTIONS(1023), - [anon_sym_as] = ACTIONS(1025), + [anon_sym_as] = ACTIONS(1023), [anon_sym_namespace] = ACTIONS(1023), [anon_sym_LBRACE] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_COMMA] = ACTIONS(1021), [anon_sym_RBRACE] = ACTIONS(1021), [anon_sym_type] = ACTIONS(1023), [anon_sym_typeof] = ACTIONS(1023), @@ -22285,7 +22506,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1023), [anon_sym_LPAREN] = ACTIONS(1021), [anon_sym_await] = ACTIONS(1023), - [anon_sym_in] = ACTIONS(1025), + [anon_sym_in] = ACTIONS(1023), [anon_sym_while] = ACTIONS(1023), [anon_sym_do] = ACTIONS(1023), [anon_sym_try] = ACTIONS(1023), @@ -22300,35 +22521,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1023), [anon_sym_LBRACK] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(1023), - [anon_sym_GT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(1023), [anon_sym_SLASH] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DOT] = ACTIONS(1023), [anon_sym_class] = ACTIONS(1023), [anon_sym_async] = ACTIONS(1023), [anon_sym_function] = ACTIONS(1023), - [anon_sym_QMARK_DOT] = ACTIONS(1027), + [anon_sym_QMARK_DOT] = ACTIONS(1021), [anon_sym_new] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_PIPE_PIPE] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_GT_GT_GT] = ACTIONS(1027), - [anon_sym_LT_LT] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_QMARK] = ACTIONS(1023), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_GT_GT] = ACTIONS(1023), + [anon_sym_GT_GT_GT] = ACTIONS(1021), + [anon_sym_LT_LT] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_CARET] = ACTIONS(1021), + [anon_sym_PIPE] = ACTIONS(1023), [anon_sym_PLUS] = ACTIONS(1023), [anon_sym_DASH] = ACTIONS(1023), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_STAR_STAR] = ACTIONS(1027), - [anon_sym_LT_EQ] = ACTIONS(1027), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1027), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1027), - [anon_sym_GT_EQ] = ACTIONS(1027), - [anon_sym_QMARK_QMARK] = ACTIONS(1027), - [anon_sym_instanceof] = ACTIONS(1025), + [anon_sym_PERCENT] = ACTIONS(1021), + [anon_sym_STAR_STAR] = ACTIONS(1021), + [anon_sym_LT_EQ] = ACTIONS(1021), + [anon_sym_EQ_EQ] = ACTIONS(1023), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1021), + [anon_sym_BANG_EQ] = ACTIONS(1023), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1021), + [anon_sym_GT_EQ] = ACTIONS(1021), + [anon_sym_QMARK_QMARK] = ACTIONS(1021), + [anon_sym_instanceof] = ACTIONS(1023), [anon_sym_TILDE] = ACTIONS(1021), [anon_sym_void] = ACTIONS(1023), [anon_sym_delete] = ACTIONS(1023), @@ -22369,12 +22590,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1031), [sym_identifier] = ACTIONS(1033), [anon_sym_export] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1035), + [anon_sym_STAR] = ACTIONS(1033), [anon_sym_default] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1035), + [anon_sym_as] = ACTIONS(1033), [anon_sym_namespace] = ACTIONS(1033), [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_COMMA] = ACTIONS(1037), + [anon_sym_COMMA] = ACTIONS(1031), [anon_sym_RBRACE] = ACTIONS(1031), [anon_sym_type] = ACTIONS(1033), [anon_sym_typeof] = ACTIONS(1033), @@ -22389,7 +22610,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1033), [anon_sym_LPAREN] = ACTIONS(1031), [anon_sym_await] = ACTIONS(1033), - [anon_sym_in] = ACTIONS(1035), + [anon_sym_in] = ACTIONS(1033), [anon_sym_while] = ACTIONS(1033), [anon_sym_do] = ACTIONS(1033), [anon_sym_try] = ACTIONS(1033), @@ -22404,35 +22625,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1033), [anon_sym_LBRACK] = ACTIONS(1031), [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_DOT] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1033), [anon_sym_class] = ACTIONS(1033), [anon_sym_async] = ACTIONS(1033), [anon_sym_function] = ACTIONS(1033), - [anon_sym_QMARK_DOT] = ACTIONS(1037), + [anon_sym_QMARK_DOT] = ACTIONS(1031), [anon_sym_new] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_AMP_AMP] = ACTIONS(1037), - [anon_sym_PIPE_PIPE] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1035), - [anon_sym_GT_GT_GT] = ACTIONS(1037), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1035), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1035), + [anon_sym_QMARK] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_GT_GT] = ACTIONS(1033), + [anon_sym_GT_GT_GT] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1031), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1031), + [anon_sym_PIPE] = ACTIONS(1033), [anon_sym_PLUS] = ACTIONS(1033), [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_STAR_STAR] = ACTIONS(1037), - [anon_sym_LT_EQ] = ACTIONS(1037), - [anon_sym_EQ_EQ] = ACTIONS(1035), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1037), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1037), - [anon_sym_GT_EQ] = ACTIONS(1037), - [anon_sym_QMARK_QMARK] = ACTIONS(1037), - [anon_sym_instanceof] = ACTIONS(1035), + [anon_sym_PERCENT] = ACTIONS(1031), + [anon_sym_STAR_STAR] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1031), + [anon_sym_EQ_EQ] = ACTIONS(1033), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1031), + [anon_sym_BANG_EQ] = ACTIONS(1033), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1031), + [anon_sym_GT_EQ] = ACTIONS(1031), + [anon_sym_QMARK_QMARK] = ACTIONS(1031), + [anon_sym_instanceof] = ACTIONS(1033), [anon_sym_TILDE] = ACTIONS(1031), [anon_sym_void] = ACTIONS(1033), [anon_sym_delete] = ACTIONS(1033), @@ -22467,425 +22688,321 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1033), [anon_sym_enum] = ACTIONS(1033), [sym_readonly] = ACTIONS(1033), - [sym__automatic_semicolon] = ACTIONS(1037), + [sym__automatic_semicolon] = ACTIONS(1031), }, [100] = { - [ts_builtin_sym_end] = ACTIONS(901), - [sym_identifier] = ACTIONS(903), - [anon_sym_export] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_default] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), - [anon_sym_namespace] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_COMMA] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_type] = ACTIONS(903), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_import] = ACTIONS(903), - [anon_sym_var] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_else] = ACTIONS(903), - [anon_sym_switch] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_await] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_try] = ACTIONS(903), - [anon_sym_with] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_debugger] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_throw] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_case] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_class] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_function] = ACTIONS(903), - [anon_sym_QMARK_DOT] = ACTIONS(901), - [anon_sym_new] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(901), - [anon_sym_PIPE_PIPE] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_GT_GT_GT] = ACTIONS(901), - [anon_sym_LT_LT] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(901), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(901), - [anon_sym_STAR_STAR] = ACTIONS(901), - [anon_sym_LT_EQ] = ACTIONS(901), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_EQ_EQ_EQ] = ACTIONS(901), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ_EQ] = ACTIONS(901), - [anon_sym_GT_EQ] = ACTIONS(901), - [anon_sym_QMARK_QMARK] = ACTIONS(901), - [anon_sym_instanceof] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_void] = ACTIONS(903), - [anon_sym_delete] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_SQUOTE] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(901), - [sym_number] = ACTIONS(901), - [sym_this] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_true] = ACTIONS(903), - [sym_false] = ACTIONS(903), - [sym_null] = ACTIONS(903), - [sym_undefined] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_static] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(903), - [anon_sym_get] = ACTIONS(903), - [anon_sym_set] = ACTIONS(903), - [anon_sym_declare] = ACTIONS(903), - [anon_sym_public] = ACTIONS(903), - [anon_sym_private] = ACTIONS(903), - [anon_sym_protected] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_any] = ACTIONS(903), - [anon_sym_number] = ACTIONS(903), - [anon_sym_boolean] = ACTIONS(903), - [anon_sym_string] = ACTIONS(903), - [anon_sym_symbol] = ACTIONS(903), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [sym_readonly] = ACTIONS(903), - [sym__automatic_semicolon] = ACTIONS(1039), + [ts_builtin_sym_end] = ACTIONS(1035), + [sym_identifier] = ACTIONS(1037), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_namespace] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_typeof] = ACTIONS(1037), + [anon_sym_import] = ACTIONS(1037), + [anon_sym_var] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_switch] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_in] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_with] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_debugger] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_yield] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_class] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_function] = ACTIONS(1037), + [anon_sym_QMARK_DOT] = ACTIONS(1035), + [anon_sym_new] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_GT_GT_GT] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1035), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1035), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1035), + [anon_sym_STAR_STAR] = ACTIONS(1035), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_EQ_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1037), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1035), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_QMARK_QMARK] = ACTIONS(1035), + [anon_sym_instanceof] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1035), + [anon_sym_void] = ACTIONS(1037), + [anon_sym_delete] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_DASH_DASH] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [anon_sym_SQUOTE] = ACTIONS(1035), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1035), + [sym_number] = ACTIONS(1035), + [sym_this] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_true] = ACTIONS(1037), + [sym_false] = ACTIONS(1037), + [sym_null] = ACTIONS(1037), + [sym_undefined] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(1035), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_abstract] = ACTIONS(1037), + [anon_sym_get] = ACTIONS(1037), + [anon_sym_set] = ACTIONS(1037), + [anon_sym_declare] = ACTIONS(1037), + [anon_sym_public] = ACTIONS(1037), + [anon_sym_private] = ACTIONS(1037), + [anon_sym_protected] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_any] = ACTIONS(1037), + [anon_sym_number] = ACTIONS(1037), + [anon_sym_boolean] = ACTIONS(1037), + [anon_sym_string] = ACTIONS(1037), + [anon_sym_symbol] = ACTIONS(1037), + [anon_sym_interface] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [sym_readonly] = ACTIONS(1037), + [sym__automatic_semicolon] = ACTIONS(1035), }, [101] = { - [ts_builtin_sym_end] = ACTIONS(1041), - [sym_identifier] = ACTIONS(1043), - [anon_sym_export] = ACTIONS(1043), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1043), - [anon_sym_typeof] = ACTIONS(1043), - [anon_sym_import] = ACTIONS(1043), - [anon_sym_var] = ACTIONS(1043), - [anon_sym_let] = ACTIONS(1043), - [anon_sym_const] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1043), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(1043), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_await] = ACTIONS(1043), - [anon_sym_in] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1043), - [anon_sym_try] = ACTIONS(1043), - [anon_sym_with] = ACTIONS(1043), - [anon_sym_break] = ACTIONS(1043), - [anon_sym_continue] = ACTIONS(1043), - [anon_sym_debugger] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_throw] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1041), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_yield] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1043), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_class] = ACTIONS(1043), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_function] = ACTIONS(1043), - [anon_sym_QMARK_DOT] = ACTIONS(1047), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_QMARK] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_GT_GT_GT] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1047), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1047), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_PERCENT] = ACTIONS(1047), - [anon_sym_STAR_STAR] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_EQ_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1045), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1047), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_QMARK_QMARK] = ACTIONS(1047), - [anon_sym_instanceof] = ACTIONS(1045), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_void] = ACTIONS(1043), - [anon_sym_delete] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1041), - [anon_sym_DASH_DASH] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym_SQUOTE] = ACTIONS(1041), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1041), - [sym_number] = ACTIONS(1041), - [sym_this] = ACTIONS(1043), - [sym_super] = ACTIONS(1043), - [sym_true] = ACTIONS(1043), - [sym_false] = ACTIONS(1043), - [sym_null] = ACTIONS(1043), - [sym_undefined] = ACTIONS(1043), - [anon_sym_AT] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_abstract] = ACTIONS(1043), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(1043), - [anon_sym_public] = ACTIONS(1043), - [anon_sym_private] = ACTIONS(1043), - [anon_sym_protected] = ACTIONS(1043), - [anon_sym_module] = ACTIONS(1043), - [anon_sym_any] = ACTIONS(1043), - [anon_sym_number] = ACTIONS(1043), - [anon_sym_boolean] = ACTIONS(1043), - [anon_sym_string] = ACTIONS(1043), - [anon_sym_symbol] = ACTIONS(1043), - [anon_sym_interface] = ACTIONS(1043), - [anon_sym_enum] = ACTIONS(1043), - [sym_readonly] = ACTIONS(1043), - [sym__automatic_semicolon] = ACTIONS(1049), + [ts_builtin_sym_end] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1041), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1043), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1043), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_typeof] = ACTIONS(1041), + [anon_sym_import] = ACTIONS(1041), + [anon_sym_var] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_in] = ACTIONS(1043), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_with] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_debugger] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_throw] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_yield] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT] = ACTIONS(1043), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1043), + [anon_sym_class] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_function] = ACTIONS(1041), + [anon_sym_QMARK_DOT] = ACTIONS(1045), + [anon_sym_new] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_AMP_AMP] = ACTIONS(1045), + [anon_sym_PIPE_PIPE] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1043), + [anon_sym_GT_GT_GT] = ACTIONS(1045), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_STAR_STAR] = ACTIONS(1045), + [anon_sym_LT_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1045), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1045), + [anon_sym_QMARK_QMARK] = ACTIONS(1045), + [anon_sym_instanceof] = ACTIONS(1043), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_void] = ACTIONS(1041), + [anon_sym_delete] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1039), + [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1039), + [sym_number] = ACTIONS(1039), + [sym_this] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_true] = ACTIONS(1041), + [sym_false] = ACTIONS(1041), + [sym_null] = ACTIONS(1041), + [sym_undefined] = ACTIONS(1041), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_abstract] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_interface] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [sym_readonly] = ACTIONS(1041), + [sym__automatic_semicolon] = ACTIONS(1047), }, [102] = { - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1053), - [anon_sym_export] = ACTIONS(1053), + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_identifier] = ACTIONS(1051), + [anon_sym_export] = ACTIONS(1051), [anon_sym_STAR] = ACTIONS(1053), - [anon_sym_default] = ACTIONS(1053), + [anon_sym_default] = ACTIONS(1051), [anon_sym_as] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_typeof] = ACTIONS(1053), - [anon_sym_import] = ACTIONS(1053), - [anon_sym_var] = ACTIONS(1053), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1053), - [anon_sym_switch] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_await] = ACTIONS(1053), + [anon_sym_namespace] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_COMMA] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1051), + [anon_sym_typeof] = ACTIONS(1051), + [anon_sym_import] = ACTIONS(1051), + [anon_sym_var] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1051), [anon_sym_in] = ACTIONS(1053), - [anon_sym_while] = ACTIONS(1053), - [anon_sym_do] = ACTIONS(1053), - [anon_sym_try] = ACTIONS(1053), - [anon_sym_with] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_debugger] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_throw] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_yield] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_with] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_debugger] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_throw] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_case] = ACTIONS(1051), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1051), [anon_sym_GT] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(1053), + [anon_sym_SLASH] = ACTIONS(1051), [anon_sym_DOT] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_async] = ACTIONS(1053), - [anon_sym_function] = ACTIONS(1053), - [anon_sym_QMARK_DOT] = ACTIONS(1051), - [anon_sym_new] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_AMP_AMP] = ACTIONS(1051), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_GT_GT] = ACTIONS(1053), - [anon_sym_GT_GT_GT] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1051), - [anon_sym_AMP] = ACTIONS(1053), - [anon_sym_CARET] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1053), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PERCENT] = ACTIONS(1051), - [anon_sym_STAR_STAR] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_EQ_EQ] = ACTIONS(1053), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1053), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1051), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_QMARK_QMARK] = ACTIONS(1051), - [anon_sym_instanceof] = ACTIONS(1053), - [anon_sym_TILDE] = ACTIONS(1051), - [anon_sym_void] = ACTIONS(1053), - [anon_sym_delete] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1051), - [sym_number] = ACTIONS(1051), - [sym_this] = ACTIONS(1053), - [sym_super] = ACTIONS(1053), - [sym_true] = ACTIONS(1053), - [sym_false] = ACTIONS(1053), - [sym_null] = ACTIONS(1053), - [sym_undefined] = ACTIONS(1053), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_abstract] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [sym_readonly] = ACTIONS(1053), - [sym__automatic_semicolon] = ACTIONS(1051), - }, - [103] = { - [ts_builtin_sym_end] = ACTIONS(1055), - [sym_identifier] = ACTIONS(1057), - [anon_sym_export] = ACTIONS(1057), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_default] = ACTIONS(1057), - [anon_sym_as] = ACTIONS(1057), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1057), - [anon_sym_typeof] = ACTIONS(1057), - [anon_sym_import] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(1057), - [anon_sym_const] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1057), - [anon_sym_switch] = ACTIONS(1057), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1057), - [anon_sym_do] = ACTIONS(1057), - [anon_sym_try] = ACTIONS(1057), - [anon_sym_with] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1057), - [anon_sym_continue] = ACTIONS(1057), - [anon_sym_debugger] = ACTIONS(1057), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_throw] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_case] = ACTIONS(1057), - [anon_sym_yield] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_SLASH] = ACTIONS(1057), - [anon_sym_DOT] = ACTIONS(1057), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_async] = ACTIONS(1057), - [anon_sym_function] = ACTIONS(1057), + [anon_sym_class] = ACTIONS(1051), + [anon_sym_async] = ACTIONS(1051), + [anon_sym_function] = ACTIONS(1051), [anon_sym_QMARK_DOT] = ACTIONS(1055), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_QMARK] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1051), + [anon_sym_QMARK] = ACTIONS(1053), [anon_sym_AMP_AMP] = ACTIONS(1055), [anon_sym_PIPE_PIPE] = ACTIONS(1055), - [anon_sym_GT_GT] = ACTIONS(1057), + [anon_sym_GT_GT] = ACTIONS(1053), [anon_sym_GT_GT_GT] = ACTIONS(1055), [anon_sym_LT_LT] = ACTIONS(1055), - [anon_sym_AMP] = ACTIONS(1057), + [anon_sym_AMP] = ACTIONS(1053), [anon_sym_CARET] = ACTIONS(1055), - [anon_sym_PIPE] = ACTIONS(1057), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), + [anon_sym_PIPE] = ACTIONS(1053), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), [anon_sym_PERCENT] = ACTIONS(1055), [anon_sym_STAR_STAR] = ACTIONS(1055), [anon_sym_LT_EQ] = ACTIONS(1055), - [anon_sym_EQ_EQ] = ACTIONS(1057), + [anon_sym_EQ_EQ] = ACTIONS(1053), [anon_sym_EQ_EQ_EQ] = ACTIONS(1055), - [anon_sym_BANG_EQ] = ACTIONS(1057), + [anon_sym_BANG_EQ] = ACTIONS(1053), [anon_sym_BANG_EQ_EQ] = ACTIONS(1055), [anon_sym_GT_EQ] = ACTIONS(1055), [anon_sym_QMARK_QMARK] = ACTIONS(1055), - [anon_sym_instanceof] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(1055), - [anon_sym_void] = ACTIONS(1057), - [anon_sym_delete] = ACTIONS(1057), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1055), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1055), - [sym_number] = ACTIONS(1055), - [sym_this] = ACTIONS(1057), - [sym_super] = ACTIONS(1057), - [sym_true] = ACTIONS(1057), - [sym_false] = ACTIONS(1057), - [sym_null] = ACTIONS(1057), - [sym_undefined] = ACTIONS(1057), - [anon_sym_AT] = ACTIONS(1055), - [anon_sym_static] = ACTIONS(1057), - [anon_sym_abstract] = ACTIONS(1057), - [anon_sym_get] = ACTIONS(1057), - [anon_sym_set] = ACTIONS(1057), - [anon_sym_declare] = ACTIONS(1057), - [anon_sym_public] = ACTIONS(1057), - [anon_sym_private] = ACTIONS(1057), - [anon_sym_protected] = ACTIONS(1057), - [anon_sym_module] = ACTIONS(1057), - [anon_sym_any] = ACTIONS(1057), - [anon_sym_number] = ACTIONS(1057), - [anon_sym_boolean] = ACTIONS(1057), - [anon_sym_string] = ACTIONS(1057), - [anon_sym_symbol] = ACTIONS(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1057), - [sym_readonly] = ACTIONS(1057), - [sym__automatic_semicolon] = ACTIONS(1055), + [anon_sym_instanceof] = ACTIONS(1053), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_void] = ACTIONS(1051), + [anon_sym_delete] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1049), + [sym_number] = ACTIONS(1049), + [sym_this] = ACTIONS(1051), + [sym_super] = ACTIONS(1051), + [sym_true] = ACTIONS(1051), + [sym_false] = ACTIONS(1051), + [sym_null] = ACTIONS(1051), + [sym_undefined] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1051), + [anon_sym_abstract] = ACTIONS(1051), + [anon_sym_get] = ACTIONS(1051), + [anon_sym_set] = ACTIONS(1051), + [anon_sym_declare] = ACTIONS(1051), + [anon_sym_public] = ACTIONS(1051), + [anon_sym_private] = ACTIONS(1051), + [anon_sym_protected] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_any] = ACTIONS(1051), + [anon_sym_number] = ACTIONS(1051), + [anon_sym_boolean] = ACTIONS(1051), + [anon_sym_string] = ACTIONS(1051), + [anon_sym_symbol] = ACTIONS(1051), + [anon_sym_interface] = ACTIONS(1051), + [anon_sym_enum] = ACTIONS(1051), + [sym_readonly] = ACTIONS(1051), + [sym__automatic_semicolon] = ACTIONS(1057), }, - [104] = { + [103] = { [ts_builtin_sym_end] = ACTIONS(1059), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(1061), @@ -22989,7 +23106,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1061), [sym__automatic_semicolon] = ACTIONS(1067), }, - [105] = { + [104] = { [ts_builtin_sym_end] = ACTIONS(1069), [sym_identifier] = ACTIONS(1071), [anon_sym_export] = ACTIONS(1071), @@ -23091,50 +23208,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1071), [anon_sym_enum] = ACTIONS(1071), [sym_readonly] = ACTIONS(1071), + [sym__automatic_semicolon] = ACTIONS(1075), + }, + [105] = { + [ts_builtin_sym_end] = ACTIONS(893), + [sym_identifier] = ACTIONS(895), + [anon_sym_export] = ACTIONS(895), + [anon_sym_STAR] = ACTIONS(895), + [anon_sym_default] = ACTIONS(895), + [anon_sym_as] = ACTIONS(895), + [anon_sym_namespace] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_type] = ACTIONS(895), + [anon_sym_typeof] = ACTIONS(895), + [anon_sym_import] = ACTIONS(895), + [anon_sym_var] = ACTIONS(895), + [anon_sym_let] = ACTIONS(895), + [anon_sym_const] = ACTIONS(895), + [anon_sym_BANG] = ACTIONS(895), + [anon_sym_if] = ACTIONS(895), + [anon_sym_else] = ACTIONS(895), + [anon_sym_switch] = ACTIONS(895), + [anon_sym_for] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_await] = ACTIONS(895), + [anon_sym_in] = ACTIONS(895), + [anon_sym_while] = ACTIONS(895), + [anon_sym_do] = ACTIONS(895), + [anon_sym_try] = ACTIONS(895), + [anon_sym_with] = ACTIONS(895), + [anon_sym_break] = ACTIONS(895), + [anon_sym_continue] = ACTIONS(895), + [anon_sym_debugger] = ACTIONS(895), + [anon_sym_return] = ACTIONS(895), + [anon_sym_throw] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_case] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_SLASH] = ACTIONS(895), + [anon_sym_DOT] = ACTIONS(895), + [anon_sym_class] = ACTIONS(895), + [anon_sym_async] = ACTIONS(895), + [anon_sym_function] = ACTIONS(895), + [anon_sym_QMARK_DOT] = ACTIONS(893), + [anon_sym_new] = ACTIONS(895), + [anon_sym_QMARK] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(893), + [anon_sym_PIPE_PIPE] = ACTIONS(893), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_GT_GT_GT] = ACTIONS(893), + [anon_sym_LT_LT] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(895), + [anon_sym_CARET] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_PERCENT] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_EQ_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_QMARK_QMARK] = ACTIONS(893), + [anon_sym_instanceof] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(893), + [anon_sym_void] = ACTIONS(895), + [anon_sym_delete] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(893), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(893), + [sym_number] = ACTIONS(893), + [sym_this] = ACTIONS(895), + [sym_super] = ACTIONS(895), + [sym_true] = ACTIONS(895), + [sym_false] = ACTIONS(895), + [sym_null] = ACTIONS(895), + [sym_undefined] = ACTIONS(895), + [anon_sym_AT] = ACTIONS(893), + [anon_sym_static] = ACTIONS(895), + [anon_sym_abstract] = ACTIONS(895), + [anon_sym_get] = ACTIONS(895), + [anon_sym_set] = ACTIONS(895), + [anon_sym_declare] = ACTIONS(895), + [anon_sym_public] = ACTIONS(895), + [anon_sym_private] = ACTIONS(895), + [anon_sym_protected] = ACTIONS(895), + [anon_sym_module] = ACTIONS(895), + [anon_sym_any] = ACTIONS(895), + [anon_sym_number] = ACTIONS(895), + [anon_sym_boolean] = ACTIONS(895), + [anon_sym_string] = ACTIONS(895), + [anon_sym_symbol] = ACTIONS(895), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(895), + [sym_readonly] = ACTIONS(895), [sym__automatic_semicolon] = ACTIONS(1077), }, [106] = { - [sym_import] = STATE(1420), - [sym_expression_statement] = STATE(147), - [sym_variable_declaration] = STATE(147), - [sym_lexical_declaration] = STATE(147), - [sym_empty_statement] = STATE(147), - [sym_parenthesized_expression] = STATE(744), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1322), - [sym_array] = STATE(1316), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(744), - [sym_subscript_expression] = STATE(744), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1473), + [sym_expression_statement] = STATE(146), + [sym_variable_declaration] = STATE(146), + [sym_lexical_declaration] = STATE(146), + [sym_empty_statement] = STATE(146), + [sym_parenthesized_expression] = STATE(742), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1318), + [sym_array] = STATE(1322), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(742), + [sym_subscript_expression] = STATE(742), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_as_expression] = STATE(1284), - [sym_internal_module] = STATE(1284), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1263), + [sym_internal_module] = STATE(1263), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(1079), [anon_sym_export] = ACTIONS(1081), @@ -23193,47 +23414,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1081), }, [107] = { - [sym_import] = STATE(1420), - [sym_expression_statement] = STATE(144), - [sym_variable_declaration] = STATE(144), - [sym_lexical_declaration] = STATE(144), - [sym_empty_statement] = STATE(144), - [sym_parenthesized_expression] = STATE(744), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1322), - [sym_array] = STATE(1316), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(744), - [sym_subscript_expression] = STATE(744), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1473), + [sym_expression_statement] = STATE(133), + [sym_variable_declaration] = STATE(133), + [sym_lexical_declaration] = STATE(133), + [sym_empty_statement] = STATE(133), + [sym_parenthesized_expression] = STATE(742), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1318), + [sym_array] = STATE(1322), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(742), + [sym_subscript_expression] = STATE(742), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_as_expression] = STATE(1284), - [sym_internal_module] = STATE(1284), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1263), + [sym_internal_module] = STATE(1263), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(1079), [anon_sym_export] = ACTIONS(1081), @@ -23292,47 +23513,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1081), }, [108] = { - [sym_import] = STATE(1420), - [sym_expression_statement] = STATE(135), - [sym_variable_declaration] = STATE(135), - [sym_lexical_declaration] = STATE(135), - [sym_empty_statement] = STATE(135), - [sym_parenthesized_expression] = STATE(744), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1322), - [sym_array] = STATE(1316), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(744), - [sym_subscript_expression] = STATE(744), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1473), + [sym_expression_statement] = STATE(140), + [sym_variable_declaration] = STATE(140), + [sym_lexical_declaration] = STATE(140), + [sym_empty_statement] = STATE(140), + [sym_parenthesized_expression] = STATE(742), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1318), + [sym_array] = STATE(1322), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(742), + [sym_subscript_expression] = STATE(742), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_as_expression] = STATE(1284), - [sym_internal_module] = STATE(1284), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1263), + [sym_internal_module] = STATE(1263), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(1079), [anon_sym_export] = ACTIONS(1081), @@ -23391,49 +23612,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1081), }, [109] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1154), - [sym_yield_expression] = STATE(1154), - [sym_object] = STATE(1557), - [sym_array] = STATE(1520), - [sym_jsx_element] = STATE(1154), - [sym_jsx_fragment] = STATE(1154), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1154), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1154), - [sym_await_expression] = STATE(1154), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1154), - [sym_augmented_assignment_expression] = STATE(1154), - [sym_ternary_expression] = STATE(1154), - [sym_binary_expression] = STATE(1154), - [sym_unary_expression] = STATE(1154), - [sym_update_expression] = STATE(1154), - [sym_sequence_expression] = STATE(3124), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1048), + [sym_yield_expression] = STATE(1048), + [sym_object] = STATE(1461), + [sym_array] = STATE(1468), + [sym_jsx_element] = STATE(1048), + [sym_jsx_fragment] = STATE(1048), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1048), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1048), + [sym_await_expression] = STATE(1048), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1048), + [sym_augmented_assignment_expression] = STATE(1048), + [sym_ternary_expression] = STATE(1048), + [sym_binary_expression] = STATE(1048), + [sym_unary_expression] = STATE(1048), + [sym_update_expression] = STATE(1048), + [sym_sequence_expression] = STATE(3103), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_rest_parameter] = STATE(2666), - [sym_non_null_expression] = STATE(1154), - [sym_as_expression] = STATE(1154), - [sym_internal_module] = STATE(1154), + [sym_formal_parameters] = STATE(2340), + [sym_rest_parameter] = STATE(2725), + [sym_non_null_expression] = STATE(1048), + [sym_as_expression] = STATE(1048), + [sym_internal_module] = STATE(1048), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(1791), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(1091), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), @@ -23489,49 +23710,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(519), }, [110] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1030), - [sym_yield_expression] = STATE(1030), - [sym_object] = STATE(1557), - [sym_array] = STATE(1520), - [sym_jsx_element] = STATE(1030), - [sym_jsx_fragment] = STATE(1030), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1030), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1030), - [sym_await_expression] = STATE(1030), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1030), - [sym_augmented_assignment_expression] = STATE(1030), - [sym_ternary_expression] = STATE(1030), - [sym_binary_expression] = STATE(1030), - [sym_unary_expression] = STATE(1030), - [sym_update_expression] = STATE(1030), - [sym_sequence_expression] = STATE(3309), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1056), + [sym_yield_expression] = STATE(1056), + [sym_object] = STATE(1461), + [sym_array] = STATE(1468), + [sym_jsx_element] = STATE(1056), + [sym_jsx_fragment] = STATE(1056), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1056), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1056), + [sym_await_expression] = STATE(1056), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1056), + [sym_augmented_assignment_expression] = STATE(1056), + [sym_ternary_expression] = STATE(1056), + [sym_binary_expression] = STATE(1056), + [sym_unary_expression] = STATE(1056), + [sym_update_expression] = STATE(1056), + [sym_sequence_expression] = STATE(3158), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_rest_parameter] = STATE(2666), - [sym_non_null_expression] = STATE(1030), - [sym_as_expression] = STATE(1030), - [sym_internal_module] = STATE(1030), + [sym_formal_parameters] = STATE(2340), + [sym_rest_parameter] = STATE(2725), + [sym_non_null_expression] = STATE(1056), + [sym_as_expression] = STATE(1056), + [sym_internal_module] = STATE(1056), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(1791), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(1091), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), @@ -23587,49 +23808,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(519), }, [111] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1045), - [sym_yield_expression] = STATE(1045), - [sym_object] = STATE(1557), - [sym_array] = STATE(1520), - [sym_jsx_element] = STATE(1045), - [sym_jsx_fragment] = STATE(1045), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1045), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1045), - [sym_await_expression] = STATE(1045), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1045), - [sym_augmented_assignment_expression] = STATE(1045), - [sym_ternary_expression] = STATE(1045), - [sym_binary_expression] = STATE(1045), - [sym_unary_expression] = STATE(1045), - [sym_update_expression] = STATE(1045), - [sym_sequence_expression] = STATE(3139), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1144), + [sym_yield_expression] = STATE(1144), + [sym_object] = STATE(1461), + [sym_array] = STATE(1468), + [sym_jsx_element] = STATE(1144), + [sym_jsx_fragment] = STATE(1144), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1144), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1144), + [sym_await_expression] = STATE(1144), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1144), + [sym_augmented_assignment_expression] = STATE(1144), + [sym_ternary_expression] = STATE(1144), + [sym_binary_expression] = STATE(1144), + [sym_unary_expression] = STATE(1144), + [sym_update_expression] = STATE(1144), + [sym_sequence_expression] = STATE(3121), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_rest_parameter] = STATE(2666), - [sym_non_null_expression] = STATE(1045), - [sym_as_expression] = STATE(1045), - [sym_internal_module] = STATE(1045), + [sym_formal_parameters] = STATE(2340), + [sym_rest_parameter] = STATE(2725), + [sym_non_null_expression] = STATE(1144), + [sym_as_expression] = STATE(1144), + [sym_internal_module] = STATE(1144), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(1791), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(1775), [sym_identifier] = ACTIONS(1091), [anon_sym_export] = ACTIONS(449), [anon_sym_namespace] = ACTIONS(453), @@ -23685,43 +23906,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(519), }, [112] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1003), - [sym_yield_expression] = STATE(1003), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1003), - [sym_jsx_fragment] = STATE(1003), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1003), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1003), - [sym_await_expression] = STATE(1003), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(1003), - [sym_ternary_expression] = STATE(1003), - [sym_binary_expression] = STATE(1003), - [sym_unary_expression] = STATE(1003), - [sym_update_expression] = STATE(1003), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1006), + [sym_yield_expression] = STATE(1006), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1006), + [sym_jsx_fragment] = STATE(1006), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1006), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1006), + [sym_await_expression] = STATE(1006), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1006), + [sym_augmented_assignment_expression] = STATE(1006), + [sym_ternary_expression] = STATE(1006), + [sym_binary_expression] = STATE(1006), + [sym_unary_expression] = STATE(1006), + [sym_update_expression] = STATE(1006), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1003), - [sym_as_expression] = STATE(1003), - [sym_internal_module] = STATE(1003), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1006), + [sym_as_expression] = STATE(1006), + [sym_internal_module] = STATE(1006), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -23782,163 +24003,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1095), }, [113] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1262), - [sym_yield_expression] = STATE(1262), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1262), - [sym_jsx_fragment] = STATE(1262), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1262), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1262), - [sym_await_expression] = STATE(1262), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1262), - [sym_augmented_assignment_expression] = STATE(1262), - [sym_spread_element] = STATE(2662), - [sym_ternary_expression] = STATE(1262), - [sym_binary_expression] = STATE(1262), - [sym_unary_expression] = STATE(1262), - [sym_update_expression] = STATE(1262), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1262), - [sym_as_expression] = STATE(1262), - [sym_internal_module] = STATE(1262), - [sym_mapped_type_clause] = STATE(3069), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2663), - [sym_identifier] = ACTIONS(1099), - [anon_sym_export] = ACTIONS(1101), - [anon_sym_namespace] = ACTIONS(1103), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_type] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(497), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1105), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1101), - [anon_sym_get] = ACTIONS(1101), - [anon_sym_set] = ACTIONS(1101), - [anon_sym_declare] = ACTIONS(1101), - [anon_sym_public] = ACTIONS(1101), - [anon_sym_private] = ACTIONS(1101), - [anon_sym_protected] = ACTIONS(1101), - [anon_sym_module] = ACTIONS(1101), - [anon_sym_any] = ACTIONS(1101), - [anon_sym_number] = ACTIONS(1101), - [anon_sym_boolean] = ACTIONS(1101), - [anon_sym_string] = ACTIONS(1101), - [anon_sym_symbol] = ACTIONS(1101), - [sym_readonly] = ACTIONS(1101), - }, - [114] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1003), - [sym_yield_expression] = STATE(1003), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1003), - [sym_jsx_fragment] = STATE(1003), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1003), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1003), - [sym_await_expression] = STATE(1003), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(1003), - [sym_ternary_expression] = STATE(1003), - [sym_binary_expression] = STATE(1003), - [sym_unary_expression] = STATE(1003), - [sym_update_expression] = STATE(1003), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1253), + [sym_yield_expression] = STATE(1253), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1253), + [sym_jsx_fragment] = STATE(1253), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1253), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1253), + [sym_await_expression] = STATE(1253), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1253), + [sym_augmented_assignment_expression] = STATE(1253), + [sym_spread_element] = STATE(2673), + [sym_ternary_expression] = STATE(1253), + [sym_binary_expression] = STATE(1253), + [sym_unary_expression] = STATE(1253), + [sym_update_expression] = STATE(1253), + [sym_sequence_expression] = STATE(3137), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1003), - [sym_as_expression] = STATE(1003), - [sym_internal_module] = STATE(1003), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1253), + [sym_as_expression] = STATE(1253), + [sym_internal_module] = STATE(1253), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2674), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(533), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(1095), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(551), [anon_sym_LT] = ACTIONS(473), - [anon_sym_GT] = ACTIONS(1095), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), [anon_sym_new] = ACTIONS(575), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(123), [anon_sym_PLUS] = ACTIONS(577), [anon_sym_DASH] = ACTIONS(577), [anon_sym_TILDE] = ACTIONS(461), @@ -23973,53 +24098,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [115] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1309), - [sym_yield_expression] = STATE(1309), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1309), - [sym_jsx_fragment] = STATE(1309), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1309), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1309), - [sym_await_expression] = STATE(1309), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1309), - [sym_augmented_assignment_expression] = STATE(1309), - [sym_spread_element] = STATE(2662), - [sym_ternary_expression] = STATE(1309), - [sym_binary_expression] = STATE(1309), - [sym_unary_expression] = STATE(1309), - [sym_update_expression] = STATE(1309), - [sym_sequence_expression] = STATE(3303), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [114] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1307), + [sym_yield_expression] = STATE(1307), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1307), + [sym_jsx_fragment] = STATE(1307), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1307), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1307), + [sym_await_expression] = STATE(1307), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1307), + [sym_augmented_assignment_expression] = STATE(1307), + [sym_spread_element] = STATE(2673), + [sym_ternary_expression] = STATE(1307), + [sym_binary_expression] = STATE(1307), + [sym_unary_expression] = STATE(1307), + [sym_update_expression] = STATE(1307), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1309), - [sym_as_expression] = STATE(1309), - [sym_internal_module] = STATE(1309), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2663), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1307), + [sym_as_expression] = STATE(1307), + [sym_internal_module] = STATE(1307), + [sym_mapped_type_clause] = STATE(3092), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(1099), + [anon_sym_export] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1103), [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(533), - [anon_sym_type] = ACTIONS(527), + [anon_sym_type] = ACTIONS(1101), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), @@ -24027,11 +24152,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_RBRACK] = ACTIONS(551), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(1105), [anon_sym_function] = ACTIONS(481), [anon_sym_new] = ACTIONS(575), [anon_sym_DOT_DOT_DOT] = ACTIONS(123), @@ -24054,41 +24179,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(1101), + [anon_sym_get] = ACTIONS(1101), + [anon_sym_set] = ACTIONS(1101), + [anon_sym_declare] = ACTIONS(1101), + [anon_sym_public] = ACTIONS(1101), + [anon_sym_private] = ACTIONS(1101), + [anon_sym_protected] = ACTIONS(1101), + [anon_sym_module] = ACTIONS(1101), + [anon_sym_any] = ACTIONS(1101), + [anon_sym_number] = ACTIONS(1101), + [anon_sym_boolean] = ACTIONS(1101), + [anon_sym_string] = ACTIONS(1101), + [anon_sym_symbol] = ACTIONS(1101), + [sym_readonly] = ACTIONS(1101), }, - [116] = { - [sym_export_clause] = STATE(2570), - [sym__declaration] = STATE(546), - [sym_variable_declaration] = STATE(546), - [sym_lexical_declaration] = STATE(546), - [sym_class_declaration] = STATE(546), - [sym_function_declaration] = STATE(546), - [sym_generator_function_declaration] = STATE(546), + [115] = { + [sym_export_clause] = STATE(2545), + [sym__declaration] = STATE(557), + [sym_variable_declaration] = STATE(557), + [sym_lexical_declaration] = STATE(557), + [sym_class_declaration] = STATE(557), + [sym_function_declaration] = STATE(557), + [sym_generator_function_declaration] = STATE(557), [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(546), - [sym_ambient_declaration] = STATE(546), - [sym_abstract_class_declaration] = STATE(546), - [sym_module] = STATE(546), - [sym_internal_module] = STATE(546), - [sym_import_alias] = STATE(546), - [sym_interface_declaration] = STATE(546), - [sym_enum_declaration] = STATE(546), - [sym_type_alias_declaration] = STATE(546), - [aux_sym_export_statement_repeat1] = STATE(2571), - [aux_sym_object_repeat1] = STATE(2782), + [sym_function_signature] = STATE(557), + [sym_ambient_declaration] = STATE(557), + [sym_abstract_class_declaration] = STATE(557), + [sym_module] = STATE(557), + [sym_internal_module] = STATE(557), + [sym_import_alias] = STATE(557), + [sym_interface_declaration] = STATE(557), + [sym_enum_declaration] = STATE(557), + [sym_type_alias_declaration] = STATE(557), + [aux_sym_export_statement_repeat1] = STATE(2544), + [aux_sym_object_repeat1] = STATE(2742), [anon_sym_STAR] = ACTIONS(1107), [anon_sym_default] = ACTIONS(1109), [anon_sym_EQ] = ACTIONS(1111), @@ -24165,26 +24290,26 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1168), [sym__automatic_semicolon] = ACTIONS(1119), }, - [117] = { - [sym_export_clause] = STATE(2570), - [sym__declaration] = STATE(546), - [sym_variable_declaration] = STATE(546), - [sym_lexical_declaration] = STATE(546), - [sym_class_declaration] = STATE(546), - [sym_function_declaration] = STATE(546), - [sym_generator_function_declaration] = STATE(546), + [116] = { + [sym_export_clause] = STATE(2545), + [sym__declaration] = STATE(557), + [sym_variable_declaration] = STATE(557), + [sym_lexical_declaration] = STATE(557), + [sym_class_declaration] = STATE(557), + [sym_function_declaration] = STATE(557), + [sym_generator_function_declaration] = STATE(557), [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(546), - [sym_ambient_declaration] = STATE(546), - [sym_abstract_class_declaration] = STATE(546), - [sym_module] = STATE(546), - [sym_internal_module] = STATE(546), - [sym_import_alias] = STATE(546), - [sym_interface_declaration] = STATE(546), - [sym_enum_declaration] = STATE(546), - [sym_type_alias_declaration] = STATE(546), - [aux_sym_export_statement_repeat1] = STATE(2571), - [aux_sym_object_repeat1] = STATE(2778), + [sym_function_signature] = STATE(557), + [sym_ambient_declaration] = STATE(557), + [sym_abstract_class_declaration] = STATE(557), + [sym_module] = STATE(557), + [sym_internal_module] = STATE(557), + [sym_import_alias] = STATE(557), + [sym_interface_declaration] = STATE(557), + [sym_enum_declaration] = STATE(557), + [sym_type_alias_declaration] = STATE(557), + [aux_sym_export_statement_repeat1] = STATE(2544), + [aux_sym_object_repeat1] = STATE(2746), [anon_sym_STAR] = ACTIONS(1107), [anon_sym_default] = ACTIONS(1109), [anon_sym_EQ] = ACTIONS(1111), @@ -24261,47 +24386,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1168), [sym__automatic_semicolon] = ACTIONS(1119), }, - [118] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1190), - [sym_yield_expression] = STATE(1190), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1190), - [sym_jsx_fragment] = STATE(1190), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1190), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1190), - [sym_await_expression] = STATE(1190), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1190), - [sym_augmented_assignment_expression] = STATE(1190), - [sym_spread_element] = STATE(2662), - [sym_ternary_expression] = STATE(1190), - [sym_binary_expression] = STATE(1190), - [sym_unary_expression] = STATE(1190), - [sym_update_expression] = STATE(1190), - [sym_sequence_expression] = STATE(3303), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [117] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1270), + [sym_yield_expression] = STATE(1270), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1270), + [sym_jsx_fragment] = STATE(1270), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1270), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1270), + [sym_await_expression] = STATE(1270), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1270), + [sym_augmented_assignment_expression] = STATE(1270), + [sym_spread_element] = STATE(2673), + [sym_ternary_expression] = STATE(1270), + [sym_binary_expression] = STATE(1270), + [sym_unary_expression] = STATE(1270), + [sym_update_expression] = STATE(1270), + [sym_sequence_expression] = STATE(3137), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1190), - [sym_as_expression] = STATE(1190), - [sym_internal_module] = STATE(1190), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2663), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1270), + [sym_as_expression] = STATE(1270), + [sym_internal_module] = STATE(1270), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2674), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -24315,7 +24440,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_RBRACK] = ACTIONS(551), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -24357,26 +24482,122 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, + [118] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1006), + [sym_yield_expression] = STATE(1006), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1006), + [sym_jsx_fragment] = STATE(1006), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1006), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1006), + [sym_await_expression] = STATE(1006), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1006), + [sym_augmented_assignment_expression] = STATE(1006), + [sym_ternary_expression] = STATE(1006), + [sym_binary_expression] = STATE(1006), + [sym_unary_expression] = STATE(1006), + [sym_update_expression] = STATE(1006), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1006), + [sym_as_expression] = STATE(1006), + [sym_internal_module] = STATE(1006), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(1095), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(539), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(575), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), + }, [119] = { - [sym_export_clause] = STATE(2570), - [sym__declaration] = STATE(546), - [sym_variable_declaration] = STATE(546), - [sym_lexical_declaration] = STATE(546), - [sym_class_declaration] = STATE(546), - [sym_function_declaration] = STATE(546), - [sym_generator_function_declaration] = STATE(546), + [sym_export_clause] = STATE(2545), + [sym__declaration] = STATE(557), + [sym_variable_declaration] = STATE(557), + [sym_lexical_declaration] = STATE(557), + [sym_class_declaration] = STATE(557), + [sym_function_declaration] = STATE(557), + [sym_generator_function_declaration] = STATE(557), [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(546), - [sym_ambient_declaration] = STATE(546), - [sym_abstract_class_declaration] = STATE(546), - [sym_module] = STATE(546), - [sym_internal_module] = STATE(546), - [sym_import_alias] = STATE(546), - [sym_interface_declaration] = STATE(546), - [sym_enum_declaration] = STATE(546), - [sym_type_alias_declaration] = STATE(546), - [aux_sym_export_statement_repeat1] = STATE(2571), - [aux_sym_object_repeat1] = STATE(2740), + [sym_function_signature] = STATE(557), + [sym_ambient_declaration] = STATE(557), + [sym_abstract_class_declaration] = STATE(557), + [sym_module] = STATE(557), + [sym_internal_module] = STATE(557), + [sym_import_alias] = STATE(557), + [sym_interface_declaration] = STATE(557), + [sym_enum_declaration] = STATE(557), + [sym_type_alias_declaration] = STATE(557), + [aux_sym_export_statement_repeat1] = STATE(2544), + [aux_sym_object_repeat1] = STATE(2824), [anon_sym_STAR] = ACTIONS(1107), [anon_sym_default] = ACTIONS(1109), [anon_sym_EQ] = ACTIONS(1111), @@ -24454,59 +24675,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1119), }, [120] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1268), - [sym_yield_expression] = STATE(1268), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1268), - [sym_jsx_fragment] = STATE(1268), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1268), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1268), - [sym_await_expression] = STATE(1268), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1268), - [sym_augmented_assignment_expression] = STATE(1268), - [sym_spread_element] = STATE(2737), - [sym_ternary_expression] = STATE(1268), - [sym_binary_expression] = STATE(1268), - [sym_unary_expression] = STATE(1268), - [sym_update_expression] = STATE(1268), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1313), + [sym_yield_expression] = STATE(1313), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1313), + [sym_jsx_fragment] = STATE(1313), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1313), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1313), + [sym_await_expression] = STATE(1313), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1313), + [sym_augmented_assignment_expression] = STATE(1313), + [sym_spread_element] = STATE(2714), + [sym_ternary_expression] = STATE(1313), + [sym_binary_expression] = STATE(1313), + [sym_unary_expression] = STATE(1313), + [sym_update_expression] = STATE(1313), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1268), - [sym_as_expression] = STATE(1268), - [sym_internal_module] = STATE(1268), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2650), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1313), + [sym_as_expression] = STATE(1313), + [sym_internal_module] = STATE(1313), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(533), + [anon_sym_COMMA] = ACTIONS(1174), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(1174), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(551), + [anon_sym_RBRACK] = ACTIONS(1174), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -24549,45 +24770,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [121] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1272), - [sym_yield_expression] = STATE(1272), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1272), - [sym_jsx_fragment] = STATE(1272), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1272), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1272), - [sym_await_expression] = STATE(1272), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1272), - [sym_augmented_assignment_expression] = STATE(1272), - [sym_spread_element] = STATE(2830), - [sym_ternary_expression] = STATE(1272), - [sym_binary_expression] = STATE(1272), - [sym_unary_expression] = STATE(1272), - [sym_update_expression] = STATE(1272), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1234), + [sym_yield_expression] = STATE(1234), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1234), + [sym_jsx_fragment] = STATE(1234), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1234), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1234), + [sym_await_expression] = STATE(1234), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1234), + [sym_augmented_assignment_expression] = STATE(1234), + [sym_spread_element] = STATE(2756), + [sym_ternary_expression] = STATE(1234), + [sym_binary_expression] = STATE(1234), + [sym_unary_expression] = STATE(1234), + [sym_update_expression] = STATE(1234), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1272), - [sym_as_expression] = STATE(1272), - [sym_internal_module] = STATE(1272), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2829), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1234), + [sym_as_expression] = STATE(1234), + [sym_internal_module] = STATE(1234), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2802), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -24601,7 +24822,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(1174), + [anon_sym_RBRACK] = ACTIONS(537), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -24644,45 +24865,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [122] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1185), - [sym_yield_expression] = STATE(1185), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1185), - [sym_jsx_fragment] = STATE(1185), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1185), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1185), - [sym_await_expression] = STATE(1185), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1185), - [sym_augmented_assignment_expression] = STATE(1185), - [sym_spread_element] = STATE(2683), - [sym_ternary_expression] = STATE(1185), - [sym_binary_expression] = STATE(1185), - [sym_unary_expression] = STATE(1185), - [sym_update_expression] = STATE(1185), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1312), + [sym_yield_expression] = STATE(1312), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1312), + [sym_jsx_fragment] = STATE(1312), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1312), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1312), + [sym_await_expression] = STATE(1312), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1312), + [sym_augmented_assignment_expression] = STATE(1312), + [sym_spread_element] = STATE(2720), + [sym_ternary_expression] = STATE(1312), + [sym_binary_expression] = STATE(1312), + [sym_unary_expression] = STATE(1312), + [sym_update_expression] = STATE(1312), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1185), - [sym_as_expression] = STATE(1185), - [sym_internal_module] = STATE(1185), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2684), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1312), + [sym_as_expression] = STATE(1312), + [sym_internal_module] = STATE(1312), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2719), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -24739,45 +24960,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [123] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1276), - [sym_yield_expression] = STATE(1276), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1276), - [sym_jsx_fragment] = STATE(1276), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1276), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1276), - [sym_await_expression] = STATE(1276), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1276), - [sym_augmented_assignment_expression] = STATE(1276), - [sym_spread_element] = STATE(2723), - [sym_ternary_expression] = STATE(1276), - [sym_binary_expression] = STATE(1276), - [sym_unary_expression] = STATE(1276), - [sym_update_expression] = STATE(1276), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1308), + [sym_yield_expression] = STATE(1308), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1308), + [sym_jsx_fragment] = STATE(1308), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1308), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1308), + [sym_await_expression] = STATE(1308), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1308), + [sym_augmented_assignment_expression] = STATE(1308), + [sym_spread_element] = STATE(2739), + [sym_ternary_expression] = STATE(1308), + [sym_binary_expression] = STATE(1308), + [sym_unary_expression] = STATE(1308), + [sym_update_expression] = STATE(1308), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1276), - [sym_as_expression] = STATE(1276), - [sym_internal_module] = STATE(1276), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2722), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1308), + [sym_as_expression] = STATE(1308), + [sym_internal_module] = STATE(1308), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2740), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -24788,10 +25009,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(1178), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(553), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -24834,45 +25055,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [124] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1267), - [sym_yield_expression] = STATE(1267), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1267), - [sym_jsx_fragment] = STATE(1267), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1267), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1267), - [sym_await_expression] = STATE(1267), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1267), - [sym_augmented_assignment_expression] = STATE(1267), - [sym_spread_element] = STATE(2797), - [sym_ternary_expression] = STATE(1267), - [sym_binary_expression] = STATE(1267), - [sym_unary_expression] = STATE(1267), - [sym_update_expression] = STATE(1267), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1271), + [sym_yield_expression] = STATE(1271), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1271), + [sym_jsx_fragment] = STATE(1271), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1271), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1271), + [sym_await_expression] = STATE(1271), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1271), + [sym_augmented_assignment_expression] = STATE(1271), + [sym_spread_element] = STATE(2756), + [sym_ternary_expression] = STATE(1271), + [sym_binary_expression] = STATE(1271), + [sym_unary_expression] = STATE(1271), + [sym_update_expression] = STATE(1271), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1267), - [sym_as_expression] = STATE(1267), - [sym_internal_module] = STATE(1267), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2796), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1271), + [sym_as_expression] = STATE(1271), + [sym_internal_module] = STATE(1271), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2802), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -24883,10 +25104,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(1180), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(537), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -24929,45 +25150,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [125] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1192), - [sym_yield_expression] = STATE(1192), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1192), - [sym_jsx_fragment] = STATE(1192), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1192), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1192), - [sym_await_expression] = STATE(1192), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1192), - [sym_augmented_assignment_expression] = STATE(1192), - [sym_spread_element] = STATE(2813), - [sym_ternary_expression] = STATE(1192), - [sym_binary_expression] = STATE(1192), - [sym_unary_expression] = STATE(1192), - [sym_update_expression] = STATE(1192), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1257), + [sym_yield_expression] = STATE(1257), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1257), + [sym_jsx_fragment] = STATE(1257), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1257), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1257), + [sym_await_expression] = STATE(1257), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1257), + [sym_augmented_assignment_expression] = STATE(1257), + [sym_spread_element] = STATE(2821), + [sym_ternary_expression] = STATE(1257), + [sym_binary_expression] = STATE(1257), + [sym_unary_expression] = STATE(1257), + [sym_update_expression] = STATE(1257), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1192), - [sym_as_expression] = STATE(1192), - [sym_internal_module] = STATE(1192), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2809), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1257), + [sym_as_expression] = STATE(1257), + [sym_internal_module] = STATE(1257), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2822), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -24978,10 +25199,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(1178), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(553), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -25024,45 +25245,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [126] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1260), - [sym_yield_expression] = STATE(1260), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1260), - [sym_jsx_fragment] = STATE(1260), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1260), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1260), - [sym_await_expression] = STATE(1260), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1260), - [sym_augmented_assignment_expression] = STATE(1260), - [sym_spread_element] = STATE(2737), - [sym_ternary_expression] = STATE(1260), - [sym_binary_expression] = STATE(1260), - [sym_unary_expression] = STATE(1260), - [sym_update_expression] = STATE(1260), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1190), + [sym_yield_expression] = STATE(1190), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1190), + [sym_jsx_fragment] = STATE(1190), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1190), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1190), + [sym_await_expression] = STATE(1190), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1190), + [sym_augmented_assignment_expression] = STATE(1190), + [sym_spread_element] = STATE(2799), + [sym_ternary_expression] = STATE(1190), + [sym_binary_expression] = STATE(1190), + [sym_unary_expression] = STATE(1190), + [sym_update_expression] = STATE(1190), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1260), - [sym_as_expression] = STATE(1260), - [sym_internal_module] = STATE(1260), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2650), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1190), + [sym_as_expression] = STATE(1190), + [sym_internal_module] = STATE(1190), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2800), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -25076,7 +25297,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(551), + [anon_sym_RBRACK] = ACTIONS(1180), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -25119,59 +25340,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [127] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1258), - [sym_yield_expression] = STATE(1258), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1258), - [sym_jsx_fragment] = STATE(1258), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1258), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1258), - [sym_await_expression] = STATE(1258), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1258), - [sym_augmented_assignment_expression] = STATE(1258), - [sym_spread_element] = STATE(2677), - [sym_ternary_expression] = STATE(1258), - [sym_binary_expression] = STATE(1258), - [sym_unary_expression] = STATE(1258), - [sym_update_expression] = STATE(1258), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1232), + [sym_yield_expression] = STATE(1232), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1232), + [sym_jsx_fragment] = STATE(1232), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1232), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1232), + [sym_await_expression] = STATE(1232), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1232), + [sym_augmented_assignment_expression] = STATE(1232), + [sym_spread_element] = STATE(2673), + [sym_ternary_expression] = STATE(1232), + [sym_binary_expression] = STATE(1232), + [sym_unary_expression] = STATE(1232), + [sym_update_expression] = STATE(1232), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1258), - [sym_as_expression] = STATE(1258), - [sym_internal_module] = STATE(1258), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1232), + [sym_as_expression] = STATE(1232), + [sym_internal_module] = STATE(1232), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2674), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(1182), + [anon_sym_COMMA] = ACTIONS(533), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(1182), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(1182), + [anon_sym_RBRACK] = ACTIONS(551), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -25214,45 +25435,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [128] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1313), - [sym_yield_expression] = STATE(1313), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1313), - [sym_jsx_fragment] = STATE(1313), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1313), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1313), - [sym_await_expression] = STATE(1313), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1313), - [sym_augmented_assignment_expression] = STATE(1313), - [sym_spread_element] = STATE(2662), - [sym_ternary_expression] = STATE(1313), - [sym_binary_expression] = STATE(1313), - [sym_unary_expression] = STATE(1313), - [sym_update_expression] = STATE(1313), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1314), + [sym_yield_expression] = STATE(1314), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1314), + [sym_jsx_fragment] = STATE(1314), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1314), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1314), + [sym_await_expression] = STATE(1314), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1314), + [sym_augmented_assignment_expression] = STATE(1314), + [sym_spread_element] = STATE(2689), + [sym_ternary_expression] = STATE(1314), + [sym_binary_expression] = STATE(1314), + [sym_unary_expression] = STATE(1314), + [sym_update_expression] = STATE(1314), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1313), - [sym_as_expression] = STATE(1313), - [sym_internal_module] = STATE(1313), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2663), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1314), + [sym_as_expression] = STATE(1314), + [sym_internal_module] = STATE(1314), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2690), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -25263,10 +25484,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(1182), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(555), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -25309,45 +25530,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [129] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1281), - [sym_yield_expression] = STATE(1281), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1281), - [sym_jsx_fragment] = STATE(1281), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1281), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1281), - [sym_await_expression] = STATE(1281), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1281), - [sym_augmented_assignment_expression] = STATE(1281), - [sym_spread_element] = STATE(2746), - [sym_ternary_expression] = STATE(1281), - [sym_binary_expression] = STATE(1281), - [sym_unary_expression] = STATE(1281), - [sym_update_expression] = STATE(1281), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1304), + [sym_yield_expression] = STATE(1304), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1304), + [sym_jsx_fragment] = STATE(1304), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1304), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1304), + [sym_await_expression] = STATE(1304), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1304), + [sym_augmented_assignment_expression] = STATE(1304), + [sym_spread_element] = STATE(2787), + [sym_ternary_expression] = STATE(1304), + [sym_binary_expression] = STATE(1304), + [sym_unary_expression] = STATE(1304), + [sym_update_expression] = STATE(1304), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1281), - [sym_as_expression] = STATE(1281), - [sym_internal_module] = STATE(1281), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2745), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1304), + [sym_as_expression] = STATE(1304), + [sym_internal_module] = STATE(1304), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2786), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -25358,10 +25579,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(1184), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(555), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -25404,50 +25625,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [130] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1273), - [sym_yield_expression] = STATE(1273), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1273), - [sym_jsx_fragment] = STATE(1273), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1273), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1273), - [sym_await_expression] = STATE(1273), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1273), - [sym_augmented_assignment_expression] = STATE(1273), - [sym_spread_element] = STATE(2662), - [sym_ternary_expression] = STATE(1273), - [sym_binary_expression] = STATE(1273), - [sym_unary_expression] = STATE(1273), - [sym_update_expression] = STATE(1273), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1386), + [sym_yield_expression] = STATE(1386), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1386), + [sym_jsx_fragment] = STATE(1386), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1386), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1386), + [sym_await_expression] = STATE(1386), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1386), + [sym_augmented_assignment_expression] = STATE(1386), + [sym_spread_element] = STATE(2714), + [sym_ternary_expression] = STATE(1386), + [sym_binary_expression] = STATE(1386), + [sym_unary_expression] = STATE(1386), + [sym_update_expression] = STATE(1386), + [sym_sequence_expression] = STATE(2528), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1273), - [sym_as_expression] = STATE(1273), - [sym_internal_module] = STATE(1273), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2663), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1386), + [sym_as_expression] = STATE(1386), + [sym_internal_module] = STATE(1386), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(533), + [anon_sym_COMMA] = ACTIONS(1174), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -25456,7 +25677,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(555), + [anon_sym_RBRACK] = ACTIONS(1174), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -25499,45 +25720,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [131] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1283), - [sym_yield_expression] = STATE(1283), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1283), - [sym_jsx_fragment] = STATE(1283), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1283), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1283), - [sym_await_expression] = STATE(1283), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1283), - [sym_augmented_assignment_expression] = STATE(1283), - [sym_spread_element] = STATE(2733), - [sym_ternary_expression] = STATE(1283), - [sym_binary_expression] = STATE(1283), - [sym_unary_expression] = STATE(1283), - [sym_update_expression] = STATE(1283), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1219), + [sym_yield_expression] = STATE(1219), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1219), + [sym_jsx_fragment] = STATE(1219), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1219), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1219), + [sym_await_expression] = STATE(1219), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1219), + [sym_augmented_assignment_expression] = STATE(1219), + [sym_spread_element] = STATE(2793), + [sym_ternary_expression] = STATE(1219), + [sym_binary_expression] = STATE(1219), + [sym_unary_expression] = STATE(1219), + [sym_update_expression] = STATE(1219), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1283), - [sym_as_expression] = STATE(1283), - [sym_internal_module] = STATE(1283), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [aux_sym_array_repeat1] = STATE(2734), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1219), + [sym_as_expression] = STATE(1219), + [sym_internal_module] = STATE(1219), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2642), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -25548,10 +25769,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(459), [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(1184), [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(537), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -25594,50 +25815,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [132] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1337), - [sym_yield_expression] = STATE(1337), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1337), - [sym_jsx_fragment] = STATE(1337), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1337), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1337), - [sym_await_expression] = STATE(1337), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1337), - [sym_augmented_assignment_expression] = STATE(1337), - [sym_spread_element] = STATE(2677), - [sym_ternary_expression] = STATE(1337), - [sym_binary_expression] = STATE(1337), - [sym_unary_expression] = STATE(1337), - [sym_update_expression] = STATE(1337), - [sym_sequence_expression] = STATE(2599), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1237), + [sym_yield_expression] = STATE(1237), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1237), + [sym_jsx_fragment] = STATE(1237), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1237), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1237), + [sym_await_expression] = STATE(1237), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1237), + [sym_augmented_assignment_expression] = STATE(1237), + [sym_spread_element] = STATE(2673), + [sym_ternary_expression] = STATE(1237), + [sym_binary_expression] = STATE(1237), + [sym_unary_expression] = STATE(1237), + [sym_update_expression] = STATE(1237), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1337), - [sym_as_expression] = STATE(1337), - [sym_internal_module] = STATE(1337), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1237), + [sym_as_expression] = STATE(1237), + [sym_internal_module] = STATE(1237), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [aux_sym_array_repeat1] = STATE(2674), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(1182), + [anon_sym_COMMA] = ACTIONS(533), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -25646,7 +25867,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(467), [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_RBRACK] = ACTIONS(1182), + [anon_sym_RBRACK] = ACTIONS(551), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), @@ -25689,233 +25910,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [133] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1256), - [sym_yield_expression] = STATE(1256), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1256), - [sym_jsx_fragment] = STATE(1256), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1256), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1256), - [sym_await_expression] = STATE(1256), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1256), - [sym_augmented_assignment_expression] = STATE(1256), - [sym_ternary_expression] = STATE(1256), - [sym_binary_expression] = STATE(1256), - [sym_unary_expression] = STATE(1256), - [sym_update_expression] = STATE(1256), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1256), - [sym_as_expression] = STATE(1256), - [sym_internal_module] = STATE(1256), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [134] = { - [sym__declaration] = STATE(605), - [sym_variable_declaration] = STATE(605), - [sym_lexical_declaration] = STATE(605), - [sym_class_declaration] = STATE(605), - [sym_function_declaration] = STATE(605), - [sym_generator_function_declaration] = STATE(605), - [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(605), - [sym_ambient_declaration] = STATE(605), - [sym_abstract_class_declaration] = STATE(605), - [sym_module] = STATE(605), - [sym_internal_module] = STATE(605), - [sym_import_alias] = STATE(605), - [sym_interface_declaration] = STATE(605), - [sym_enum_declaration] = STATE(605), - [sym_type_alias_declaration] = STATE(605), - [aux_sym_export_statement_repeat1] = STATE(2571), - [aux_sym_object_repeat1] = STATE(2782), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), - [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_import] = ACTIONS(1125), - [anon_sym_var] = ACTIONS(1127), - [anon_sym_let] = ACTIONS(1129), - [anon_sym_const] = ACTIONS(1131), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1135), - [anon_sym_in] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1146), - [anon_sym_class] = ACTIONS(1148), - [anon_sym_async] = ACTIONS(1150), - [anon_sym_function] = ACTIONS(1152), - [anon_sym_EQ_GT] = ACTIONS(1154), - [anon_sym_QMARK_DOT] = ACTIONS(1156), - [anon_sym_PLUS_EQ] = ACTIONS(1158), - [anon_sym_DASH_EQ] = ACTIONS(1158), - [anon_sym_STAR_EQ] = ACTIONS(1158), - [anon_sym_SLASH_EQ] = ACTIONS(1158), - [anon_sym_PERCENT_EQ] = ACTIONS(1158), - [anon_sym_CARET_EQ] = ACTIONS(1158), - [anon_sym_AMP_EQ] = ACTIONS(1158), - [anon_sym_PIPE_EQ] = ACTIONS(1158), - [anon_sym_GT_GT_EQ] = ACTIONS(1158), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1158), - [anon_sym_LT_LT_EQ] = ACTIONS(1158), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1158), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1143), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_GT_GT_GT] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_STAR_STAR] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_QMARK_QMARK] = ACTIONS(1133), - [anon_sym_instanceof] = ACTIONS(1119), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1162), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_global] = ACTIONS(1192), - [anon_sym_interface] = ACTIONS(1166), - [anon_sym_enum] = ACTIONS(1168), - [sym__automatic_semicolon] = ACTIONS(1119), - }, - [135] = { - [sym_import] = STATE(1420), - [sym_expression_statement] = STATE(158), - [sym_empty_statement] = STATE(158), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1473), + [sym_expression_statement] = STATE(157), + [sym_empty_statement] = STATE(157), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_as_expression] = STATE(1284), - [sym_internal_module] = STATE(1284), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1263), + [sym_internal_module] = STATE(1263), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -25970,43 +26003,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [136] = { - [sym__declaration] = STATE(605), - [sym_variable_declaration] = STATE(605), - [sym_lexical_declaration] = STATE(605), - [sym_class_declaration] = STATE(605), - [sym_function_declaration] = STATE(605), - [sym_generator_function_declaration] = STATE(605), + [134] = { + [sym_export_clause] = STATE(2545), + [sym__declaration] = STATE(557), + [sym_variable_declaration] = STATE(557), + [sym_lexical_declaration] = STATE(557), + [sym_class_declaration] = STATE(557), + [sym_function_declaration] = STATE(557), + [sym_generator_function_declaration] = STATE(557), [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(605), - [sym_ambient_declaration] = STATE(605), - [sym_abstract_class_declaration] = STATE(605), - [sym_module] = STATE(605), - [sym_internal_module] = STATE(605), - [sym_import_alias] = STATE(605), - [sym_interface_declaration] = STATE(605), - [sym_enum_declaration] = STATE(605), - [sym_type_alias_declaration] = STATE(605), - [aux_sym_export_statement_repeat1] = STATE(2571), - [aux_sym_object_repeat1] = STATE(2740), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), - [anon_sym_as] = ACTIONS(1133), + [sym_function_signature] = STATE(557), + [sym_ambient_declaration] = STATE(557), + [sym_abstract_class_declaration] = STATE(557), + [sym_module] = STATE(557), + [sym_internal_module] = STATE(557), + [sym_import_alias] = STATE(557), + [sym_interface_declaration] = STATE(557), + [sym_enum_declaration] = STATE(557), + [sym_type_alias_declaration] = STATE(557), + [aux_sym_export_statement_repeat1] = STATE(2544), + [anon_sym_STAR] = ACTIONS(1107), + [anon_sym_default] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_as] = ACTIONS(1113), [anon_sym_namespace] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(1117), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1172), [anon_sym_type] = ACTIONS(1123), [anon_sym_import] = ACTIONS(1125), [anon_sym_var] = ACTIONS(1127), [anon_sym_let] = ACTIONS(1129), [anon_sym_const] = ACTIONS(1131), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1119), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_COLON] = ACTIONS(1188), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1133), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1146), @@ -26030,7 +26064,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1143), + [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -26058,143 +26092,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1160), [anon_sym_declare] = ACTIONS(1162), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_global] = ACTIONS(1192), + [anon_sym_module] = ACTIONS(1164), [anon_sym_interface] = ACTIONS(1166), [anon_sym_enum] = ACTIONS(1168), [sym__automatic_semicolon] = ACTIONS(1119), }, - [137] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1197), - [sym_yield_expression] = STATE(1197), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1197), - [sym_jsx_fragment] = STATE(1197), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1197), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1197), - [sym_await_expression] = STATE(1197), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1197), - [sym_augmented_assignment_expression] = STATE(1197), - [sym_ternary_expression] = STATE(1197), - [sym_binary_expression] = STATE(1197), - [sym_unary_expression] = STATE(1197), - [sym_update_expression] = STATE(1197), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1197), - [sym_as_expression] = STATE(1197), - [sym_internal_module] = STATE(1197), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), - }, - [138] = { - [sym__declaration] = STATE(605), - [sym_variable_declaration] = STATE(605), - [sym_lexical_declaration] = STATE(605), - [sym_class_declaration] = STATE(605), - [sym_function_declaration] = STATE(605), - [sym_generator_function_declaration] = STATE(605), + [135] = { + [sym_export_clause] = STATE(2545), + [sym__declaration] = STATE(557), + [sym_variable_declaration] = STATE(557), + [sym_lexical_declaration] = STATE(557), + [sym_class_declaration] = STATE(557), + [sym_function_declaration] = STATE(557), + [sym_generator_function_declaration] = STATE(557), [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(605), - [sym_ambient_declaration] = STATE(605), - [sym_abstract_class_declaration] = STATE(605), - [sym_module] = STATE(605), - [sym_internal_module] = STATE(605), - [sym_import_alias] = STATE(605), - [sym_interface_declaration] = STATE(605), - [sym_enum_declaration] = STATE(605), - [sym_type_alias_declaration] = STATE(605), - [aux_sym_export_statement_repeat1] = STATE(2571), - [aux_sym_object_repeat1] = STATE(2778), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), - [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1115), + [sym_function_signature] = STATE(557), + [sym_ambient_declaration] = STATE(557), + [sym_abstract_class_declaration] = STATE(557), + [sym_module] = STATE(557), + [sym_internal_module] = STATE(557), + [sym_import_alias] = STATE(557), + [sym_interface_declaration] = STATE(557), + [sym_enum_declaration] = STATE(557), + [sym_type_alias_declaration] = STATE(557), + [aux_sym_export_statement_repeat1] = STATE(2544), + [anon_sym_STAR] = ACTIONS(1107), + [anon_sym_default] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_as] = ACTIONS(1113), + [anon_sym_namespace] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1117), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1170), [anon_sym_type] = ACTIONS(1123), [anon_sym_import] = ACTIONS(1125), [anon_sym_var] = ACTIONS(1127), [anon_sym_let] = ACTIONS(1129), [anon_sym_const] = ACTIONS(1131), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1119), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_COLON] = ACTIONS(1192), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1143), + [anon_sym_LT] = ACTIONS(1133), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1146), @@ -26218,7 +26158,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1143), + [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -26245,145 +26185,331 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1162), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_global] = ACTIONS(1192), + [anon_sym_declare] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1196), [anon_sym_interface] = ACTIONS(1166), [anon_sym_enum] = ACTIONS(1168), [sym__automatic_semicolon] = ACTIONS(1119), }, - [139] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1392), - [sym_yield_expression] = STATE(1392), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1392), - [sym_jsx_fragment] = STATE(1392), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1392), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1392), - [sym_await_expression] = STATE(1392), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1392), - [sym_augmented_assignment_expression] = STATE(1392), - [sym_ternary_expression] = STATE(1392), - [sym_binary_expression] = STATE(1392), - [sym_unary_expression] = STATE(1392), - [sym_update_expression] = STATE(1392), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [136] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1361), + [sym_yield_expression] = STATE(1361), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1361), + [sym_jsx_fragment] = STATE(1361), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1361), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1361), + [sym_await_expression] = STATE(1361), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1361), + [sym_augmented_assignment_expression] = STATE(1361), + [sym_spread_element] = STATE(3155), + [sym_ternary_expression] = STATE(1361), + [sym_binary_expression] = STATE(1361), + [sym_unary_expression] = STATE(1361), + [sym_update_expression] = STATE(1361), + [sym_sequence_expression] = STATE(3155), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1392), - [sym_as_expression] = STATE(1392), - [sym_internal_module] = STATE(1392), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1361), + [sym_as_expression] = STATE(1361), + [sym_internal_module] = STATE(1361), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(539), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1200), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [140] = { - [sym_export_clause] = STATE(2570), - [sym__declaration] = STATE(546), - [sym_variable_declaration] = STATE(546), - [sym_lexical_declaration] = STATE(546), - [sym_class_declaration] = STATE(546), - [sym_function_declaration] = STATE(546), - [sym_generator_function_declaration] = STATE(546), - [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(546), - [sym_ambient_declaration] = STATE(546), - [sym_abstract_class_declaration] = STATE(546), - [sym_module] = STATE(546), - [sym_internal_module] = STATE(546), - [sym_import_alias] = STATE(546), - [sym_interface_declaration] = STATE(546), - [sym_enum_declaration] = STATE(546), - [sym_type_alias_declaration] = STATE(546), - [aux_sym_export_statement_repeat1] = STATE(2571), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_default] = ACTIONS(1109), - [anon_sym_EQ] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_namespace] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1123), + [137] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1302), + [sym_yield_expression] = STATE(1302), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1302), + [sym_jsx_fragment] = STATE(1302), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1302), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1302), + [sym_await_expression] = STATE(1302), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1302), + [sym_augmented_assignment_expression] = STATE(1302), + [sym_ternary_expression] = STATE(1302), + [sym_binary_expression] = STATE(1302), + [sym_unary_expression] = STATE(1302), + [sym_update_expression] = STATE(1302), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1302), + [sym_as_expression] = STATE(1302), + [sym_internal_module] = STATE(1302), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), + }, + [138] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1221), + [sym_yield_expression] = STATE(1221), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1221), + [sym_jsx_fragment] = STATE(1221), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1221), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1221), + [sym_await_expression] = STATE(1221), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1221), + [sym_augmented_assignment_expression] = STATE(1221), + [sym_ternary_expression] = STATE(1221), + [sym_binary_expression] = STATE(1221), + [sym_unary_expression] = STATE(1221), + [sym_update_expression] = STATE(1221), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1221), + [sym_internal_module] = STATE(1221), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [139] = { + [sym__declaration] = STATE(596), + [sym_variable_declaration] = STATE(596), + [sym_lexical_declaration] = STATE(596), + [sym_class_declaration] = STATE(596), + [sym_function_declaration] = STATE(596), + [sym_generator_function_declaration] = STATE(596), + [sym_decorator] = STATE(1901), + [sym_function_signature] = STATE(596), + [sym_ambient_declaration] = STATE(596), + [sym_abstract_class_declaration] = STATE(596), + [sym_module] = STATE(596), + [sym_internal_module] = STATE(596), + [sym_import_alias] = STATE(596), + [sym_interface_declaration] = STATE(596), + [sym_enum_declaration] = STATE(596), + [sym_type_alias_declaration] = STATE(596), + [aux_sym_export_statement_repeat1] = STATE(2544), + [aux_sym_object_repeat1] = STATE(2746), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_as] = ACTIONS(1133), + [anon_sym_namespace] = ACTIONS(1115), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_type] = ACTIONS(1123), [anon_sym_import] = ACTIONS(1125), [anon_sym_var] = ACTIONS(1127), [anon_sym_let] = ACTIONS(1129), [anon_sym_const] = ACTIONS(1131), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_COLON] = ACTIONS(1138), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1143), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1146), @@ -26407,7 +26533,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1143), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -26434,72 +26560,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1198), - [anon_sym_module] = ACTIONS(1164), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_module] = ACTIONS(1206), + [anon_sym_global] = ACTIONS(1208), [anon_sym_interface] = ACTIONS(1166), [anon_sym_enum] = ACTIONS(1168), [sym__automatic_semicolon] = ACTIONS(1119), }, - [141] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1170), - [sym_yield_expression] = STATE(1170), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1170), - [sym_jsx_fragment] = STATE(1170), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1170), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1170), - [sym_await_expression] = STATE(1170), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1170), - [sym_augmented_assignment_expression] = STATE(1170), - [sym_ternary_expression] = STATE(1170), - [sym_binary_expression] = STATE(1170), - [sym_unary_expression] = STATE(1170), - [sym_update_expression] = STATE(1170), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [140] = { + [sym_import] = STATE(1473), + [sym_expression_statement] = STATE(155), + [sym_empty_statement] = STATE(155), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1170), - [sym_as_expression] = STATE(1170), - [sym_internal_module] = STATE(1170), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1263), + [sym_internal_module] = STATE(1263), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), [anon_sym_namespace] = ACTIONS(587), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(1095), [anon_sym_type] = ACTIONS(583), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1095), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), @@ -26534,122 +26661,216 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [142] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1209), - [sym_yield_expression] = STATE(1209), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1209), - [sym_jsx_fragment] = STATE(1209), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1209), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1209), - [sym_await_expression] = STATE(1209), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1209), - [sym_augmented_assignment_expression] = STATE(1209), - [sym_ternary_expression] = STATE(1209), - [sym_binary_expression] = STATE(1209), - [sym_unary_expression] = STATE(1209), - [sym_update_expression] = STATE(1209), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [141] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1334), + [sym_yield_expression] = STATE(1334), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1334), + [sym_jsx_fragment] = STATE(1334), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1334), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1334), + [sym_await_expression] = STATE(1334), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1334), + [sym_augmented_assignment_expression] = STATE(1334), + [sym_ternary_expression] = STATE(1334), + [sym_binary_expression] = STATE(1334), + [sym_unary_expression] = STATE(1334), + [sym_update_expression] = STATE(1334), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1209), - [sym_as_expression] = STATE(1209), - [sym_internal_module] = STATE(1209), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1334), + [sym_as_expression] = STATE(1334), + [sym_internal_module] = STATE(1334), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(589), [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), - [anon_sym_function] = ACTIONS(481), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(787), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(869), [anon_sym_AMP] = ACTIONS(1095), [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_PLUS] = ACTIONS(871), [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), + }, + [142] = { + [sym__declaration] = STATE(596), + [sym_variable_declaration] = STATE(596), + [sym_lexical_declaration] = STATE(596), + [sym_class_declaration] = STATE(596), + [sym_function_declaration] = STATE(596), + [sym_generator_function_declaration] = STATE(596), + [sym_decorator] = STATE(1901), + [sym_function_signature] = STATE(596), + [sym_ambient_declaration] = STATE(596), + [sym_abstract_class_declaration] = STATE(596), + [sym_module] = STATE(596), + [sym_internal_module] = STATE(596), + [sym_import_alias] = STATE(596), + [sym_interface_declaration] = STATE(596), + [sym_enum_declaration] = STATE(596), + [sym_type_alias_declaration] = STATE(596), + [aux_sym_export_statement_repeat1] = STATE(2544), + [aux_sym_object_repeat1] = STATE(2824), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_as] = ACTIONS(1133), + [anon_sym_namespace] = ACTIONS(1115), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1123), + [anon_sym_import] = ACTIONS(1125), + [anon_sym_var] = ACTIONS(1127), + [anon_sym_let] = ACTIONS(1129), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1146), + [anon_sym_class] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1150), + [anon_sym_function] = ACTIONS(1152), + [anon_sym_EQ_GT] = ACTIONS(1154), + [anon_sym_QMARK_DOT] = ACTIONS(1156), + [anon_sym_PLUS_EQ] = ACTIONS(1158), + [anon_sym_DASH_EQ] = ACTIONS(1158), + [anon_sym_STAR_EQ] = ACTIONS(1158), + [anon_sym_SLASH_EQ] = ACTIONS(1158), + [anon_sym_PERCENT_EQ] = ACTIONS(1158), + [anon_sym_CARET_EQ] = ACTIONS(1158), + [anon_sym_AMP_EQ] = ACTIONS(1158), + [anon_sym_PIPE_EQ] = ACTIONS(1158), + [anon_sym_GT_GT_EQ] = ACTIONS(1158), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1158), + [anon_sym_LT_LT_EQ] = ACTIONS(1158), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1158), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), + [anon_sym_QMARK] = ACTIONS(1143), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_GT_GT_GT] = ACTIONS(1133), + [anon_sym_LT_LT] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_STAR_STAR] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(1119), + [anon_sym_EQ_EQ] = ACTIONS(1133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1119), + [anon_sym_BANG_EQ] = ACTIONS(1133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1119), + [anon_sym_GT_EQ] = ACTIONS(1119), + [anon_sym_QMARK_QMARK] = ACTIONS(1133), + [anon_sym_instanceof] = ACTIONS(1119), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_abstract] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_module] = ACTIONS(1206), + [anon_sym_global] = ACTIONS(1208), + [anon_sym_interface] = ACTIONS(1166), + [anon_sym_enum] = ACTIONS(1168), + [sym__automatic_semicolon] = ACTIONS(1119), }, [143] = { - [sym_export_clause] = STATE(2570), - [sym__declaration] = STATE(546), - [sym_variable_declaration] = STATE(546), - [sym_lexical_declaration] = STATE(546), - [sym_class_declaration] = STATE(546), - [sym_function_declaration] = STATE(546), - [sym_generator_function_declaration] = STATE(546), + [sym_export_clause] = STATE(2545), + [sym__declaration] = STATE(557), + [sym_variable_declaration] = STATE(557), + [sym_lexical_declaration] = STATE(557), + [sym_class_declaration] = STATE(557), + [sym_function_declaration] = STATE(557), + [sym_generator_function_declaration] = STATE(557), [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(546), - [sym_ambient_declaration] = STATE(546), - [sym_abstract_class_declaration] = STATE(546), - [sym_module] = STATE(546), - [sym_internal_module] = STATE(546), - [sym_import_alias] = STATE(546), - [sym_interface_declaration] = STATE(546), - [sym_enum_declaration] = STATE(546), - [sym_type_alias_declaration] = STATE(546), - [aux_sym_export_statement_repeat1] = STATE(2571), + [sym_function_signature] = STATE(557), + [sym_ambient_declaration] = STATE(557), + [sym_abstract_class_declaration] = STATE(557), + [sym_module] = STATE(557), + [sym_internal_module] = STATE(557), + [sym_import_alias] = STATE(557), + [sym_interface_declaration] = STATE(557), + [sym_enum_declaration] = STATE(557), + [sym_type_alias_declaration] = STATE(557), + [aux_sym_export_statement_repeat1] = STATE(2544), [anon_sym_STAR] = ACTIONS(1107), [anon_sym_default] = ACTIONS(1109), - [anon_sym_EQ] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1186), [anon_sym_as] = ACTIONS(1113), [anon_sym_namespace] = ACTIONS(1115), [anon_sym_LBRACE] = ACTIONS(1117), @@ -26663,7 +26884,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1119), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_COLON] = ACTIONS(1210), [anon_sym_LBRACK] = ACTIONS(1141), [anon_sym_LT] = ACTIONS(1133), [anon_sym_GT] = ACTIONS(1133), @@ -26716,72 +26937,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1162), + [anon_sym_declare] = ACTIONS(1212), [anon_sym_module] = ACTIONS(1164), [anon_sym_interface] = ACTIONS(1166), [anon_sym_enum] = ACTIONS(1168), [sym__automatic_semicolon] = ACTIONS(1119), }, [144] = { - [sym_import] = STATE(1420), - [sym_expression_statement] = STATE(160), - [sym_empty_statement] = STATE(160), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1082), + [sym_yield_expression] = STATE(1082), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1082), + [sym_jsx_fragment] = STATE(1082), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1082), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1082), + [sym_await_expression] = STATE(1082), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1082), + [sym_augmented_assignment_expression] = STATE(1082), + [sym_ternary_expression] = STATE(1082), + [sym_binary_expression] = STATE(1082), + [sym_unary_expression] = STATE(1082), + [sym_update_expression] = STATE(1082), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_as_expression] = STATE(1284), - [sym_internal_module] = STATE(1284), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1082), + [sym_internal_module] = STATE(1082), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), [anon_sym_namespace] = ACTIONS(587), [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_COMMA] = ACTIONS(1095), [anon_sym_type] = ACTIONS(583), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1095), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(1095), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), @@ -26817,43 +27038,230 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(583), }, [145] = { - [sym_export_clause] = STATE(2570), - [sym__declaration] = STATE(546), - [sym_variable_declaration] = STATE(546), - [sym_lexical_declaration] = STATE(546), - [sym_class_declaration] = STATE(546), - [sym_function_declaration] = STATE(546), - [sym_generator_function_declaration] = STATE(546), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1189), + [sym_yield_expression] = STATE(1189), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1189), + [sym_jsx_fragment] = STATE(1189), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1189), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1189), + [sym_await_expression] = STATE(1189), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1189), + [sym_augmented_assignment_expression] = STATE(1189), + [sym_ternary_expression] = STATE(1189), + [sym_binary_expression] = STATE(1189), + [sym_unary_expression] = STATE(1189), + [sym_update_expression] = STATE(1189), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(546), - [sym_ambient_declaration] = STATE(546), - [sym_abstract_class_declaration] = STATE(546), - [sym_module] = STATE(546), - [sym_internal_module] = STATE(546), - [sym_import_alias] = STATE(546), - [sym_interface_declaration] = STATE(546), - [sym_enum_declaration] = STATE(546), - [sym_type_alias_declaration] = STATE(546), - [aux_sym_export_statement_repeat1] = STATE(2571), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_default] = ACTIONS(1109), - [anon_sym_EQ] = ACTIONS(1194), - [anon_sym_as] = ACTIONS(1113), - [anon_sym_namespace] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1117), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1189), + [sym_as_expression] = STATE(1189), + [sym_internal_module] = STATE(1189), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_GT] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [146] = { + [sym_import] = STATE(1473), + [sym_expression_statement] = STATE(156), + [sym_empty_statement] = STATE(156), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1263), + [sym_yield_expression] = STATE(1263), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1263), + [sym_jsx_fragment] = STATE(1263), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1263), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1263), + [sym_await_expression] = STATE(1263), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1263), + [sym_augmented_assignment_expression] = STATE(1263), + [sym_ternary_expression] = STATE(1263), + [sym_binary_expression] = STATE(1263), + [sym_unary_expression] = STATE(1263), + [sym_update_expression] = STATE(1263), + [sym_sequence_expression] = STATE(2918), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1263), + [sym_as_expression] = STATE(1263), + [sym_internal_module] = STATE(1263), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [147] = { + [sym__declaration] = STATE(596), + [sym_variable_declaration] = STATE(596), + [sym_lexical_declaration] = STATE(596), + [sym_class_declaration] = STATE(596), + [sym_function_declaration] = STATE(596), + [sym_generator_function_declaration] = STATE(596), + [sym_decorator] = STATE(1901), + [sym_function_signature] = STATE(596), + [sym_ambient_declaration] = STATE(596), + [sym_abstract_class_declaration] = STATE(596), + [sym_module] = STATE(596), + [sym_internal_module] = STATE(596), + [sym_import_alias] = STATE(596), + [sym_interface_declaration] = STATE(596), + [sym_enum_declaration] = STATE(596), + [sym_type_alias_declaration] = STATE(596), + [aux_sym_export_statement_repeat1] = STATE(2544), + [aux_sym_object_repeat1] = STATE(2742), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_as] = ACTIONS(1133), + [anon_sym_namespace] = ACTIONS(1115), [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1121), [anon_sym_type] = ACTIONS(1123), [anon_sym_import] = ACTIONS(1125), [anon_sym_var] = ACTIONS(1127), [anon_sym_let] = ACTIONS(1129), [anon_sym_const] = ACTIONS(1131), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1138), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1133), + [anon_sym_LT] = ACTIONS(1143), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1146), @@ -26877,7 +27285,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_QMARK] = ACTIONS(1143), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -26904,57 +27312,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1206), - [anon_sym_module] = ACTIONS(1208), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_module] = ACTIONS(1206), + [anon_sym_global] = ACTIONS(1208), [anon_sym_interface] = ACTIONS(1166), [anon_sym_enum] = ACTIONS(1168), [sym__automatic_semicolon] = ACTIONS(1119), }, - [146] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1364), - [sym_yield_expression] = STATE(1364), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1364), - [sym_jsx_fragment] = STATE(1364), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1364), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1364), - [sym_await_expression] = STATE(1364), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1364), - [sym_augmented_assignment_expression] = STATE(1364), - [sym_spread_element] = STATE(3151), - [sym_ternary_expression] = STATE(1364), - [sym_binary_expression] = STATE(1364), - [sym_unary_expression] = STATE(1364), - [sym_update_expression] = STATE(1364), - [sym_sequence_expression] = STATE(3151), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [148] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1353), + [sym_yield_expression] = STATE(1353), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1353), + [sym_jsx_fragment] = STATE(1353), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1353), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1353), + [sym_await_expression] = STATE(1353), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1353), + [sym_augmented_assignment_expression] = STATE(1353), + [sym_spread_element] = STATE(3276), + [sym_ternary_expression] = STATE(1353), + [sym_binary_expression] = STATE(1353), + [sym_unary_expression] = STATE(1353), + [sym_update_expression] = STATE(1353), + [sym_sequence_expression] = STATE(3276), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1364), - [sym_as_expression] = STATE(1364), - [sym_internal_module] = STATE(1364), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1353), + [sym_as_expression] = STATE(1353), + [sym_internal_module] = STATE(1353), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1214), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -26969,7 +27378,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), [anon_sym_new] = ACTIONS(575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1200), [anon_sym_PLUS] = ACTIONS(577), [anon_sym_DASH] = ACTIONS(577), [anon_sym_TILDE] = ACTIONS(461), @@ -27004,167 +27413,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [147] = { - [sym_import] = STATE(1420), - [sym_expression_statement] = STATE(155), - [sym_empty_statement] = STATE(155), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1284), - [sym_yield_expression] = STATE(1284), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1284), - [sym_jsx_fragment] = STATE(1284), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1284), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1284), - [sym_await_expression] = STATE(1284), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1284), - [sym_augmented_assignment_expression] = STATE(1284), - [sym_ternary_expression] = STATE(1284), - [sym_binary_expression] = STATE(1284), - [sym_unary_expression] = STATE(1284), - [sym_update_expression] = STATE(1284), - [sym_sequence_expression] = STATE(2897), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [149] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(856), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(1713), + [sym_array] = STATE(1714), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(856), + [sym_subscript_expression] = STATE(856), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1284), - [sym_as_expression] = STATE(1284), - [sym_internal_module] = STATE(1284), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), - }, - [148] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1368), - [sym_yield_expression] = STATE(1368), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1368), - [sym_jsx_fragment] = STATE(1368), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1368), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1368), - [sym_await_expression] = STATE(1368), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1368), - [sym_augmented_assignment_expression] = STATE(1368), - [sym_spread_element] = STATE(3240), - [sym_ternary_expression] = STATE(1368), - [sym_binary_expression] = STATE(1368), - [sym_unary_expression] = STATE(1368), - [sym_update_expression] = STATE(1368), - [sym_sequence_expression] = STATE(3240), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1368), - [sym_as_expression] = STATE(1368), - [sym_internal_module] = STATE(1368), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1216), + [anon_sym_export] = ACTIONS(1218), + [anon_sym_namespace] = ACTIONS(1220), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_var] = ACTIONS(1222), + [anon_sym_let] = ACTIONS(1222), + [anon_sym_const] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(1224), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1212), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -27177,180 +27491,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(1218), + [anon_sym_get] = ACTIONS(1218), + [anon_sym_set] = ACTIONS(1218), + [anon_sym_declare] = ACTIONS(1218), + [anon_sym_public] = ACTIONS(1218), + [anon_sym_private] = ACTIONS(1218), + [anon_sym_protected] = ACTIONS(1218), + [anon_sym_module] = ACTIONS(1218), + [anon_sym_any] = ACTIONS(1218), + [anon_sym_number] = ACTIONS(1218), + [anon_sym_boolean] = ACTIONS(1218), + [anon_sym_string] = ACTIONS(1218), + [anon_sym_symbol] = ACTIONS(1218), + [sym_readonly] = ACTIONS(1218), }, - [149] = { - [sym_import] = STATE(1696), + [150] = { + [sym_import] = STATE(1088), [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1035), - [sym_yield_expression] = STATE(1035), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1035), - [sym_jsx_fragment] = STATE(1035), - [sym_jsx_opening_element] = STATE(2054), - [sym_nested_identifier] = STATE(3102), - [sym_jsx_self_closing_element] = STATE(1035), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1035), - [sym_await_expression] = STATE(1035), + [sym__expression] = STATE(1161), + [sym_yield_expression] = STATE(1161), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1161), + [sym_jsx_fragment] = STATE(1161), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1161), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1161), + [sym_await_expression] = STATE(1161), [sym_member_expression] = STATE(785), [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1035), - [sym_augmented_assignment_expression] = STATE(1035), - [sym_ternary_expression] = STATE(1035), - [sym_binary_expression] = STATE(1035), - [sym_unary_expression] = STATE(1035), - [sym_update_expression] = STATE(1035), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1035), - [sym_as_expression] = STATE(1035), - [sym_internal_module] = STATE(1035), - [sym_nested_type_identifier] = STATE(2261), - [sym_generic_type] = STATE(2616), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [150] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1282), - [sym_yield_expression] = STATE(1282), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1282), - [sym_jsx_fragment] = STATE(1282), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1282), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1282), - [sym_await_expression] = STATE(1282), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1282), - [sym_augmented_assignment_expression] = STATE(1282), - [sym_ternary_expression] = STATE(1282), - [sym_binary_expression] = STATE(1282), - [sym_unary_expression] = STATE(1282), - [sym_update_expression] = STATE(1282), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_assignment_expression] = STATE(1161), + [sym_augmented_assignment_expression] = STATE(1161), + [sym_ternary_expression] = STATE(1161), + [sym_binary_expression] = STATE(1161), + [sym_unary_expression] = STATE(1161), + [sym_update_expression] = STATE(1161), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1282), - [sym_as_expression] = STATE(1282), - [sym_internal_module] = STATE(1282), - [sym_nested_type_identifier] = STATE(2337), - [sym_generic_type] = STATE(2728), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1218), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1161), + [sym_as_expression] = STATE(1161), + [sym_internal_module] = STATE(1161), + [sym_nested_type_identifier] = STATE(2240), + [sym_generic_type] = STATE(2597), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1226), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -27363,180 +27584,180 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, [151] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(920), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(1711), - [sym_array] = STATE(1709), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(920), - [sym_subscript_expression] = STATE(920), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1269), + [sym_yield_expression] = STATE(1269), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1269), + [sym_jsx_fragment] = STATE(1269), + [sym_jsx_opening_element] = STATE(2029), + [sym_nested_identifier] = STATE(3104), + [sym_jsx_self_closing_element] = STATE(1269), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1269), + [sym_await_expression] = STATE(1269), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1269), + [sym_augmented_assignment_expression] = STATE(1269), + [sym_ternary_expression] = STATE(1269), + [sym_binary_expression] = STATE(1269), + [sym_unary_expression] = STATE(1269), + [sym_update_expression] = STATE(1269), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1220), - [anon_sym_export] = ACTIONS(1222), - [anon_sym_namespace] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_var] = ACTIONS(1226), - [anon_sym_let] = ACTIONS(1226), - [anon_sym_const] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1228), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1269), + [sym_as_expression] = STATE(1269), + [sym_internal_module] = STATE(1269), + [sym_nested_type_identifier] = STATE(2505), + [sym_generic_type] = STATE(2743), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(1228), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1222), - [anon_sym_get] = ACTIONS(1222), - [anon_sym_set] = ACTIONS(1222), - [anon_sym_declare] = ACTIONS(1222), - [anon_sym_public] = ACTIONS(1222), - [anon_sym_private] = ACTIONS(1222), - [anon_sym_protected] = ACTIONS(1222), - [anon_sym_module] = ACTIONS(1222), - [anon_sym_any] = ACTIONS(1222), - [anon_sym_number] = ACTIONS(1222), - [anon_sym_boolean] = ACTIONS(1222), - [anon_sym_string] = ACTIONS(1222), - [anon_sym_symbol] = ACTIONS(1222), - [sym_readonly] = ACTIONS(1222), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, [152] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1041), - [sym_yield_expression] = STATE(1041), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1041), - [sym_jsx_fragment] = STATE(1041), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(3193), - [sym_jsx_self_closing_element] = STATE(1041), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1041), - [sym_await_expression] = STATE(1041), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1041), - [sym_augmented_assignment_expression] = STATE(1041), - [sym_ternary_expression] = STATE(1041), - [sym_binary_expression] = STATE(1041), - [sym_unary_expression] = STATE(1041), - [sym_update_expression] = STATE(1041), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1306), + [sym_yield_expression] = STATE(1306), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1306), + [sym_jsx_fragment] = STATE(1306), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(3289), + [sym_jsx_self_closing_element] = STATE(1306), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1306), + [sym_await_expression] = STATE(1306), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1306), + [sym_augmented_assignment_expression] = STATE(1306), + [sym_ternary_expression] = STATE(1306), + [sym_binary_expression] = STATE(1306), + [sym_unary_expression] = STATE(1306), + [sym_update_expression] = STATE(1306), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1041), - [sym_as_expression] = STATE(1041), - [sym_internal_module] = STATE(1041), - [sym_nested_type_identifier] = STATE(2184), - [sym_generic_type] = STATE(2533), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1306), + [sym_as_expression] = STATE(1306), + [sym_internal_module] = STATE(1306), + [sym_nested_type_identifier] = STATE(2416), + [sym_generic_type] = STATE(2645), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(1230), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -27549,59 +27770,152 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, [153] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1263), - [sym_yield_expression] = STATE(1263), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1263), - [sym_jsx_fragment] = STATE(1263), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1263), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1263), - [sym_await_expression] = STATE(1263), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1263), - [sym_augmented_assignment_expression] = STATE(1263), - [sym_ternary_expression] = STATE(1263), - [sym_binary_expression] = STATE(1263), - [sym_unary_expression] = STATE(1263), - [sym_update_expression] = STATE(1263), - [sym_sequence_expression] = STATE(3032), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1142), + [sym_yield_expression] = STATE(1142), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1142), + [sym_jsx_fragment] = STATE(1142), + [sym_jsx_opening_element] = STATE(2029), + [sym_nested_identifier] = STATE(3104), + [sym_jsx_self_closing_element] = STATE(1142), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1142), + [sym_await_expression] = STATE(1142), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(1142), + [sym_ternary_expression] = STATE(1142), + [sym_binary_expression] = STATE(1142), + [sym_unary_expression] = STATE(1142), + [sym_update_expression] = STATE(1142), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1263), - [sym_as_expression] = STATE(1263), - [sym_internal_module] = STATE(1263), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1142), + [sym_as_expression] = STATE(1142), + [sym_internal_module] = STATE(1142), + [sym_nested_type_identifier] = STATE(2179), + [sym_generic_type] = STATE(2542), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(1232), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [154] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1272), + [sym_yield_expression] = STATE(1272), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1272), + [sym_jsx_fragment] = STATE(1272), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1272), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1272), + [sym_await_expression] = STATE(1272), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1272), + [sym_augmented_assignment_expression] = STATE(1272), + [sym_ternary_expression] = STATE(1272), + [sym_binary_expression] = STATE(1272), + [sym_unary_expression] = STATE(1272), + [sym_update_expression] = STATE(1272), + [sym_sequence_expression] = STATE(3055), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1272), + [sym_as_expression] = STATE(1272), + [sym_internal_module] = STATE(1272), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -27613,7 +27927,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1234), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), @@ -27655,140 +27969,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(583), [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), - [sym__automatic_semicolon] = ACTIONS(1232), - }, - [154] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1264), - [sym_yield_expression] = STATE(1264), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1264), - [sym_jsx_fragment] = STATE(1264), - [sym_jsx_opening_element] = STATE(2054), - [sym_nested_identifier] = STATE(3102), - [sym_jsx_self_closing_element] = STATE(1264), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1264), - [sym_await_expression] = STATE(1264), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1264), - [sym_augmented_assignment_expression] = STATE(1264), - [sym_ternary_expression] = STATE(1264), - [sym_binary_expression] = STATE(1264), - [sym_unary_expression] = STATE(1264), - [sym_update_expression] = STATE(1264), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1264), - [sym_as_expression] = STATE(1264), - [sym_internal_module] = STATE(1264), - [sym_nested_type_identifier] = STATE(2507), - [sym_generic_type] = STATE(2660), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [sym__automatic_semicolon] = ACTIONS(1234), }, [155] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1328), - [sym_yield_expression] = STATE(1328), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1328), - [sym_jsx_fragment] = STATE(1328), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1328), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1328), - [sym_await_expression] = STATE(1328), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1328), - [sym_augmented_assignment_expression] = STATE(1328), - [sym_ternary_expression] = STATE(1328), - [sym_binary_expression] = STATE(1328), - [sym_unary_expression] = STATE(1328), - [sym_update_expression] = STATE(1328), - [sym_sequence_expression] = STATE(3279), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1409), + [sym_yield_expression] = STATE(1409), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1409), + [sym_jsx_fragment] = STATE(1409), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1409), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1409), + [sym_await_expression] = STATE(1409), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1409), + [sym_augmented_assignment_expression] = STATE(1409), + [sym_ternary_expression] = STATE(1409), + [sym_binary_expression] = STATE(1409), + [sym_unary_expression] = STATE(1409), + [sym_update_expression] = STATE(1409), + [sym_sequence_expression] = STATE(3287), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1328), - [sym_as_expression] = STATE(1328), - [sym_internal_module] = STATE(1328), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1409), + [sym_as_expression] = STATE(1409), + [sym_internal_module] = STATE(1409), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -27843,25 +28064,209 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [156] = { - [sym__declaration] = STATE(605), - [sym_variable_declaration] = STATE(605), - [sym_lexical_declaration] = STATE(605), - [sym_class_declaration] = STATE(605), - [sym_function_declaration] = STATE(605), - [sym_generator_function_declaration] = STATE(605), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1374), + [sym_yield_expression] = STATE(1374), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1374), + [sym_jsx_fragment] = STATE(1374), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1374), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1374), + [sym_await_expression] = STATE(1374), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1374), + [sym_augmented_assignment_expression] = STATE(1374), + [sym_ternary_expression] = STATE(1374), + [sym_binary_expression] = STATE(1374), + [sym_unary_expression] = STATE(1374), + [sym_update_expression] = STATE(1374), + [sym_sequence_expression] = STATE(3213), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1374), + [sym_as_expression] = STATE(1374), + [sym_internal_module] = STATE(1374), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(1238), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(539), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), + }, + [157] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1350), + [sym_yield_expression] = STATE(1350), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1350), + [sym_jsx_fragment] = STATE(1350), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1350), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1350), + [sym_await_expression] = STATE(1350), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1350), + [sym_augmented_assignment_expression] = STATE(1350), + [sym_ternary_expression] = STATE(1350), + [sym_binary_expression] = STATE(1350), + [sym_unary_expression] = STATE(1350), + [sym_update_expression] = STATE(1350), + [sym_sequence_expression] = STATE(3281), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1350), + [sym_as_expression] = STATE(1350), + [sym_internal_module] = STATE(1350), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(539), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), + }, + [158] = { + [sym__declaration] = STATE(596), + [sym_variable_declaration] = STATE(596), + [sym_lexical_declaration] = STATE(596), + [sym_class_declaration] = STATE(596), + [sym_function_declaration] = STATE(596), + [sym_generator_function_declaration] = STATE(596), [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(605), - [sym_ambient_declaration] = STATE(605), - [sym_abstract_class_declaration] = STATE(605), - [sym_module] = STATE(605), - [sym_internal_module] = STATE(605), - [sym_import_alias] = STATE(605), - [sym_interface_declaration] = STATE(605), - [sym_enum_declaration] = STATE(605), - [sym_type_alias_declaration] = STATE(605), - [aux_sym_export_statement_repeat1] = STATE(2571), + [sym_function_signature] = STATE(596), + [sym_ambient_declaration] = STATE(596), + [sym_abstract_class_declaration] = STATE(596), + [sym_module] = STATE(596), + [sym_internal_module] = STATE(596), + [sym_import_alias] = STATE(596), + [sym_interface_declaration] = STATE(596), + [sym_enum_declaration] = STATE(596), + [sym_type_alias_declaration] = STATE(596), + [aux_sym_export_statement_repeat1] = STATE(2544), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(1133), [anon_sym_namespace] = ACTIONS(1115), [anon_sym_COMMA] = ACTIONS(1119), @@ -27874,7 +28279,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1119), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_COLON] = ACTIONS(1210), [anon_sym_LBRACK] = ACTIONS(1141), [anon_sym_LT] = ACTIONS(1133), [anon_sym_GT] = ACTIONS(1133), @@ -27927,35 +28332,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1198), - [anon_sym_module] = ACTIONS(1240), - [anon_sym_global] = ACTIONS(1192), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_global] = ACTIONS(1208), [anon_sym_interface] = ACTIONS(1166), [anon_sym_enum] = ACTIONS(1168), [sym__automatic_semicolon] = ACTIONS(1119), }, - [157] = { - [sym__declaration] = STATE(605), - [sym_variable_declaration] = STATE(605), - [sym_lexical_declaration] = STATE(605), - [sym_class_declaration] = STATE(605), - [sym_function_declaration] = STATE(605), - [sym_generator_function_declaration] = STATE(605), + [159] = { + [sym__declaration] = STATE(596), + [sym_variable_declaration] = STATE(596), + [sym_lexical_declaration] = STATE(596), + [sym_class_declaration] = STATE(596), + [sym_function_declaration] = STATE(596), + [sym_generator_function_declaration] = STATE(596), [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(605), - [sym_ambient_declaration] = STATE(605), - [sym_abstract_class_declaration] = STATE(605), - [sym_module] = STATE(605), - [sym_internal_module] = STATE(605), - [sym_import_alias] = STATE(605), - [sym_interface_declaration] = STATE(605), - [sym_enum_declaration] = STATE(605), - [sym_type_alias_declaration] = STATE(605), - [aux_sym_export_statement_repeat1] = STATE(2571), + [sym_function_signature] = STATE(596), + [sym_ambient_declaration] = STATE(596), + [sym_abstract_class_declaration] = STATE(596), + [sym_module] = STATE(596), + [sym_internal_module] = STATE(596), + [sym_import_alias] = STATE(596), + [sym_interface_declaration] = STATE(596), + [sym_enum_declaration] = STATE(596), + [sym_type_alias_declaration] = STATE(596), + [aux_sym_export_statement_repeat1] = STATE(2544), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1115), + [anon_sym_namespace] = ACTIONS(1190), [anon_sym_COMMA] = ACTIONS(1119), [anon_sym_type] = ACTIONS(1123), [anon_sym_import] = ACTIONS(1125), @@ -27966,7 +28371,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1119), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_COLON] = ACTIONS(1192), [anon_sym_LBRACK] = ACTIONS(1141), [anon_sym_LT] = ACTIONS(1133), [anon_sym_GT] = ACTIONS(1133), @@ -28019,127 +28424,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1162), - [anon_sym_module] = ACTIONS(1190), - [anon_sym_global] = ACTIONS(1192), + [anon_sym_declare] = ACTIONS(1194), + [anon_sym_module] = ACTIONS(1246), + [anon_sym_global] = ACTIONS(1208), [anon_sym_interface] = ACTIONS(1166), [anon_sym_enum] = ACTIONS(1168), [sym__automatic_semicolon] = ACTIONS(1119), }, - [158] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1377), - [sym_yield_expression] = STATE(1377), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1377), - [sym_jsx_fragment] = STATE(1377), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1377), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1377), - [sym_await_expression] = STATE(1377), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1377), - [sym_augmented_assignment_expression] = STATE(1377), - [sym_ternary_expression] = STATE(1377), - [sym_binary_expression] = STATE(1377), - [sym_unary_expression] = STATE(1377), - [sym_update_expression] = STATE(1377), - [sym_sequence_expression] = STATE(3149), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1377), - [sym_as_expression] = STATE(1377), - [sym_internal_module] = STATE(1377), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), - }, - [159] = { - [sym__declaration] = STATE(605), - [sym_variable_declaration] = STATE(605), - [sym_lexical_declaration] = STATE(605), - [sym_class_declaration] = STATE(605), - [sym_function_declaration] = STATE(605), - [sym_generator_function_declaration] = STATE(605), + [160] = { + [sym__declaration] = STATE(596), + [sym_variable_declaration] = STATE(596), + [sym_lexical_declaration] = STATE(596), + [sym_class_declaration] = STATE(596), + [sym_function_declaration] = STATE(596), + [sym_generator_function_declaration] = STATE(596), [sym_decorator] = STATE(1901), - [sym_function_signature] = STATE(605), - [sym_ambient_declaration] = STATE(605), - [sym_abstract_class_declaration] = STATE(605), - [sym_module] = STATE(605), - [sym_internal_module] = STATE(605), - [sym_import_alias] = STATE(605), - [sym_interface_declaration] = STATE(605), - [sym_enum_declaration] = STATE(605), - [sym_type_alias_declaration] = STATE(605), - [aux_sym_export_statement_repeat1] = STATE(2571), + [sym_function_signature] = STATE(596), + [sym_ambient_declaration] = STATE(596), + [sym_abstract_class_declaration] = STATE(596), + [sym_module] = STATE(596), + [sym_internal_module] = STATE(596), + [sym_import_alias] = STATE(596), + [sym_interface_declaration] = STATE(596), + [sym_enum_declaration] = STATE(596), + [sym_type_alias_declaration] = STATE(596), + [aux_sym_export_statement_repeat1] = STATE(2544), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1202), + [anon_sym_namespace] = ACTIONS(1115), [anon_sym_COMMA] = ACTIONS(1119), [anon_sym_type] = ACTIONS(1123), [anon_sym_import] = ACTIONS(1125), @@ -28150,7 +28463,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1119), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1188), [anon_sym_LBRACK] = ACTIONS(1141), [anon_sym_LT] = ACTIONS(1133), [anon_sym_GT] = ACTIONS(1133), @@ -28203,169 +28516,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(91), [anon_sym_abstract] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1206), - [anon_sym_module] = ACTIONS(1244), - [anon_sym_global] = ACTIONS(1192), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_module] = ACTIONS(1206), + [anon_sym_global] = ACTIONS(1208), [anon_sym_interface] = ACTIONS(1166), [anon_sym_enum] = ACTIONS(1168), [sym__automatic_semicolon] = ACTIONS(1119), }, - [160] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1325), - [sym_yield_expression] = STATE(1325), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1325), - [sym_jsx_fragment] = STATE(1325), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1325), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1325), - [sym_await_expression] = STATE(1325), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1325), - [sym_augmented_assignment_expression] = STATE(1325), - [sym_ternary_expression] = STATE(1325), - [sym_binary_expression] = STATE(1325), - [sym_unary_expression] = STATE(1325), - [sym_update_expression] = STATE(1325), - [sym_sequence_expression] = STATE(3199), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1325), - [sym_as_expression] = STATE(1325), - [sym_internal_module] = STATE(1325), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), - }, [161] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1146), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1312), - [sym_yield_expression] = STATE(1312), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1312), - [sym_jsx_fragment] = STATE(1312), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1312), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1312), - [sym_await_expression] = STATE(1312), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1312), - [sym_augmented_assignment_expression] = STATE(1312), - [sym_ternary_expression] = STATE(1312), - [sym_binary_expression] = STATE(1312), - [sym_unary_expression] = STATE(1312), - [sym_update_expression] = STATE(1312), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1302), + [sym_yield_expression] = STATE(1302), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1302), + [sym_jsx_fragment] = STATE(1302), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(1943), + [sym_jsx_self_closing_element] = STATE(1302), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1302), + [sym_await_expression] = STATE(1302), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1302), + [sym_augmented_assignment_expression] = STATE(1302), + [sym_ternary_expression] = STATE(1302), + [sym_binary_expression] = STATE(1302), + [sym_unary_expression] = STATE(1302), + [sym_update_expression] = STATE(1302), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1312), - [sym_as_expression] = STATE(1312), - [sym_internal_module] = STATE(1312), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1302), + [sym_as_expression] = STATE(1302), + [sym_internal_module] = STATE(1302), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1248), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -28378,152 +28599,152 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, [162] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1170), - [sym_yield_expression] = STATE(1170), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1170), - [sym_jsx_fragment] = STATE(1170), - [sym_jsx_opening_element] = STATE(2057), - [sym_nested_identifier] = STATE(1941), - [sym_jsx_self_closing_element] = STATE(1170), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1170), - [sym_await_expression] = STATE(1170), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1170), - [sym_augmented_assignment_expression] = STATE(1170), - [sym_ternary_expression] = STATE(1170), - [sym_binary_expression] = STATE(1170), - [sym_unary_expression] = STATE(1170), - [sym_update_expression] = STATE(1170), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1267), + [sym_parenthesized_expression] = STATE(688), + [sym__expression] = STATE(1657), + [sym_yield_expression] = STATE(1657), + [sym_object] = STATE(1148), + [sym_array] = STATE(1151), + [sym_jsx_element] = STATE(1657), + [sym_jsx_fragment] = STATE(1657), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1657), + [sym_class] = STATE(1267), + [sym_function] = STATE(1267), + [sym_generator_function] = STATE(1267), + [sym_arrow_function] = STATE(1267), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1267), + [sym_new_expression] = STATE(1657), + [sym_await_expression] = STATE(1657), + [sym_member_expression] = STATE(688), + [sym_subscript_expression] = STATE(688), + [sym_assignment_expression] = STATE(1657), + [sym_augmented_assignment_expression] = STATE(1657), + [sym_ternary_expression] = STATE(1657), + [sym_binary_expression] = STATE(1657), + [sym_unary_expression] = STATE(1657), + [sym_update_expression] = STATE(1657), + [sym_string] = STATE(1267), + [sym_template_string] = STATE(1267), + [sym_regex] = STATE(1267), + [sym_meta_property] = STATE(1267), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1170), - [sym_as_expression] = STATE(1170), - [sym_internal_module] = STATE(1170), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1657), + [sym_as_expression] = STATE(1657), + [sym_internal_module] = STATE(1657), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(1250), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), + [anon_sym_export] = ACTIONS(1252), + [anon_sym_namespace] = ACTIONS(1254), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [anon_sym_type] = ACTIONS(1252), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1256), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(1258), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(1262), + [sym_this] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [sym_null] = ACTIONS(1264), + [sym_undefined] = ACTIONS(1264), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_get] = ACTIONS(1252), + [anon_sym_set] = ACTIONS(1252), + [anon_sym_declare] = ACTIONS(1252), + [anon_sym_public] = ACTIONS(1252), + [anon_sym_private] = ACTIONS(1252), + [anon_sym_protected] = ACTIONS(1252), + [anon_sym_module] = ACTIONS(1252), + [anon_sym_any] = ACTIONS(1252), + [anon_sym_number] = ACTIONS(1252), + [anon_sym_boolean] = ACTIONS(1252), + [anon_sym_string] = ACTIONS(1252), + [anon_sym_symbol] = ACTIONS(1252), + [sym_readonly] = ACTIONS(1252), }, [163] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1321), - [sym_yield_expression] = STATE(1321), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1321), - [sym_jsx_fragment] = STATE(1321), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1321), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1321), - [sym_await_expression] = STATE(1321), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1321), - [sym_augmented_assignment_expression] = STATE(1321), - [sym_ternary_expression] = STATE(1321), - [sym_binary_expression] = STATE(1321), - [sym_unary_expression] = STATE(1321), - [sym_update_expression] = STATE(1321), - [sym_sequence_expression] = STATE(3091), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1006), + [sym_yield_expression] = STATE(1006), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1006), + [sym_jsx_fragment] = STATE(1006), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(1943), + [sym_jsx_self_closing_element] = STATE(1006), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1006), + [sym_await_expression] = STATE(1006), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1006), + [sym_augmented_assignment_expression] = STATE(1006), + [sym_ternary_expression] = STATE(1006), + [sym_binary_expression] = STATE(1006), + [sym_unary_expression] = STATE(1006), + [sym_update_expression] = STATE(1006), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1321), - [sym_as_expression] = STATE(1321), - [sym_internal_module] = STATE(1321), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1006), + [sym_as_expression] = STATE(1006), + [sym_internal_module] = STATE(1006), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1266), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), @@ -28576,412 +28797,321 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [164] = { - [sym_import] = STATE(1147), - [sym_variable_declarator] = STATE(2603), - [sym_parenthesized_expression] = STATE(936), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(985), - [sym_array] = STATE(986), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(936), - [sym_subscript_expression] = STATE(936), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1495), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1118), + [sym_yield_expression] = STATE(1118), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1118), + [sym_jsx_fragment] = STATE(1118), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1118), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1118), + [sym_await_expression] = STATE(1118), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1118), + [sym_augmented_assignment_expression] = STATE(1118), + [sym_ternary_expression] = STATE(1118), + [sym_binary_expression] = STATE(1118), + [sym_unary_expression] = STATE(1118), + [sym_update_expression] = STATE(1118), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1252), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1118), + [sym_as_expression] = STATE(1118), + [sym_internal_module] = STATE(1118), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_module] = ACTIONS(1254), - [anon_sym_any] = ACTIONS(1254), - [anon_sym_number] = ACTIONS(1254), - [anon_sym_boolean] = ACTIONS(1254), - [anon_sym_string] = ACTIONS(1254), - [anon_sym_symbol] = ACTIONS(1254), - [sym_readonly] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, [165] = { - [sym_import] = STATE(1147), - [sym_variable_declarator] = STATE(2592), - [sym_parenthesized_expression] = STATE(936), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(985), - [sym_array] = STATE(986), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(936), - [sym_subscript_expression] = STATE(936), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1505), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1113), + [sym_yield_expression] = STATE(1113), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1113), + [sym_jsx_fragment] = STATE(1113), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1113), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1113), + [sym_await_expression] = STATE(1113), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1113), + [sym_augmented_assignment_expression] = STATE(1113), + [sym_ternary_expression] = STATE(1113), + [sym_binary_expression] = STATE(1113), + [sym_unary_expression] = STATE(1113), + [sym_update_expression] = STATE(1113), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1252), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1113), + [sym_as_expression] = STATE(1113), + [sym_internal_module] = STATE(1113), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1258), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_module] = ACTIONS(1254), - [anon_sym_any] = ACTIONS(1254), - [anon_sym_number] = ACTIONS(1254), - [anon_sym_boolean] = ACTIONS(1254), - [anon_sym_string] = ACTIONS(1254), - [anon_sym_symbol] = ACTIONS(1254), - [sym_readonly] = ACTIONS(1254), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, [166] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1380), - [sym_yield_expression] = STATE(1380), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1380), - [sym_jsx_fragment] = STATE(1380), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1380), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1380), - [sym_await_expression] = STATE(1380), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1380), - [sym_augmented_assignment_expression] = STATE(1380), - [sym_ternary_expression] = STATE(1380), - [sym_binary_expression] = STATE(1380), - [sym_unary_expression] = STATE(1380), - [sym_update_expression] = STATE(1380), - [sym_sequence_expression] = STATE(3162), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(970), + [sym_parenthesized_expression] = STATE(646), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(961), + [sym_array] = STATE(962), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(970), + [sym_function] = STATE(970), + [sym_generator_function] = STATE(970), + [sym_arrow_function] = STATE(970), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(970), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(646), + [sym_subscript_expression] = STATE(646), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(970), + [sym_template_string] = STATE(970), + [sym_regex] = STATE(970), + [sym_meta_property] = STATE(970), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1380), - [sym_as_expression] = STATE(1380), - [sym_internal_module] = STATE(1380), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2569), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(2949), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1270), + [anon_sym_export] = ACTIONS(1272), + [anon_sym_namespace] = ACTIONS(1274), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(1276), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(1278), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_get] = ACTIONS(1272), + [anon_sym_set] = ACTIONS(1272), + [anon_sym_declare] = ACTIONS(1272), + [anon_sym_public] = ACTIONS(1272), + [anon_sym_private] = ACTIONS(1272), + [anon_sym_protected] = ACTIONS(1272), + [anon_sym_module] = ACTIONS(1272), + [anon_sym_any] = ACTIONS(1272), + [anon_sym_number] = ACTIONS(1272), + [anon_sym_boolean] = ACTIONS(1272), + [anon_sym_string] = ACTIONS(1272), + [anon_sym_symbol] = ACTIONS(1272), + [sym_readonly] = ACTIONS(1272), }, [167] = { - [sym_import] = STATE(1186), - [sym_parenthesized_expression] = STATE(691), - [sym__expression] = STATE(1582), - [sym_yield_expression] = STATE(1582), - [sym_object] = STATE(1130), - [sym_array] = STATE(1128), - [sym_jsx_element] = STATE(1582), - [sym_jsx_fragment] = STATE(1582), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1582), - [sym_class] = STATE(1186), - [sym_function] = STATE(1186), - [sym_generator_function] = STATE(1186), - [sym_arrow_function] = STATE(1186), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1186), - [sym_new_expression] = STATE(1582), - [sym_await_expression] = STATE(1582), - [sym_member_expression] = STATE(691), - [sym_subscript_expression] = STATE(691), - [sym_assignment_expression] = STATE(1582), - [sym_augmented_assignment_expression] = STATE(1582), - [sym_ternary_expression] = STATE(1582), - [sym_binary_expression] = STATE(1582), - [sym_unary_expression] = STATE(1582), - [sym_update_expression] = STATE(1582), - [sym_string] = STATE(1186), - [sym_template_string] = STATE(1186), - [sym_regex] = STATE(1186), - [sym_meta_property] = STATE(1186), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1582), - [sym_as_expression] = STATE(1582), - [sym_internal_module] = STATE(1582), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(1262), - [anon_sym_namespace] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(1268), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1272), - [sym_this] = ACTIONS(1274), - [sym_super] = ACTIONS(1274), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_undefined] = ACTIONS(1274), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_get] = ACTIONS(1262), - [anon_sym_set] = ACTIONS(1262), - [anon_sym_declare] = ACTIONS(1262), - [anon_sym_public] = ACTIONS(1262), - [anon_sym_private] = ACTIONS(1262), - [anon_sym_protected] = ACTIONS(1262), - [anon_sym_module] = ACTIONS(1262), - [anon_sym_any] = ACTIONS(1262), - [anon_sym_number] = ACTIONS(1262), - [anon_sym_boolean] = ACTIONS(1262), - [anon_sym_string] = ACTIONS(1262), - [anon_sym_symbol] = ACTIONS(1262), - [sym_readonly] = ACTIONS(1262), - }, - [168] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1146), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(992), - [sym_yield_expression] = STATE(992), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(992), - [sym_jsx_fragment] = STATE(992), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(992), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(992), - [sym_await_expression] = STATE(992), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(992), - [sym_augmented_assignment_expression] = STATE(992), - [sym_ternary_expression] = STATE(992), - [sym_binary_expression] = STATE(992), - [sym_unary_expression] = STATE(992), - [sym_update_expression] = STATE(992), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1107), + [sym_yield_expression] = STATE(1107), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1107), + [sym_jsx_fragment] = STATE(1107), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1107), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1107), + [sym_await_expression] = STATE(1107), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1107), + [sym_augmented_assignment_expression] = STATE(1107), + [sym_ternary_expression] = STATE(1107), + [sym_binary_expression] = STATE(1107), + [sym_unary_expression] = STATE(1107), + [sym_update_expression] = STATE(1107), + [sym_sequence_expression] = STATE(3177), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(992), - [sym_as_expression] = STATE(992), - [sym_internal_module] = STATE(992), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1107), + [sym_as_expression] = STATE(1107), + [sym_internal_module] = STATE(1107), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -29030,135 +29160,135 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [169] = { - [sym_import] = STATE(1186), - [sym_parenthesized_expression] = STATE(691), - [sym__expression] = STATE(1582), - [sym_yield_expression] = STATE(1582), - [sym_object] = STATE(1130), - [sym_array] = STATE(1128), - [sym_jsx_element] = STATE(1582), - [sym_jsx_fragment] = STATE(1582), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1582), - [sym_class] = STATE(1186), - [sym_function] = STATE(1186), - [sym_generator_function] = STATE(1186), - [sym_arrow_function] = STATE(1186), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1186), - [sym_new_expression] = STATE(1582), - [sym_await_expression] = STATE(1582), - [sym_member_expression] = STATE(691), - [sym_subscript_expression] = STATE(691), - [sym_assignment_expression] = STATE(1582), - [sym_augmented_assignment_expression] = STATE(1582), - [sym_ternary_expression] = STATE(1582), - [sym_binary_expression] = STATE(1582), - [sym_unary_expression] = STATE(1582), - [sym_update_expression] = STATE(1582), - [sym_string] = STATE(1186), - [sym_template_string] = STATE(1186), - [sym_regex] = STATE(1186), - [sym_meta_property] = STATE(1186), + [168] = { + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1497), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1117), + [sym_yield_expression] = STATE(1117), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1117), + [sym_jsx_fragment] = STATE(1117), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1117), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1117), + [sym_await_expression] = STATE(1117), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1117), + [sym_augmented_assignment_expression] = STATE(1117), + [sym_ternary_expression] = STATE(1117), + [sym_binary_expression] = STATE(1117), + [sym_unary_expression] = STATE(1117), + [sym_update_expression] = STATE(1117), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2617), - [sym_non_null_expression] = STATE(1582), - [sym_as_expression] = STATE(1582), - [sym_internal_module] = STATE(1582), - [sym_type_parameters] = STATE(3067), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1117), + [sym_as_expression] = STATE(1117), + [sym_internal_module] = STATE(1117), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(1276), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_namespace] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_typeof] = ACTIONS(611), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1266), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1272), - [sym_this] = ACTIONS(1274), - [sym_super] = ACTIONS(1274), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_undefined] = ACTIONS(1274), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_get] = ACTIONS(1278), - [anon_sym_set] = ACTIONS(1278), - [anon_sym_declare] = ACTIONS(1278), - [anon_sym_public] = ACTIONS(1278), - [anon_sym_private] = ACTIONS(1278), - [anon_sym_protected] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_any] = ACTIONS(1278), - [anon_sym_number] = ACTIONS(1278), - [anon_sym_boolean] = ACTIONS(1278), - [anon_sym_string] = ACTIONS(1278), - [anon_sym_symbol] = ACTIONS(1278), - [sym_readonly] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [170] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1261), - [sym_yield_expression] = STATE(1261), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1261), - [sym_jsx_fragment] = STATE(1261), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1261), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1261), - [sym_await_expression] = STATE(1261), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1261), - [sym_augmented_assignment_expression] = STATE(1261), - [sym_ternary_expression] = STATE(1261), - [sym_binary_expression] = STATE(1261), - [sym_unary_expression] = STATE(1261), - [sym_update_expression] = STATE(1261), - [sym_sequence_expression] = STATE(3035), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [169] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1186), + [sym_yield_expression] = STATE(1186), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1186), + [sym_jsx_fragment] = STATE(1186), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1186), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1186), + [sym_await_expression] = STATE(1186), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1186), + [sym_augmented_assignment_expression] = STATE(1186), + [sym_ternary_expression] = STATE(1186), + [sym_binary_expression] = STATE(1186), + [sym_unary_expression] = STATE(1186), + [sym_update_expression] = STATE(1186), + [sym_sequence_expression] = STATE(3059), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1261), - [sym_as_expression] = STATE(1261), - [sym_internal_module] = STATE(1261), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1186), + [sym_as_expression] = STATE(1186), + [sym_internal_module] = STATE(1186), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -29212,46 +29342,137 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [171] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1003), - [sym_yield_expression] = STATE(1003), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1003), - [sym_jsx_fragment] = STATE(1003), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(1961), - [sym_jsx_self_closing_element] = STATE(1003), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1003), - [sym_await_expression] = STATE(1003), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(1003), - [sym_ternary_expression] = STATE(1003), - [sym_binary_expression] = STATE(1003), - [sym_unary_expression] = STATE(1003), - [sym_update_expression] = STATE(1003), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [170] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1504), + [sym_jsx_fragment] = STATE(1504), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1504), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1504), + [sym_augmented_assignment_expression] = STATE(1504), + [sym_ternary_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_unary_expression] = STATE(1504), + [sym_update_expression] = STATE(1504), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1003), - [sym_as_expression] = STATE(1003), - [sym_internal_module] = STATE(1003), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1504), + [sym_as_expression] = STATE(1504), + [sym_internal_module] = STATE(1504), + [sym_mapped_type_clause] = STATE(3092), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(1284), + [anon_sym_export] = ACTIONS(1286), + [anon_sym_namespace] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(1286), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(1290), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_get] = ACTIONS(1286), + [anon_sym_set] = ACTIONS(1286), + [anon_sym_declare] = ACTIONS(1286), + [anon_sym_public] = ACTIONS(1286), + [anon_sym_private] = ACTIONS(1286), + [anon_sym_protected] = ACTIONS(1286), + [anon_sym_module] = ACTIONS(1286), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), + [sym_readonly] = ACTIONS(1286), + }, + [171] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1367), + [sym_yield_expression] = STATE(1367), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1367), + [sym_jsx_fragment] = STATE(1367), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1367), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1367), + [sym_await_expression] = STATE(1367), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1367), + [sym_augmented_assignment_expression] = STATE(1367), + [sym_ternary_expression] = STATE(1367), + [sym_binary_expression] = STATE(1367), + [sym_unary_expression] = STATE(1367), + [sym_update_expression] = STATE(1367), + [sym_sequence_expression] = STATE(3124), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1367), + [sym_as_expression] = STATE(1367), + [sym_internal_module] = STATE(1367), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), @@ -29304,160 +29525,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [172] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1055), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1287), - [sym_yield_expression] = STATE(1287), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1287), - [sym_jsx_fragment] = STATE(1287), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1287), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1287), - [sym_await_expression] = STATE(1287), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1287), - [sym_augmented_assignment_expression] = STATE(1287), - [sym_ternary_expression] = STATE(1287), - [sym_binary_expression] = STATE(1287), - [sym_unary_expression] = STATE(1287), - [sym_update_expression] = STATE(1287), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(970), + [sym_parenthesized_expression] = STATE(646), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(961), + [sym_array] = STATE(962), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(970), + [sym_function] = STATE(970), + [sym_generator_function] = STATE(970), + [sym_arrow_function] = STATE(970), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(970), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(646), + [sym_subscript_expression] = STATE(646), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(970), + [sym_template_string] = STATE(970), + [sym_regex] = STATE(970), + [sym_meta_property] = STATE(970), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1287), - [sym_as_expression] = STATE(1287), - [sym_internal_module] = STATE(1287), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1292), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_namespace] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(1256), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(1298), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_get] = ACTIONS(1294), + [anon_sym_set] = ACTIONS(1294), + [anon_sym_declare] = ACTIONS(1294), + [anon_sym_public] = ACTIONS(1294), + [anon_sym_private] = ACTIONS(1294), + [anon_sym_protected] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_any] = ACTIONS(1294), + [anon_sym_number] = ACTIONS(1294), + [anon_sym_boolean] = ACTIONS(1294), + [anon_sym_string] = ACTIONS(1294), + [anon_sym_symbol] = ACTIONS(1294), + [sym_readonly] = ACTIONS(1294), }, [173] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1038), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1028), - [sym_yield_expression] = STATE(1028), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1028), - [sym_jsx_fragment] = STATE(1028), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1028), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1028), - [sym_await_expression] = STATE(1028), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1028), - [sym_augmented_assignment_expression] = STATE(1028), - [sym_ternary_expression] = STATE(1028), - [sym_binary_expression] = STATE(1028), - [sym_unary_expression] = STATE(1028), - [sym_update_expression] = STATE(1028), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1181), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1228), + [sym_yield_expression] = STATE(1228), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1228), + [sym_jsx_fragment] = STATE(1228), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1228), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1228), + [sym_await_expression] = STATE(1228), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1228), + [sym_augmented_assignment_expression] = STATE(1228), + [sym_ternary_expression] = STATE(1228), + [sym_binary_expression] = STATE(1228), + [sym_unary_expression] = STATE(1228), + [sym_update_expression] = STATE(1228), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1028), - [sym_as_expression] = STATE(1028), - [sym_internal_module] = STATE(1028), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1228), + [sym_as_expression] = STATE(1228), + [sym_internal_module] = STATE(1228), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -29470,64 +29691,337 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, [174] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1042), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1025), - [sym_yield_expression] = STATE(1025), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1025), - [sym_jsx_fragment] = STATE(1025), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1025), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1025), - [sym_await_expression] = STATE(1025), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1025), - [sym_augmented_assignment_expression] = STATE(1025), - [sym_ternary_expression] = STATE(1025), - [sym_binary_expression] = STATE(1025), - [sym_unary_expression] = STATE(1025), - [sym_update_expression] = STATE(1025), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(970), + [sym_parenthesized_expression] = STATE(646), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(961), + [sym_array] = STATE(962), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(970), + [sym_function] = STATE(970), + [sym_generator_function] = STATE(970), + [sym_arrow_function] = STATE(970), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(970), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(646), + [sym_subscript_expression] = STATE(646), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(970), + [sym_template_string] = STATE(970), + [sym_regex] = STATE(970), + [sym_meta_property] = STATE(970), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1270), + [anon_sym_export] = ACTIONS(1272), + [anon_sym_namespace] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(1276), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(1278), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_get] = ACTIONS(1272), + [anon_sym_set] = ACTIONS(1272), + [anon_sym_declare] = ACTIONS(1272), + [anon_sym_public] = ACTIONS(1272), + [anon_sym_private] = ACTIONS(1272), + [anon_sym_protected] = ACTIONS(1272), + [anon_sym_module] = ACTIONS(1272), + [anon_sym_any] = ACTIONS(1272), + [anon_sym_number] = ACTIONS(1272), + [anon_sym_boolean] = ACTIONS(1272), + [anon_sym_string] = ACTIONS(1272), + [anon_sym_symbol] = ACTIONS(1272), + [sym_readonly] = ACTIONS(1272), + }, + [175] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1082), + [sym_yield_expression] = STATE(1082), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1082), + [sym_jsx_fragment] = STATE(1082), + [sym_jsx_opening_element] = STATE(2038), + [sym_nested_identifier] = STATE(1943), + [sym_jsx_self_closing_element] = STATE(1082), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1082), + [sym_await_expression] = STATE(1082), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1082), + [sym_augmented_assignment_expression] = STATE(1082), + [sym_ternary_expression] = STATE(1082), + [sym_binary_expression] = STATE(1082), + [sym_unary_expression] = STATE(1082), + [sym_update_expression] = STATE(1082), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1082), + [sym_internal_module] = STATE(1082), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(1302), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [176] = { + [sym_import] = STATE(1267), + [sym_parenthesized_expression] = STATE(688), + [sym__expression] = STATE(1657), + [sym_yield_expression] = STATE(1657), + [sym_object] = STATE(1148), + [sym_array] = STATE(1151), + [sym_jsx_element] = STATE(1657), + [sym_jsx_fragment] = STATE(1657), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1657), + [sym_class] = STATE(1267), + [sym_function] = STATE(1267), + [sym_generator_function] = STATE(1267), + [sym_arrow_function] = STATE(1267), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1267), + [sym_new_expression] = STATE(1657), + [sym_await_expression] = STATE(1657), + [sym_member_expression] = STATE(688), + [sym_subscript_expression] = STATE(688), + [sym_assignment_expression] = STATE(1657), + [sym_augmented_assignment_expression] = STATE(1657), + [sym_ternary_expression] = STATE(1657), + [sym_binary_expression] = STATE(1657), + [sym_unary_expression] = STATE(1657), + [sym_update_expression] = STATE(1657), + [sym_string] = STATE(1267), + [sym_template_string] = STATE(1267), + [sym_regex] = STATE(1267), + [sym_meta_property] = STATE(1267), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2570), + [sym_non_null_expression] = STATE(1657), + [sym_as_expression] = STATE(1657), + [sym_internal_module] = STATE(1657), + [sym_type_parameters] = STATE(3020), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(1304), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1262), + [sym_this] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [sym_null] = ACTIONS(1264), + [sym_undefined] = ACTIONS(1264), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [sym_readonly] = ACTIONS(1306), + }, + [177] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1347), + [sym_yield_expression] = STATE(1347), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1347), + [sym_jsx_fragment] = STATE(1347), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1347), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1347), + [sym_await_expression] = STATE(1347), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1347), + [sym_augmented_assignment_expression] = STATE(1347), + [sym_ternary_expression] = STATE(1347), + [sym_binary_expression] = STATE(1347), + [sym_unary_expression] = STATE(1347), + [sym_update_expression] = STATE(1347), + [sym_sequence_expression] = STATE(3199), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1025), - [sym_as_expression] = STATE(1025), - [sym_internal_module] = STATE(1025), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1347), + [sym_as_expression] = STATE(1347), + [sym_internal_module] = STATE(1347), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -29576,231 +30070,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [175] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(728), - [sym__expression] = STATE(1680), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1249), - [sym_array] = STATE(1247), - [sym_jsx_element] = STATE(1680), - [sym_jsx_fragment] = STATE(1680), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1680), - [sym_class] = STATE(1326), - [sym_function] = STATE(1326), - [sym_generator_function] = STATE(1326), - [sym_arrow_function] = STATE(1326), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1326), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(728), - [sym_subscript_expression] = STATE(728), - [sym_assignment_expression] = STATE(1680), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1326), - [sym_template_string] = STATE(1326), - [sym_regex] = STATE(1326), - [sym_meta_property] = STATE(1326), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2617), - [sym_non_null_expression] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_parameters] = STATE(3067), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(1286), - [anon_sym_export] = ACTIONS(1288), - [anon_sym_namespace] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(1288), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(1292), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(1294), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(1298), - [sym_this] = ACTIONS(1300), - [sym_super] = ACTIONS(1300), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_get] = ACTIONS(1288), - [anon_sym_set] = ACTIONS(1288), - [anon_sym_declare] = ACTIONS(1288), - [anon_sym_public] = ACTIONS(1288), - [anon_sym_private] = ACTIONS(1288), - [anon_sym_protected] = ACTIONS(1288), - [anon_sym_module] = ACTIONS(1288), - [anon_sym_any] = ACTIONS(1288), - [anon_sym_number] = ACTIONS(1288), - [anon_sym_boolean] = ACTIONS(1288), - [anon_sym_string] = ACTIONS(1288), - [anon_sym_symbol] = ACTIONS(1288), - [sym_readonly] = ACTIONS(1288), - }, - [176] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1133), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1245), - [sym_yield_expression] = STATE(1245), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1245), - [sym_jsx_fragment] = STATE(1245), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1245), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1245), - [sym_await_expression] = STATE(1245), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1245), - [sym_augmented_assignment_expression] = STATE(1245), - [sym_ternary_expression] = STATE(1245), - [sym_binary_expression] = STATE(1245), - [sym_unary_expression] = STATE(1245), - [sym_update_expression] = STATE(1245), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1245), - [sym_as_expression] = STATE(1245), - [sym_internal_module] = STATE(1245), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), - }, - [177] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1055), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1017), - [sym_yield_expression] = STATE(1017), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1017), - [sym_jsx_fragment] = STATE(1017), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1017), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1017), - [sym_await_expression] = STATE(1017), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1017), - [sym_augmented_assignment_expression] = STATE(1017), - [sym_ternary_expression] = STATE(1017), - [sym_binary_expression] = STATE(1017), - [sym_unary_expression] = STATE(1017), - [sym_update_expression] = STATE(1017), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [178] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1371), + [sym_yield_expression] = STATE(1371), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1371), + [sym_jsx_fragment] = STATE(1371), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1371), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1371), + [sym_await_expression] = STATE(1371), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1371), + [sym_augmented_assignment_expression] = STATE(1371), + [sym_ternary_expression] = STATE(1371), + [sym_binary_expression] = STATE(1371), + [sym_unary_expression] = STATE(1371), + [sym_update_expression] = STATE(1371), + [sym_sequence_expression] = STATE(3211), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1017), - [sym_as_expression] = STATE(1017), - [sym_internal_module] = STATE(1017), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1371), + [sym_as_expression] = STATE(1371), + [sym_internal_module] = STATE(1371), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -29849,413 +30161,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [178] = { - [sym_import] = STATE(981), - [sym_parenthesized_expression] = STATE(646), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(954), - [sym_array] = STATE(961), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(981), - [sym_function] = STATE(981), - [sym_generator_function] = STATE(981), - [sym_arrow_function] = STATE(981), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(981), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(646), - [sym_subscript_expression] = STATE(646), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(981), - [sym_template_string] = STATE(981), - [sym_regex] = STATE(981), - [sym_meta_property] = STATE(981), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1302), - [anon_sym_export] = ACTIONS(1304), - [anon_sym_namespace] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1304), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1312), - [sym_this] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_get] = ACTIONS(1304), - [anon_sym_set] = ACTIONS(1304), - [anon_sym_declare] = ACTIONS(1304), - [anon_sym_public] = ACTIONS(1304), - [anon_sym_private] = ACTIONS(1304), - [anon_sym_protected] = ACTIONS(1304), - [anon_sym_module] = ACTIONS(1304), - [anon_sym_any] = ACTIONS(1304), - [anon_sym_number] = ACTIONS(1304), - [anon_sym_boolean] = ACTIONS(1304), - [anon_sym_string] = ACTIONS(1304), - [anon_sym_symbol] = ACTIONS(1304), - [sym_readonly] = ACTIONS(1304), - }, [179] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1256), - [sym_yield_expression] = STATE(1256), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1256), - [sym_jsx_fragment] = STATE(1256), - [sym_jsx_opening_element] = STATE(2054), - [sym_nested_identifier] = STATE(1941), - [sym_jsx_self_closing_element] = STATE(1256), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1256), - [sym_await_expression] = STATE(1256), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1256), - [sym_augmented_assignment_expression] = STATE(1256), - [sym_ternary_expression] = STATE(1256), - [sym_binary_expression] = STATE(1256), - [sym_unary_expression] = STATE(1256), - [sym_update_expression] = STATE(1256), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1256), - [sym_as_expression] = STATE(1256), - [sym_internal_module] = STATE(1256), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(1316), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [180] = { - [sym_import] = STATE(1696), - [sym_statement_block] = STATE(1620), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1238), - [sym_yield_expression] = STATE(1238), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1238), - [sym_jsx_fragment] = STATE(1238), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1238), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1238), - [sym_await_expression] = STATE(1238), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1238), - [sym_augmented_assignment_expression] = STATE(1238), - [sym_ternary_expression] = STATE(1238), - [sym_binary_expression] = STATE(1238), - [sym_unary_expression] = STATE(1238), - [sym_update_expression] = STATE(1238), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1238), - [sym_as_expression] = STATE(1238), - [sym_internal_module] = STATE(1238), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [181] = { - [sym_import] = STATE(1696), - [sym_statement_block] = STATE(1668), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1198), - [sym_yield_expression] = STATE(1198), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1198), - [sym_jsx_fragment] = STATE(1198), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1198), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1198), - [sym_await_expression] = STATE(1198), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1198), - [sym_augmented_assignment_expression] = STATE(1198), - [sym_ternary_expression] = STATE(1198), - [sym_binary_expression] = STATE(1198), - [sym_unary_expression] = STATE(1198), - [sym_update_expression] = STATE(1198), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1198), - [sym_as_expression] = STATE(1198), - [sym_internal_module] = STATE(1198), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [182] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1043), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(982), - [sym_yield_expression] = STATE(982), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(982), - [sym_jsx_fragment] = STATE(982), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(982), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(982), - [sym_await_expression] = STATE(982), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(982), - [sym_augmented_assignment_expression] = STATE(982), - [sym_ternary_expression] = STATE(982), - [sym_binary_expression] = STATE(982), - [sym_unary_expression] = STATE(982), - [sym_update_expression] = STATE(982), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1006), + [sym_yield_expression] = STATE(1006), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1006), + [sym_jsx_fragment] = STATE(1006), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(1943), + [sym_jsx_self_closing_element] = STATE(1006), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1006), + [sym_await_expression] = STATE(1006), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1006), + [sym_augmented_assignment_expression] = STATE(1006), + [sym_ternary_expression] = STATE(1006), + [sym_binary_expression] = STATE(1006), + [sym_unary_expression] = STATE(1006), + [sym_update_expression] = STATE(1006), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(982), - [sym_as_expression] = STATE(982), - [sym_internal_module] = STATE(982), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1006), + [sym_as_expression] = STATE(1006), + [sym_internal_module] = STATE(1006), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1312), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -30304,343 +30252,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [183] = { - [sym_import] = STATE(1326), - [sym_parenthesized_expression] = STATE(728), - [sym__expression] = STATE(1680), - [sym_yield_expression] = STATE(1680), - [sym_object] = STATE(1249), - [sym_array] = STATE(1247), - [sym_jsx_element] = STATE(1680), - [sym_jsx_fragment] = STATE(1680), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1680), - [sym_class] = STATE(1326), - [sym_function] = STATE(1326), - [sym_generator_function] = STATE(1326), - [sym_arrow_function] = STATE(1326), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1326), - [sym_new_expression] = STATE(1680), - [sym_await_expression] = STATE(1680), - [sym_member_expression] = STATE(728), - [sym_subscript_expression] = STATE(728), - [sym_assignment_expression] = STATE(1680), - [sym_augmented_assignment_expression] = STATE(1680), - [sym_ternary_expression] = STATE(1680), - [sym_binary_expression] = STATE(1680), - [sym_unary_expression] = STATE(1680), - [sym_update_expression] = STATE(1680), - [sym_string] = STATE(1326), - [sym_template_string] = STATE(1326), - [sym_regex] = STATE(1326), - [sym_meta_property] = STATE(1326), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1680), - [sym_as_expression] = STATE(1680), - [sym_internal_module] = STATE(1680), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(1286), - [anon_sym_export] = ACTIONS(1288), - [anon_sym_namespace] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(1288), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_DOT] = ACTIONS(1292), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(1294), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(1298), - [sym_this] = ACTIONS(1300), - [sym_super] = ACTIONS(1300), - [sym_true] = ACTIONS(1300), - [sym_false] = ACTIONS(1300), - [sym_null] = ACTIONS(1300), - [sym_undefined] = ACTIONS(1300), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1288), - [anon_sym_get] = ACTIONS(1288), - [anon_sym_set] = ACTIONS(1288), - [anon_sym_declare] = ACTIONS(1288), - [anon_sym_public] = ACTIONS(1288), - [anon_sym_private] = ACTIONS(1288), - [anon_sym_protected] = ACTIONS(1288), - [anon_sym_module] = ACTIONS(1288), - [anon_sym_any] = ACTIONS(1288), - [anon_sym_number] = ACTIONS(1288), - [anon_sym_boolean] = ACTIONS(1288), - [anon_sym_string] = ACTIONS(1288), - [anon_sym_symbol] = ACTIONS(1288), - [sym_readonly] = ACTIONS(1288), - }, - [184] = { - [sym_import] = STATE(1696), - [sym_statement_block] = STATE(1672), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1199), - [sym_yield_expression] = STATE(1199), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1199), - [sym_jsx_fragment] = STATE(1199), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1199), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1199), - [sym_await_expression] = STATE(1199), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1199), - [sym_augmented_assignment_expression] = STATE(1199), - [sym_ternary_expression] = STATE(1199), - [sym_binary_expression] = STATE(1199), - [sym_unary_expression] = STATE(1199), - [sym_update_expression] = STATE(1199), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1199), - [sym_as_expression] = STATE(1199), - [sym_internal_module] = STATE(1199), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [185] = { - [sym_import] = STATE(1696), - [sym_statement_block] = STATE(1561), + [180] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1126), [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1200), - [sym_yield_expression] = STATE(1200), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1200), - [sym_jsx_fragment] = STATE(1200), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1200), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1200), - [sym_await_expression] = STATE(1200), + [sym__expression] = STATE(1216), + [sym_yield_expression] = STATE(1216), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1216), + [sym_jsx_fragment] = STATE(1216), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1216), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1216), + [sym_await_expression] = STATE(1216), [sym_member_expression] = STATE(785), [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1200), - [sym_augmented_assignment_expression] = STATE(1200), - [sym_ternary_expression] = STATE(1200), - [sym_binary_expression] = STATE(1200), - [sym_unary_expression] = STATE(1200), - [sym_update_expression] = STATE(1200), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1200), - [sym_as_expression] = STATE(1200), - [sym_internal_module] = STATE(1200), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [186] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1133), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1291), - [sym_yield_expression] = STATE(1291), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1291), - [sym_jsx_fragment] = STATE(1291), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1291), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1291), - [sym_await_expression] = STATE(1291), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1291), - [sym_augmented_assignment_expression] = STATE(1291), - [sym_ternary_expression] = STATE(1291), - [sym_binary_expression] = STATE(1291), - [sym_unary_expression] = STATE(1291), - [sym_update_expression] = STATE(1291), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_assignment_expression] = STATE(1216), + [sym_augmented_assignment_expression] = STATE(1216), + [sym_ternary_expression] = STATE(1216), + [sym_binary_expression] = STATE(1216), + [sym_unary_expression] = STATE(1216), + [sym_update_expression] = STATE(1216), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1291), - [sym_as_expression] = STATE(1291), - [sym_internal_module] = STATE(1291), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1216), + [sym_as_expression] = STATE(1216), + [sym_internal_module] = STATE(1216), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -30653,151 +30328,151 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [187] = { - [sym_import] = STATE(981), + [181] = { + [sym_import] = STATE(970), [sym_parenthesized_expression] = STATE(646), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(954), - [sym_array] = STATE(961), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(981), - [sym_function] = STATE(981), - [sym_generator_function] = STATE(981), - [sym_arrow_function] = STATE(981), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(981), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(961), + [sym_array] = STATE(962), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(970), + [sym_function] = STATE(970), + [sym_generator_function] = STATE(970), + [sym_arrow_function] = STATE(970), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(970), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), [sym_member_expression] = STATE(646), [sym_subscript_expression] = STATE(646), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(981), - [sym_template_string] = STATE(981), - [sym_regex] = STATE(981), - [sym_meta_property] = STATE(981), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(970), + [sym_template_string] = STATE(970), + [sym_regex] = STATE(970), + [sym_meta_property] = STATE(970), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2615), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(3066), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1302), - [anon_sym_export] = ACTIONS(1304), - [anon_sym_namespace] = ACTIONS(1306), + [sym_formal_parameters] = STATE(2621), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(3068), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1270), + [anon_sym_export] = ACTIONS(1272), + [anon_sym_namespace] = ACTIONS(1274), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1304), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(1308), + [anon_sym_DOT] = ACTIONS(1276), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1278), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1312), - [sym_this] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_get] = ACTIONS(1304), - [anon_sym_set] = ACTIONS(1304), - [anon_sym_declare] = ACTIONS(1304), - [anon_sym_public] = ACTIONS(1304), - [anon_sym_private] = ACTIONS(1304), - [anon_sym_protected] = ACTIONS(1304), - [anon_sym_module] = ACTIONS(1304), - [anon_sym_any] = ACTIONS(1304), - [anon_sym_number] = ACTIONS(1304), - [anon_sym_boolean] = ACTIONS(1304), - [anon_sym_string] = ACTIONS(1304), - [anon_sym_symbol] = ACTIONS(1304), - [sym_readonly] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_get] = ACTIONS(1272), + [anon_sym_set] = ACTIONS(1272), + [anon_sym_declare] = ACTIONS(1272), + [anon_sym_public] = ACTIONS(1272), + [anon_sym_private] = ACTIONS(1272), + [anon_sym_protected] = ACTIONS(1272), + [anon_sym_module] = ACTIONS(1272), + [anon_sym_any] = ACTIONS(1272), + [anon_sym_number] = ACTIONS(1272), + [anon_sym_boolean] = ACTIONS(1272), + [anon_sym_string] = ACTIONS(1272), + [anon_sym_symbol] = ACTIONS(1272), + [sym_readonly] = ACTIONS(1272), }, - [188] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1395), - [sym_yield_expression] = STATE(1395), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1395), - [sym_jsx_fragment] = STATE(1395), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1395), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1395), - [sym_await_expression] = STATE(1395), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1395), - [sym_augmented_assignment_expression] = STATE(1395), - [sym_ternary_expression] = STATE(1395), - [sym_binary_expression] = STATE(1395), - [sym_unary_expression] = STATE(1395), - [sym_update_expression] = STATE(1395), - [sym_sequence_expression] = STATE(3303), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [182] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1373), + [sym_yield_expression] = STATE(1373), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1373), + [sym_jsx_fragment] = STATE(1373), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1373), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1373), + [sym_await_expression] = STATE(1373), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1373), + [sym_augmented_assignment_expression] = STATE(1373), + [sym_ternary_expression] = STATE(1373), + [sym_binary_expression] = STATE(1373), + [sym_unary_expression] = STATE(1373), + [sym_update_expression] = STATE(1373), + [sym_sequence_expression] = STATE(3212), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1395), - [sym_as_expression] = STATE(1395), - [sym_internal_module] = STATE(1395), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1373), + [sym_as_expression] = STATE(1373), + [sym_internal_module] = STATE(1373), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -30850,228 +30525,46 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [189] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1529), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1396), - [sym_yield_expression] = STATE(1396), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1396), - [sym_jsx_fragment] = STATE(1396), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1396), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1396), - [sym_await_expression] = STATE(1396), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1396), - [sym_augmented_assignment_expression] = STATE(1396), - [sym_ternary_expression] = STATE(1396), - [sym_binary_expression] = STATE(1396), - [sym_unary_expression] = STATE(1396), - [sym_update_expression] = STATE(1396), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1396), - [sym_as_expression] = STATE(1396), - [sym_internal_module] = STATE(1396), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), - }, - [190] = { - [sym_import] = STATE(981), - [sym_parenthesized_expression] = STATE(646), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(954), - [sym_array] = STATE(961), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(981), - [sym_function] = STATE(981), - [sym_generator_function] = STATE(981), - [sym_arrow_function] = STATE(981), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(981), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(646), - [sym_subscript_expression] = STATE(646), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(981), - [sym_template_string] = STATE(981), - [sym_regex] = STATE(981), - [sym_meta_property] = STATE(981), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1322), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(1292), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1312), - [sym_this] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - [sym_readonly] = ACTIONS(1324), - }, - [191] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1003), - [sym_yield_expression] = STATE(1003), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1003), - [sym_jsx_fragment] = STATE(1003), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(1941), - [sym_jsx_self_closing_element] = STATE(1003), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1003), - [sym_await_expression] = STATE(1003), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(1003), - [sym_ternary_expression] = STATE(1003), - [sym_binary_expression] = STATE(1003), - [sym_unary_expression] = STATE(1003), - [sym_update_expression] = STATE(1003), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [183] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1375), + [sym_yield_expression] = STATE(1375), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1375), + [sym_jsx_fragment] = STATE(1375), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1375), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1375), + [sym_await_expression] = STATE(1375), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1375), + [sym_augmented_assignment_expression] = STATE(1375), + [sym_ternary_expression] = STATE(1375), + [sym_binary_expression] = STATE(1375), + [sym_unary_expression] = STATE(1375), + [sym_update_expression] = STATE(1375), + [sym_sequence_expression] = STATE(3214), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1003), - [sym_as_expression] = STATE(1003), - [sym_internal_module] = STATE(1003), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1330), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1375), + [sym_as_expression] = STATE(1375), + [sym_internal_module] = STATE(1375), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), @@ -31123,137 +30616,137 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [192] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1357), - [sym_yield_expression] = STATE(1357), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1357), - [sym_jsx_fragment] = STATE(1357), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1357), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1357), - [sym_await_expression] = STATE(1357), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1357), - [sym_augmented_assignment_expression] = STATE(1357), - [sym_ternary_expression] = STATE(1357), - [sym_binary_expression] = STATE(1357), - [sym_unary_expression] = STATE(1357), - [sym_update_expression] = STATE(1357), - [sym_sequence_expression] = STATE(3140), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [184] = { + [sym_import] = STATE(970), + [sym_parenthesized_expression] = STATE(646), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(961), + [sym_array] = STATE(962), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(970), + [sym_function] = STATE(970), + [sym_generator_function] = STATE(970), + [sym_arrow_function] = STATE(970), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(970), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(646), + [sym_subscript_expression] = STATE(646), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(970), + [sym_template_string] = STATE(970), + [sym_regex] = STATE(970), + [sym_meta_property] = STATE(970), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1357), - [sym_as_expression] = STATE(1357), - [sym_internal_module] = STATE(1357), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1292), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_namespace] = ACTIONS(1296), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(1314), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(1298), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_get] = ACTIONS(1294), + [anon_sym_set] = ACTIONS(1294), + [anon_sym_declare] = ACTIONS(1294), + [anon_sym_public] = ACTIONS(1294), + [anon_sym_private] = ACTIONS(1294), + [anon_sym_protected] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_any] = ACTIONS(1294), + [anon_sym_number] = ACTIONS(1294), + [anon_sym_boolean] = ACTIONS(1294), + [anon_sym_string] = ACTIONS(1294), + [anon_sym_symbol] = ACTIONS(1294), + [sym_readonly] = ACTIONS(1294), }, - [193] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1003), - [sym_yield_expression] = STATE(1003), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1003), - [sym_jsx_fragment] = STATE(1003), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(1941), - [sym_jsx_self_closing_element] = STATE(1003), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1003), - [sym_await_expression] = STATE(1003), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(1003), - [sym_ternary_expression] = STATE(1003), - [sym_binary_expression] = STATE(1003), - [sym_unary_expression] = STATE(1003), - [sym_update_expression] = STATE(1003), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [185] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1381), + [sym_yield_expression] = STATE(1381), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1381), + [sym_jsx_fragment] = STATE(1381), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1381), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1381), + [sym_await_expression] = STATE(1381), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1381), + [sym_augmented_assignment_expression] = STATE(1381), + [sym_ternary_expression] = STATE(1381), + [sym_binary_expression] = STATE(1381), + [sym_unary_expression] = STATE(1381), + [sym_update_expression] = STATE(1381), + [sym_sequence_expression] = STATE(3221), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1003), - [sym_as_expression] = STATE(1003), - [sym_internal_module] = STATE(1003), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1332), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1381), + [sym_as_expression] = STATE(1381), + [sym_internal_module] = STATE(1381), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), @@ -31305,45 +30798,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [194] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1101), - [sym_yield_expression] = STATE(1101), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1101), - [sym_jsx_fragment] = STATE(1101), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1101), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1101), - [sym_await_expression] = STATE(1101), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1101), - [sym_augmented_assignment_expression] = STATE(1101), - [sym_ternary_expression] = STATE(1101), - [sym_binary_expression] = STATE(1101), - [sym_unary_expression] = STATE(1101), - [sym_update_expression] = STATE(1101), - [sym_sequence_expression] = STATE(3077), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [186] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1397), + [sym_yield_expression] = STATE(1397), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1397), + [sym_jsx_fragment] = STATE(1397), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1397), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1397), + [sym_await_expression] = STATE(1397), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1397), + [sym_augmented_assignment_expression] = STATE(1397), + [sym_ternary_expression] = STATE(1397), + [sym_binary_expression] = STATE(1397), + [sym_unary_expression] = STATE(1397), + [sym_update_expression] = STATE(1397), + [sym_sequence_expression] = STATE(3190), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1101), - [sym_as_expression] = STATE(1101), - [sym_internal_module] = STATE(1101), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1397), + [sym_as_expression] = STATE(1397), + [sym_internal_module] = STATE(1397), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -31396,161 +30889,252 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [195] = { - [sym_import] = STATE(981), - [sym_parenthesized_expression] = STATE(646), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(954), - [sym_array] = STATE(961), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(981), - [sym_function] = STATE(981), - [sym_generator_function] = STATE(981), - [sym_arrow_function] = STATE(981), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(981), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(646), - [sym_subscript_expression] = STATE(646), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(981), - [sym_template_string] = STATE(981), - [sym_regex] = STATE(981), - [sym_meta_property] = STATE(981), + [187] = { + [sym_import] = STATE(1404), + [sym_parenthesized_expression] = STATE(735), + [sym__expression] = STATE(1596), + [sym_yield_expression] = STATE(1596), + [sym_object] = STATE(1194), + [sym_array] = STATE(1193), + [sym_jsx_element] = STATE(1596), + [sym_jsx_fragment] = STATE(1596), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1596), + [sym_class] = STATE(1404), + [sym_function] = STATE(1404), + [sym_generator_function] = STATE(1404), + [sym_arrow_function] = STATE(1404), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1404), + [sym_new_expression] = STATE(1596), + [sym_await_expression] = STATE(1596), + [sym_member_expression] = STATE(735), + [sym_subscript_expression] = STATE(735), + [sym_assignment_expression] = STATE(1596), + [sym_augmented_assignment_expression] = STATE(1596), + [sym_ternary_expression] = STATE(1596), + [sym_binary_expression] = STATE(1596), + [sym_unary_expression] = STATE(1596), + [sym_update_expression] = STATE(1596), + [sym_string] = STATE(1404), + [sym_template_string] = STATE(1404), + [sym_regex] = STATE(1404), + [sym_meta_property] = STATE(1404), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2617), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(3067), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1302), - [anon_sym_export] = ACTIONS(1304), - [anon_sym_namespace] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1304), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1596), + [sym_as_expression] = STATE(1596), + [sym_internal_module] = STATE(1596), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(1316), + [anon_sym_export] = ACTIONS(1318), + [anon_sym_namespace] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(883), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1312), - [sym_this] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1314), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(1326), + [sym_this] = ACTIONS(1328), + [sym_super] = ACTIONS(1328), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [sym_null] = ACTIONS(1328), + [sym_undefined] = ACTIONS(1328), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_get] = ACTIONS(1304), - [anon_sym_set] = ACTIONS(1304), - [anon_sym_declare] = ACTIONS(1304), - [anon_sym_public] = ACTIONS(1304), - [anon_sym_private] = ACTIONS(1304), - [anon_sym_protected] = ACTIONS(1304), - [anon_sym_module] = ACTIONS(1304), - [anon_sym_any] = ACTIONS(1304), - [anon_sym_number] = ACTIONS(1304), - [anon_sym_boolean] = ACTIONS(1304), - [anon_sym_string] = ACTIONS(1304), - [anon_sym_symbol] = ACTIONS(1304), - [sym_readonly] = ACTIONS(1304), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_get] = ACTIONS(1318), + [anon_sym_set] = ACTIONS(1318), + [anon_sym_declare] = ACTIONS(1318), + [anon_sym_public] = ACTIONS(1318), + [anon_sym_private] = ACTIONS(1318), + [anon_sym_protected] = ACTIONS(1318), + [anon_sym_module] = ACTIONS(1318), + [anon_sym_any] = ACTIONS(1318), + [anon_sym_number] = ACTIONS(1318), + [anon_sym_boolean] = ACTIONS(1318), + [anon_sym_string] = ACTIONS(1318), + [anon_sym_symbol] = ACTIONS(1318), + [sym_readonly] = ACTIONS(1318), }, - [196] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1373), - [sym_yield_expression] = STATE(1373), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1373), - [sym_jsx_fragment] = STATE(1373), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1373), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1373), - [sym_await_expression] = STATE(1373), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1373), - [sym_augmented_assignment_expression] = STATE(1373), - [sym_ternary_expression] = STATE(1373), - [sym_binary_expression] = STATE(1373), - [sym_unary_expression] = STATE(1373), - [sym_update_expression] = STATE(1373), - [sym_sequence_expression] = STATE(3184), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [188] = { + [sym_import] = STATE(1404), + [sym_parenthesized_expression] = STATE(735), + [sym__expression] = STATE(1596), + [sym_yield_expression] = STATE(1596), + [sym_object] = STATE(1194), + [sym_array] = STATE(1193), + [sym_jsx_element] = STATE(1596), + [sym_jsx_fragment] = STATE(1596), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1596), + [sym_class] = STATE(1404), + [sym_function] = STATE(1404), + [sym_generator_function] = STATE(1404), + [sym_arrow_function] = STATE(1404), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1404), + [sym_new_expression] = STATE(1596), + [sym_await_expression] = STATE(1596), + [sym_member_expression] = STATE(735), + [sym_subscript_expression] = STATE(735), + [sym_assignment_expression] = STATE(1596), + [sym_augmented_assignment_expression] = STATE(1596), + [sym_ternary_expression] = STATE(1596), + [sym_binary_expression] = STATE(1596), + [sym_unary_expression] = STATE(1596), + [sym_update_expression] = STATE(1596), + [sym_string] = STATE(1404), + [sym_template_string] = STATE(1404), + [sym_regex] = STATE(1404), + [sym_meta_property] = STATE(1404), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1373), - [sym_as_expression] = STATE(1373), - [sym_internal_module] = STATE(1373), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [sym_formal_parameters] = STATE(2570), + [sym_non_null_expression] = STATE(1596), + [sym_as_expression] = STATE(1596), + [sym_internal_module] = STATE(1596), + [sym_type_parameters] = STATE(3020), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(1316), + [anon_sym_export] = ACTIONS(1318), + [anon_sym_namespace] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_DOT] = ACTIONS(1314), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(1326), + [sym_this] = ACTIONS(1328), + [sym_super] = ACTIONS(1328), + [sym_true] = ACTIONS(1328), + [sym_false] = ACTIONS(1328), + [sym_null] = ACTIONS(1328), + [sym_undefined] = ACTIONS(1328), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_get] = ACTIONS(1318), + [anon_sym_set] = ACTIONS(1318), + [anon_sym_declare] = ACTIONS(1318), + [anon_sym_public] = ACTIONS(1318), + [anon_sym_private] = ACTIONS(1318), + [anon_sym_protected] = ACTIONS(1318), + [anon_sym_module] = ACTIONS(1318), + [anon_sym_any] = ACTIONS(1318), + [anon_sym_number] = ACTIONS(1318), + [anon_sym_boolean] = ACTIONS(1318), + [anon_sym_string] = ACTIONS(1318), + [anon_sym_symbol] = ACTIONS(1318), + [sym_readonly] = ACTIONS(1318), + }, + [189] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1181), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1278), + [sym_yield_expression] = STATE(1278), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1278), + [sym_jsx_fragment] = STATE(1278), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1278), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1278), + [sym_await_expression] = STATE(1278), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1278), + [sym_augmented_assignment_expression] = STATE(1278), + [sym_ternary_expression] = STATE(1278), + [sym_binary_expression] = STATE(1278), + [sym_unary_expression] = STATE(1278), + [sym_update_expression] = STATE(1278), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1278), + [sym_as_expression] = STATE(1278), + [sym_internal_module] = STATE(1278), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -31563,60 +31147,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [197] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1406), - [sym_yield_expression] = STATE(1406), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1406), - [sym_jsx_fragment] = STATE(1406), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1406), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1406), - [sym_await_expression] = STATE(1406), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1406), - [sym_augmented_assignment_expression] = STATE(1406), - [sym_ternary_expression] = STATE(1406), - [sym_binary_expression] = STATE(1406), - [sym_unary_expression] = STATE(1406), - [sym_update_expression] = STATE(1406), - [sym_sequence_expression] = STATE(3175), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [190] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1321), + [sym_yield_expression] = STATE(1321), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1321), + [sym_jsx_fragment] = STATE(1321), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1321), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1321), + [sym_await_expression] = STATE(1321), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1321), + [sym_augmented_assignment_expression] = STATE(1321), + [sym_ternary_expression] = STATE(1321), + [sym_binary_expression] = STATE(1321), + [sym_unary_expression] = STATE(1321), + [sym_update_expression] = STATE(1321), + [sym_sequence_expression] = STATE(3157), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1406), - [sym_as_expression] = STATE(1406), - [sym_internal_module] = STATE(1406), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1321), + [sym_as_expression] = STATE(1321), + [sym_internal_module] = STATE(1321), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -31669,136 +31253,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [198] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1446), - [sym_yield_expression] = STATE(1446), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1446), - [sym_jsx_fragment] = STATE(1446), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1446), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1446), - [sym_await_expression] = STATE(1446), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1446), - [sym_augmented_assignment_expression] = STATE(1446), - [sym_ternary_expression] = STATE(1446), - [sym_binary_expression] = STATE(1446), - [sym_unary_expression] = STATE(1446), - [sym_update_expression] = STATE(1446), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [191] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1221), + [sym_yield_expression] = STATE(1221), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1221), + [sym_jsx_fragment] = STATE(1221), + [sym_jsx_opening_element] = STATE(2029), + [sym_nested_identifier] = STATE(1943), + [sym_jsx_self_closing_element] = STATE(1221), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1221), + [sym_await_expression] = STATE(1221), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1221), + [sym_augmented_assignment_expression] = STATE(1221), + [sym_ternary_expression] = STATE(1221), + [sym_binary_expression] = STATE(1221), + [sym_unary_expression] = STATE(1221), + [sym_update_expression] = STATE(1221), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1446), - [sym_as_expression] = STATE(1446), - [sym_internal_module] = STATE(1446), - [sym_mapped_type_clause] = STATE(3069), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1334), - [anon_sym_export] = ACTIONS(1336), - [anon_sym_namespace] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1336), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1221), + [sym_internal_module] = STATE(1221), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(1330), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1336), - [anon_sym_get] = ACTIONS(1336), - [anon_sym_set] = ACTIONS(1336), - [anon_sym_declare] = ACTIONS(1336), - [anon_sym_public] = ACTIONS(1336), - [anon_sym_private] = ACTIONS(1336), - [anon_sym_protected] = ACTIONS(1336), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_any] = ACTIONS(1336), - [anon_sym_number] = ACTIONS(1336), - [anon_sym_boolean] = ACTIONS(1336), - [anon_sym_string] = ACTIONS(1336), - [anon_sym_symbol] = ACTIONS(1336), - [sym_readonly] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, - [199] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1340), - [sym_yield_expression] = STATE(1340), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1340), - [sym_jsx_fragment] = STATE(1340), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1340), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1340), - [sym_await_expression] = STATE(1340), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1340), - [sym_augmented_assignment_expression] = STATE(1340), - [sym_ternary_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_unary_expression] = STATE(1340), - [sym_update_expression] = STATE(1340), - [sym_sequence_expression] = STATE(3237), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [192] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1323), + [sym_yield_expression] = STATE(1323), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1323), + [sym_jsx_fragment] = STATE(1323), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1323), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1323), + [sym_await_expression] = STATE(1323), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1323), + [sym_augmented_assignment_expression] = STATE(1323), + [sym_ternary_expression] = STATE(1323), + [sym_binary_expression] = STATE(1323), + [sym_unary_expression] = STATE(1323), + [sym_update_expression] = STATE(1323), + [sym_sequence_expression] = STATE(3136), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1340), - [sym_as_expression] = STATE(1340), - [sym_internal_module] = STATE(1340), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1323), + [sym_as_expression] = STATE(1323), + [sym_internal_module] = STATE(1323), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -31851,45 +31435,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [200] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1387), - [sym_yield_expression] = STATE(1387), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1387), - [sym_jsx_fragment] = STATE(1387), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1387), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1387), - [sym_await_expression] = STATE(1387), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1387), - [sym_augmented_assignment_expression] = STATE(1387), - [sym_ternary_expression] = STATE(1387), - [sym_binary_expression] = STATE(1387), - [sym_unary_expression] = STATE(1387), - [sym_update_expression] = STATE(1387), - [sym_sequence_expression] = STATE(3200), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [193] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1330), + [sym_yield_expression] = STATE(1330), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1330), + [sym_jsx_fragment] = STATE(1330), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1330), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1330), + [sym_await_expression] = STATE(1330), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1330), + [sym_augmented_assignment_expression] = STATE(1330), + [sym_ternary_expression] = STATE(1330), + [sym_binary_expression] = STATE(1330), + [sym_unary_expression] = STATE(1330), + [sym_update_expression] = STATE(1330), + [sym_sequence_expression] = STATE(3083), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1387), - [sym_as_expression] = STATE(1387), - [sym_internal_module] = STATE(1387), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1330), + [sym_as_expression] = STATE(1330), + [sym_internal_module] = STATE(1330), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -31942,413 +31526,686 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [201] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1352), - [sym_yield_expression] = STATE(1352), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1352), - [sym_jsx_fragment] = STATE(1352), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1352), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1352), - [sym_await_expression] = STATE(1352), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1352), - [sym_augmented_assignment_expression] = STATE(1352), - [sym_ternary_expression] = STATE(1352), - [sym_binary_expression] = STATE(1352), - [sym_unary_expression] = STATE(1352), - [sym_update_expression] = STATE(1352), - [sym_sequence_expression] = STATE(3254), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [194] = { + [sym_import] = STATE(1692), + [sym_statement_block] = STATE(1621), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1258), + [sym_yield_expression] = STATE(1258), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1258), + [sym_jsx_fragment] = STATE(1258), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1258), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1258), + [sym_await_expression] = STATE(1258), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1258), + [sym_augmented_assignment_expression] = STATE(1258), + [sym_ternary_expression] = STATE(1258), + [sym_binary_expression] = STATE(1258), + [sym_unary_expression] = STATE(1258), + [sym_update_expression] = STATE(1258), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1352), - [sym_as_expression] = STATE(1352), - [sym_internal_module] = STATE(1352), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1258), + [sym_as_expression] = STATE(1258), + [sym_internal_module] = STATE(1258), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, - [202] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1411), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1404), - [sym_yield_expression] = STATE(1404), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1404), - [sym_jsx_fragment] = STATE(1404), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1404), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1404), - [sym_await_expression] = STATE(1404), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1404), - [sym_augmented_assignment_expression] = STATE(1404), - [sym_ternary_expression] = STATE(1404), - [sym_binary_expression] = STATE(1404), - [sym_unary_expression] = STATE(1404), - [sym_update_expression] = STATE(1404), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [195] = { + [sym_import] = STATE(1692), + [sym_statement_block] = STATE(1620), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1256), + [sym_yield_expression] = STATE(1256), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1256), + [sym_jsx_fragment] = STATE(1256), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1256), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1256), + [sym_await_expression] = STATE(1256), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1256), + [sym_augmented_assignment_expression] = STATE(1256), + [sym_ternary_expression] = STATE(1256), + [sym_binary_expression] = STATE(1256), + [sym_unary_expression] = STATE(1256), + [sym_update_expression] = STATE(1256), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1404), - [sym_as_expression] = STATE(1404), - [sym_internal_module] = STATE(1404), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1256), + [sym_as_expression] = STATE(1256), + [sym_internal_module] = STATE(1256), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, - [203] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1344), - [sym_yield_expression] = STATE(1344), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1344), - [sym_jsx_fragment] = STATE(1344), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1344), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1344), - [sym_await_expression] = STATE(1344), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1344), - [sym_augmented_assignment_expression] = STATE(1344), - [sym_ternary_expression] = STATE(1344), - [sym_binary_expression] = STATE(1344), - [sym_unary_expression] = STATE(1344), - [sym_update_expression] = STATE(1344), - [sym_sequence_expression] = STATE(3236), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1344), - [sym_as_expression] = STATE(1344), - [sym_internal_module] = STATE(1344), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [196] = { + [sym_import] = STATE(1692), + [sym_statement_block] = STATE(1614), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1255), + [sym_yield_expression] = STATE(1255), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1255), + [sym_jsx_fragment] = STATE(1255), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1255), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1255), + [sym_await_expression] = STATE(1255), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1255), + [sym_augmented_assignment_expression] = STATE(1255), + [sym_ternary_expression] = STATE(1255), + [sym_binary_expression] = STATE(1255), + [sym_unary_expression] = STATE(1255), + [sym_update_expression] = STATE(1255), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1255), + [sym_as_expression] = STATE(1255), + [sym_internal_module] = STATE(1255), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, - [204] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1347), - [sym_yield_expression] = STATE(1347), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1347), - [sym_jsx_fragment] = STATE(1347), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1347), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1347), - [sym_await_expression] = STATE(1347), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1347), - [sym_augmented_assignment_expression] = STATE(1347), - [sym_ternary_expression] = STATE(1347), - [sym_binary_expression] = STATE(1347), - [sym_unary_expression] = STATE(1347), - [sym_update_expression] = STATE(1347), - [sym_sequence_expression] = STATE(3235), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [197] = { + [sym_import] = STATE(1692), + [sym_statement_block] = STATE(1573), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1252), + [sym_yield_expression] = STATE(1252), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1252), + [sym_jsx_fragment] = STATE(1252), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1252), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1252), + [sym_await_expression] = STATE(1252), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1252), + [sym_augmented_assignment_expression] = STATE(1252), + [sym_ternary_expression] = STATE(1252), + [sym_binary_expression] = STATE(1252), + [sym_unary_expression] = STATE(1252), + [sym_update_expression] = STATE(1252), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(1347), - [sym_internal_module] = STATE(1347), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1252), + [sym_as_expression] = STATE(1252), + [sym_internal_module] = STATE(1252), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [198] = { + [sym_import] = STATE(1692), + [sym_statement_block] = STATE(1575), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1218), + [sym_yield_expression] = STATE(1218), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1218), + [sym_jsx_fragment] = STATE(1218), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1218), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1218), + [sym_await_expression] = STATE(1218), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1218), + [sym_augmented_assignment_expression] = STATE(1218), + [sym_ternary_expression] = STATE(1218), + [sym_binary_expression] = STATE(1218), + [sym_unary_expression] = STATE(1218), + [sym_update_expression] = STATE(1218), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1218), + [sym_as_expression] = STATE(1218), + [sym_internal_module] = STATE(1218), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [199] = { + [sym_import] = STATE(1692), + [sym_statement_block] = STATE(1638), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1195), + [sym_yield_expression] = STATE(1195), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1195), + [sym_jsx_fragment] = STATE(1195), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1195), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1195), + [sym_await_expression] = STATE(1195), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1195), + [sym_augmented_assignment_expression] = STATE(1195), + [sym_ternary_expression] = STATE(1195), + [sym_binary_expression] = STATE(1195), + [sym_unary_expression] = STATE(1195), + [sym_update_expression] = STATE(1195), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1195), + [sym_as_expression] = STATE(1195), + [sym_internal_module] = STATE(1195), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [200] = { + [sym_import] = STATE(970), + [sym_parenthesized_expression] = STATE(646), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(961), + [sym_array] = STATE(962), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(970), + [sym_function] = STATE(970), + [sym_generator_function] = STATE(970), + [sym_arrow_function] = STATE(970), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(970), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(646), + [sym_subscript_expression] = STATE(646), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(970), + [sym_template_string] = STATE(970), + [sym_regex] = STATE(970), + [sym_meta_property] = STATE(970), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1292), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_namespace] = ACTIONS(1296), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(1276), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(1298), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_get] = ACTIONS(1294), + [anon_sym_set] = ACTIONS(1294), + [anon_sym_declare] = ACTIONS(1294), + [anon_sym_public] = ACTIONS(1294), + [anon_sym_private] = ACTIONS(1294), + [anon_sym_protected] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_any] = ACTIONS(1294), + [anon_sym_number] = ACTIONS(1294), + [anon_sym_boolean] = ACTIONS(1294), + [anon_sym_string] = ACTIONS(1294), + [anon_sym_symbol] = ACTIONS(1294), + [sym_readonly] = ACTIONS(1294), }, - [205] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1529), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1095), - [sym_yield_expression] = STATE(1095), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1095), - [sym_jsx_fragment] = STATE(1095), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1095), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1095), - [sym_await_expression] = STATE(1095), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1095), - [sym_augmented_assignment_expression] = STATE(1095), - [sym_ternary_expression] = STATE(1095), - [sym_binary_expression] = STATE(1095), - [sym_unary_expression] = STATE(1095), - [sym_update_expression] = STATE(1095), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [201] = { + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1494), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1116), + [sym_yield_expression] = STATE(1116), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1116), + [sym_jsx_fragment] = STATE(1116), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1116), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1116), + [sym_await_expression] = STATE(1116), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1116), + [sym_augmented_assignment_expression] = STATE(1116), + [sym_ternary_expression] = STATE(1116), + [sym_binary_expression] = STATE(1116), + [sym_unary_expression] = STATE(1116), + [sym_update_expression] = STATE(1116), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1095), - [sym_as_expression] = STATE(1095), - [sym_internal_module] = STATE(1095), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1116), + [sym_as_expression] = STATE(1116), + [sym_internal_module] = STATE(1116), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1268), [anon_sym_type] = ACTIONS(583), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), @@ -32397,161 +32254,161 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [206] = { - [sym_import] = STATE(981), - [sym_parenthesized_expression] = STATE(646), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(954), - [sym_array] = STATE(961), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(981), - [sym_function] = STATE(981), - [sym_generator_function] = STATE(981), - [sym_arrow_function] = STATE(981), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(981), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(646), - [sym_subscript_expression] = STATE(646), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(981), - [sym_template_string] = STATE(981), - [sym_regex] = STATE(981), - [sym_meta_property] = STATE(981), + [202] = { + [sym_import] = STATE(1088), + [sym_variable_declarator] = STATE(2617), + [sym_parenthesized_expression] = STATE(833), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(1012), + [sym_array] = STATE(1011), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1322), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_typeof] = ACTIONS(611), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1334), + [anon_sym_export] = ACTIONS(1336), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(1308), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1328), + [anon_sym_async] = ACTIONS(1340), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1312), - [sym_this] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - [sym_readonly] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_get] = ACTIONS(1336), + [anon_sym_set] = ACTIONS(1336), + [anon_sym_declare] = ACTIONS(1336), + [anon_sym_public] = ACTIONS(1336), + [anon_sym_private] = ACTIONS(1336), + [anon_sym_protected] = ACTIONS(1336), + [anon_sym_module] = ACTIONS(1336), + [anon_sym_any] = ACTIONS(1336), + [anon_sym_number] = ACTIONS(1336), + [anon_sym_boolean] = ACTIONS(1336), + [anon_sym_string] = ACTIONS(1336), + [anon_sym_symbol] = ACTIONS(1336), + [sym_readonly] = ACTIONS(1336), }, - [207] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1343), - [sym_yield_expression] = STATE(1343), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1343), - [sym_jsx_fragment] = STATE(1343), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1343), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1343), - [sym_await_expression] = STATE(1343), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1343), - [sym_augmented_assignment_expression] = STATE(1343), - [sym_ternary_expression] = STATE(1343), - [sym_binary_expression] = STATE(1343), - [sym_unary_expression] = STATE(1343), - [sym_update_expression] = STATE(1343), - [sym_sequence_expression] = STATE(3204), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [203] = { + [sym_import] = STATE(1088), + [sym_variable_declarator] = STATE(2601), + [sym_parenthesized_expression] = STATE(833), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(1012), + [sym_array] = STATE(1011), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1343), - [sym_as_expression] = STATE(1343), - [sym_internal_module] = STATE(1343), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1334), + [anon_sym_export] = ACTIONS(1336), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(1340), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -32564,152 +32421,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), - }, - [208] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1556), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1351), - [sym_yield_expression] = STATE(1351), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1351), - [sym_jsx_fragment] = STATE(1351), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1351), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1351), - [sym_await_expression] = STATE(1351), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1351), - [sym_augmented_assignment_expression] = STATE(1351), - [sym_ternary_expression] = STATE(1351), - [sym_binary_expression] = STATE(1351), - [sym_unary_expression] = STATE(1351), - [sym_update_expression] = STATE(1351), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1351), - [sym_as_expression] = STATE(1351), - [sym_internal_module] = STATE(1351), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_get] = ACTIONS(1336), + [anon_sym_set] = ACTIONS(1336), + [anon_sym_declare] = ACTIONS(1336), + [anon_sym_public] = ACTIONS(1336), + [anon_sym_private] = ACTIONS(1336), + [anon_sym_protected] = ACTIONS(1336), + [anon_sym_module] = ACTIONS(1336), + [anon_sym_any] = ACTIONS(1336), + [anon_sym_number] = ACTIONS(1336), + [anon_sym_boolean] = ACTIONS(1336), + [anon_sym_string] = ACTIONS(1336), + [anon_sym_symbol] = ACTIONS(1336), + [sym_readonly] = ACTIONS(1336), }, - [209] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1334), - [sym_yield_expression] = STATE(1334), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1334), - [sym_jsx_fragment] = STATE(1334), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1334), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1334), - [sym_await_expression] = STATE(1334), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1334), - [sym_augmented_assignment_expression] = STATE(1334), - [sym_ternary_expression] = STATE(1334), - [sym_binary_expression] = STATE(1334), - [sym_unary_expression] = STATE(1334), - [sym_update_expression] = STATE(1334), - [sym_sequence_expression] = STATE(3130), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [204] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1006), + [sym_yield_expression] = STATE(1006), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1006), + [sym_jsx_fragment] = STATE(1006), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(1963), + [sym_jsx_self_closing_element] = STATE(1006), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1006), + [sym_await_expression] = STATE(1006), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1006), + [sym_augmented_assignment_expression] = STATE(1006), + [sym_ternary_expression] = STATE(1006), + [sym_binary_expression] = STATE(1006), + [sym_unary_expression] = STATE(1006), + [sym_update_expression] = STATE(1006), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1334), - [sym_as_expression] = STATE(1334), - [sym_internal_module] = STATE(1334), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1006), + [sym_as_expression] = STATE(1006), + [sym_internal_module] = STATE(1006), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1342), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), @@ -32761,161 +32527,161 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [210] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(997), - [sym_yield_expression] = STATE(997), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(997), - [sym_jsx_fragment] = STATE(997), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(997), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(997), - [sym_await_expression] = STATE(997), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(997), - [sym_augmented_assignment_expression] = STATE(997), - [sym_ternary_expression] = STATE(997), - [sym_binary_expression] = STATE(997), - [sym_unary_expression] = STATE(997), - [sym_update_expression] = STATE(997), - [sym_sequence_expression] = STATE(2599), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [205] = { + [sym_import] = STATE(970), + [sym_parenthesized_expression] = STATE(646), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(961), + [sym_array] = STATE(962), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(970), + [sym_function] = STATE(970), + [sym_generator_function] = STATE(970), + [sym_arrow_function] = STATE(970), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(970), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(646), + [sym_subscript_expression] = STATE(646), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(970), + [sym_template_string] = STATE(970), + [sym_regex] = STATE(970), + [sym_meta_property] = STATE(970), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(997), - [sym_as_expression] = STATE(997), - [sym_internal_module] = STATE(997), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2570), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(3020), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1270), + [anon_sym_export] = ACTIONS(1272), + [anon_sym_namespace] = ACTIONS(1274), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(1276), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(1278), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(1272), + [anon_sym_get] = ACTIONS(1272), + [anon_sym_set] = ACTIONS(1272), + [anon_sym_declare] = ACTIONS(1272), + [anon_sym_public] = ACTIONS(1272), + [anon_sym_private] = ACTIONS(1272), + [anon_sym_protected] = ACTIONS(1272), + [anon_sym_module] = ACTIONS(1272), + [anon_sym_any] = ACTIONS(1272), + [anon_sym_number] = ACTIONS(1272), + [anon_sym_boolean] = ACTIONS(1272), + [anon_sym_string] = ACTIONS(1272), + [anon_sym_symbol] = ACTIONS(1272), + [sym_readonly] = ACTIONS(1272), }, - [211] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1038), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1314), - [sym_yield_expression] = STATE(1314), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1314), - [sym_jsx_fragment] = STATE(1314), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1314), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1314), - [sym_await_expression] = STATE(1314), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1314), - [sym_augmented_assignment_expression] = STATE(1314), - [sym_ternary_expression] = STATE(1314), - [sym_binary_expression] = STATE(1314), - [sym_unary_expression] = STATE(1314), - [sym_update_expression] = STATE(1314), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [206] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1031), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1239), + [sym_yield_expression] = STATE(1239), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1239), + [sym_jsx_fragment] = STATE(1239), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1239), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1239), + [sym_await_expression] = STATE(1239), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1239), + [sym_augmented_assignment_expression] = STATE(1239), + [sym_ternary_expression] = STATE(1239), + [sym_binary_expression] = STATE(1239), + [sym_unary_expression] = STATE(1239), + [sym_update_expression] = STATE(1239), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1314), - [sym_as_expression] = STATE(1314), - [sym_internal_module] = STATE(1314), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1239), + [sym_as_expression] = STATE(1239), + [sym_internal_module] = STATE(1239), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -32928,176 +32694,176 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [212] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1438), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1324), - [sym_yield_expression] = STATE(1324), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1324), - [sym_jsx_fragment] = STATE(1324), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1324), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1324), - [sym_await_expression] = STATE(1324), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1324), - [sym_augmented_assignment_expression] = STATE(1324), - [sym_ternary_expression] = STATE(1324), - [sym_binary_expression] = STATE(1324), - [sym_unary_expression] = STATE(1324), - [sym_update_expression] = STATE(1324), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1324), - [sym_as_expression] = STATE(1324), - [sym_internal_module] = STATE(1324), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [207] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1038), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1240), + [sym_yield_expression] = STATE(1240), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1240), + [sym_jsx_fragment] = STATE(1240), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1240), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1240), + [sym_await_expression] = STATE(1240), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1240), + [sym_augmented_assignment_expression] = STATE(1240), + [sym_ternary_expression] = STATE(1240), + [sym_binary_expression] = STATE(1240), + [sym_unary_expression] = STATE(1240), + [sym_update_expression] = STATE(1240), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1240), + [sym_as_expression] = STATE(1240), + [sym_internal_module] = STATE(1240), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [213] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1042), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1311), - [sym_yield_expression] = STATE(1311), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1311), - [sym_jsx_fragment] = STATE(1311), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1311), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1311), - [sym_await_expression] = STATE(1311), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1311), - [sym_augmented_assignment_expression] = STATE(1311), - [sym_ternary_expression] = STATE(1311), - [sym_binary_expression] = STATE(1311), - [sym_unary_expression] = STATE(1311), - [sym_update_expression] = STATE(1311), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [208] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1034), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1241), + [sym_yield_expression] = STATE(1241), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1241), + [sym_jsx_fragment] = STATE(1241), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1241), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1241), + [sym_await_expression] = STATE(1241), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1241), + [sym_augmented_assignment_expression] = STATE(1241), + [sym_ternary_expression] = STATE(1241), + [sym_binary_expression] = STATE(1241), + [sym_unary_expression] = STATE(1241), + [sym_update_expression] = STATE(1241), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1311), - [sym_as_expression] = STATE(1311), - [sym_internal_module] = STATE(1311), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1241), + [sym_as_expression] = STATE(1241), + [sym_internal_module] = STATE(1241), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -33110,60 +32876,333 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [214] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1353), - [sym_yield_expression] = STATE(1353), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1353), - [sym_jsx_fragment] = STATE(1353), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1353), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1353), - [sym_await_expression] = STATE(1353), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1353), - [sym_augmented_assignment_expression] = STATE(1353), - [sym_ternary_expression] = STATE(1353), - [sym_binary_expression] = STATE(1353), - [sym_unary_expression] = STATE(1353), - [sym_update_expression] = STATE(1353), - [sym_sequence_expression] = STATE(3204), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [209] = { + [sym_import] = STATE(970), + [sym_parenthesized_expression] = STATE(646), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(961), + [sym_array] = STATE(962), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(970), + [sym_function] = STATE(970), + [sym_generator_function] = STATE(970), + [sym_arrow_function] = STATE(970), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(970), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(646), + [sym_subscript_expression] = STATE(646), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(970), + [sym_template_string] = STATE(970), + [sym_regex] = STATE(970), + [sym_meta_property] = STATE(970), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1353), - [sym_as_expression] = STATE(1353), - [sym_internal_module] = STATE(1353), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2570), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(3020), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1292), + [anon_sym_export] = ACTIONS(1294), + [anon_sym_namespace] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_DOT] = ACTIONS(1276), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(1298), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_get] = ACTIONS(1294), + [anon_sym_set] = ACTIONS(1294), + [anon_sym_declare] = ACTIONS(1294), + [anon_sym_public] = ACTIONS(1294), + [anon_sym_private] = ACTIONS(1294), + [anon_sym_protected] = ACTIONS(1294), + [anon_sym_module] = ACTIONS(1294), + [anon_sym_any] = ACTIONS(1294), + [anon_sym_number] = ACTIONS(1294), + [anon_sym_boolean] = ACTIONS(1294), + [anon_sym_string] = ACTIONS(1294), + [anon_sym_symbol] = ACTIONS(1294), + [sym_readonly] = ACTIONS(1294), + }, + [210] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1189), + [sym_yield_expression] = STATE(1189), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1189), + [sym_jsx_fragment] = STATE(1189), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(1943), + [sym_jsx_self_closing_element] = STATE(1189), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1189), + [sym_await_expression] = STATE(1189), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1189), + [sym_augmented_assignment_expression] = STATE(1189), + [sym_ternary_expression] = STATE(1189), + [sym_binary_expression] = STATE(1189), + [sym_unary_expression] = STATE(1189), + [sym_update_expression] = STATE(1189), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1189), + [sym_as_expression] = STATE(1189), + [sym_internal_module] = STATE(1189), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1344), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [211] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1163), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1299), + [sym_yield_expression] = STATE(1299), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1299), + [sym_jsx_fragment] = STATE(1299), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1299), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1299), + [sym_await_expression] = STATE(1299), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1299), + [sym_augmented_assignment_expression] = STATE(1299), + [sym_ternary_expression] = STATE(1299), + [sym_binary_expression] = STATE(1299), + [sym_unary_expression] = STATE(1299), + [sym_update_expression] = STATE(1299), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1299), + [sym_as_expression] = STATE(1299), + [sym_internal_module] = STATE(1299), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [212] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1398), + [sym_yield_expression] = STATE(1398), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1398), + [sym_jsx_fragment] = STATE(1398), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1398), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1398), + [sym_await_expression] = STATE(1398), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1398), + [sym_augmented_assignment_expression] = STATE(1398), + [sym_ternary_expression] = STATE(1398), + [sym_binary_expression] = STATE(1398), + [sym_unary_expression] = STATE(1398), + [sym_update_expression] = STATE(1398), + [sym_sequence_expression] = STATE(3252), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1398), + [sym_as_expression] = STATE(1398), + [sym_internal_module] = STATE(1398), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -33216,161 +33255,161 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [215] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1421), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1331), - [sym_yield_expression] = STATE(1331), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1331), - [sym_jsx_fragment] = STATE(1331), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1331), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1331), - [sym_await_expression] = STATE(1331), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1331), - [sym_augmented_assignment_expression] = STATE(1331), - [sym_ternary_expression] = STATE(1331), - [sym_binary_expression] = STATE(1331), - [sym_unary_expression] = STATE(1331), - [sym_update_expression] = STATE(1331), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [213] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1163), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1246), + [sym_yield_expression] = STATE(1246), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1246), + [sym_jsx_fragment] = STATE(1246), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1246), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1246), + [sym_await_expression] = STATE(1246), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1246), + [sym_augmented_assignment_expression] = STATE(1246), + [sym_ternary_expression] = STATE(1246), + [sym_binary_expression] = STATE(1246), + [sym_unary_expression] = STATE(1246), + [sym_update_expression] = STATE(1246), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1331), - [sym_as_expression] = STATE(1331), - [sym_internal_module] = STATE(1331), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1246), + [sym_as_expression] = STATE(1246), + [sym_internal_module] = STATE(1246), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(481), [anon_sym_new] = ACTIONS(859), [anon_sym_PLUS] = ACTIONS(861), [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [216] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1043), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1310), - [sym_yield_expression] = STATE(1310), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1310), - [sym_jsx_fragment] = STATE(1310), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1310), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1310), - [sym_await_expression] = STATE(1310), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1310), - [sym_augmented_assignment_expression] = STATE(1310), - [sym_ternary_expression] = STATE(1310), - [sym_binary_expression] = STATE(1310), - [sym_unary_expression] = STATE(1310), - [sym_update_expression] = STATE(1310), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [214] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1034), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1298), + [sym_yield_expression] = STATE(1298), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1298), + [sym_jsx_fragment] = STATE(1298), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1298), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1298), + [sym_await_expression] = STATE(1298), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1298), + [sym_augmented_assignment_expression] = STATE(1298), + [sym_ternary_expression] = STATE(1298), + [sym_binary_expression] = STATE(1298), + [sym_unary_expression] = STATE(1298), + [sym_update_expression] = STATE(1298), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1310), - [sym_as_expression] = STATE(1310), - [sym_internal_module] = STATE(1310), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1298), + [sym_as_expression] = STATE(1298), + [sym_internal_module] = STATE(1298), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -33383,85 +33422,176 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [217] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1209), - [sym_yield_expression] = STATE(1209), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1209), - [sym_jsx_fragment] = STATE(1209), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(1941), - [sym_jsx_self_closing_element] = STATE(1209), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1209), - [sym_await_expression] = STATE(1209), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1209), - [sym_augmented_assignment_expression] = STATE(1209), - [sym_ternary_expression] = STATE(1209), - [sym_binary_expression] = STATE(1209), - [sym_unary_expression] = STATE(1209), - [sym_update_expression] = STATE(1209), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [215] = { + [sym_import] = STATE(970), + [sym_parenthesized_expression] = STATE(646), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(961), + [sym_array] = STATE(962), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(970), + [sym_function] = STATE(970), + [sym_generator_function] = STATE(970), + [sym_arrow_function] = STATE(970), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(970), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(646), + [sym_subscript_expression] = STATE(646), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(970), + [sym_template_string] = STATE(970), + [sym_regex] = STATE(970), + [sym_meta_property] = STATE(970), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1209), - [sym_as_expression] = STATE(1209), - [sym_internal_module] = STATE(1209), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1342), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2570), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(3020), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(1348), + [anon_sym_namespace] = ACTIONS(1350), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(1348), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(1276), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(1352), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_get] = ACTIONS(1348), + [anon_sym_set] = ACTIONS(1348), + [anon_sym_declare] = ACTIONS(1348), + [anon_sym_public] = ACTIONS(1348), + [anon_sym_private] = ACTIONS(1348), + [anon_sym_protected] = ACTIONS(1348), + [anon_sym_module] = ACTIONS(1348), + [anon_sym_any] = ACTIONS(1348), + [anon_sym_number] = ACTIONS(1348), + [anon_sym_boolean] = ACTIONS(1348), + [anon_sym_string] = ACTIONS(1348), + [anon_sym_symbol] = ACTIONS(1348), + [sym_readonly] = ACTIONS(1348), + }, + [216] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1038), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1297), + [sym_yield_expression] = STATE(1297), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1297), + [sym_jsx_fragment] = STATE(1297), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1297), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1297), + [sym_await_expression] = STATE(1297), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1297), + [sym_augmented_assignment_expression] = STATE(1297), + [sym_ternary_expression] = STATE(1297), + [sym_binary_expression] = STATE(1297), + [sym_unary_expression] = STATE(1297), + [sym_update_expression] = STATE(1297), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1297), + [sym_as_expression] = STATE(1297), + [sym_internal_module] = STATE(1297), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -33474,152 +33604,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), - }, - [218] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1418), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1339), - [sym_yield_expression] = STATE(1339), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1339), - [sym_jsx_fragment] = STATE(1339), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1339), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1339), - [sym_await_expression] = STATE(1339), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1339), - [sym_augmented_assignment_expression] = STATE(1339), - [sym_ternary_expression] = STATE(1339), - [sym_binary_expression] = STATE(1339), - [sym_unary_expression] = STATE(1339), - [sym_update_expression] = STATE(1339), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1339), - [sym_as_expression] = STATE(1339), - [sym_internal_module] = STATE(1339), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [219] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1341), - [sym_yield_expression] = STATE(1341), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1341), - [sym_jsx_fragment] = STATE(1341), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1341), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1341), - [sym_await_expression] = STATE(1341), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1341), - [sym_augmented_assignment_expression] = STATE(1341), - [sym_ternary_expression] = STATE(1341), - [sym_binary_expression] = STATE(1341), - [sym_unary_expression] = STATE(1341), - [sym_update_expression] = STATE(1341), - [sym_sequence_expression] = STATE(3083), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [217] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1006), + [sym_yield_expression] = STATE(1006), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1006), + [sym_jsx_fragment] = STATE(1006), + [sym_jsx_opening_element] = STATE(2056), + [sym_nested_identifier] = STATE(1943), + [sym_jsx_self_closing_element] = STATE(1006), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1006), + [sym_await_expression] = STATE(1006), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1006), + [sym_augmented_assignment_expression] = STATE(1006), + [sym_ternary_expression] = STATE(1006), + [sym_binary_expression] = STATE(1006), + [sym_unary_expression] = STATE(1006), + [sym_update_expression] = STATE(1006), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1341), - [sym_as_expression] = STATE(1341), - [sym_internal_module] = STATE(1341), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1006), + [sym_as_expression] = STATE(1006), + [sym_internal_module] = STATE(1006), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1354), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), @@ -33671,231 +33710,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [220] = { - [sym_import] = STATE(981), - [sym_parenthesized_expression] = STATE(646), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(954), - [sym_array] = STATE(961), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(981), - [sym_function] = STATE(981), - [sym_generator_function] = STATE(981), - [sym_arrow_function] = STATE(981), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(981), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(646), - [sym_subscript_expression] = STATE(646), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(981), - [sym_template_string] = STATE(981), - [sym_regex] = STATE(981), - [sym_meta_property] = STATE(981), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2617), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(3067), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1344), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_namespace] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1346), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1312), - [sym_this] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1346), - [anon_sym_set] = ACTIONS(1346), - [anon_sym_declare] = ACTIONS(1346), - [anon_sym_public] = ACTIONS(1346), - [anon_sym_private] = ACTIONS(1346), - [anon_sym_protected] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_any] = ACTIONS(1346), - [anon_sym_number] = ACTIONS(1346), - [anon_sym_boolean] = ACTIONS(1346), - [anon_sym_string] = ACTIONS(1346), - [anon_sym_symbol] = ACTIONS(1346), - [sym_readonly] = ACTIONS(1346), - }, - [221] = { - [sym_import] = STATE(981), - [sym_parenthesized_expression] = STATE(646), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(954), - [sym_array] = STATE(961), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(981), - [sym_function] = STATE(981), - [sym_generator_function] = STATE(981), - [sym_arrow_function] = STATE(981), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(981), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(646), - [sym_subscript_expression] = STATE(646), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(981), - [sym_template_string] = STATE(981), - [sym_regex] = STATE(981), - [sym_meta_property] = STATE(981), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1322), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1312), - [sym_this] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - [sym_readonly] = ACTIONS(1324), - }, - [222] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1366), - [sym_yield_expression] = STATE(1366), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1366), - [sym_jsx_fragment] = STATE(1366), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1366), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1366), - [sym_await_expression] = STATE(1366), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1366), - [sym_augmented_assignment_expression] = STATE(1366), - [sym_ternary_expression] = STATE(1366), - [sym_binary_expression] = STATE(1366), - [sym_unary_expression] = STATE(1366), - [sym_update_expression] = STATE(1366), - [sym_sequence_expression] = STATE(3145), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [218] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1163), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1003), + [sym_yield_expression] = STATE(1003), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1003), + [sym_jsx_fragment] = STATE(1003), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1003), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1003), + [sym_await_expression] = STATE(1003), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1003), + [sym_augmented_assignment_expression] = STATE(1003), + [sym_ternary_expression] = STATE(1003), + [sym_binary_expression] = STATE(1003), + [sym_unary_expression] = STATE(1003), + [sym_update_expression] = STATE(1003), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1366), - [sym_as_expression] = STATE(1366), - [sym_internal_module] = STATE(1366), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1003), + [sym_as_expression] = STATE(1003), + [sym_internal_module] = STATE(1003), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1300), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -33944,343 +33801,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [223] = { - [sym_import] = STATE(1696), - [sym_statement_block] = STATE(1679), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1203), - [sym_yield_expression] = STATE(1203), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1203), - [sym_jsx_fragment] = STATE(1203), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1203), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1203), - [sym_await_expression] = STATE(1203), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1203), - [sym_augmented_assignment_expression] = STATE(1203), - [sym_ternary_expression] = STATE(1203), - [sym_binary_expression] = STATE(1203), - [sym_unary_expression] = STATE(1203), - [sym_update_expression] = STATE(1203), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), + [219] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1031), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1296), + [sym_yield_expression] = STATE(1296), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1296), + [sym_jsx_fragment] = STATE(1296), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1296), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1296), + [sym_await_expression] = STATE(1296), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1296), + [sym_augmented_assignment_expression] = STATE(1296), + [sym_ternary_expression] = STATE(1296), + [sym_binary_expression] = STATE(1296), + [sym_unary_expression] = STATE(1296), + [sym_update_expression] = STATE(1296), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1203), - [sym_as_expression] = STATE(1203), - [sym_internal_module] = STATE(1203), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [224] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1392), - [sym_yield_expression] = STATE(1392), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1392), - [sym_jsx_fragment] = STATE(1392), - [sym_jsx_opening_element] = STATE(2057), - [sym_nested_identifier] = STATE(1941), - [sym_jsx_self_closing_element] = STATE(1392), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1392), - [sym_await_expression] = STATE(1392), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1392), - [sym_augmented_assignment_expression] = STATE(1392), - [sym_ternary_expression] = STATE(1392), - [sym_binary_expression] = STATE(1392), - [sym_unary_expression] = STATE(1392), - [sym_update_expression] = STATE(1392), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1392), - [sym_as_expression] = STATE(1392), - [sym_internal_module] = STATE(1392), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(1352), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), - }, - [225] = { - [sym_import] = STATE(981), - [sym_parenthesized_expression] = STATE(646), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(954), - [sym_array] = STATE(961), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(981), - [sym_function] = STATE(981), - [sym_generator_function] = STATE(981), - [sym_arrow_function] = STATE(981), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(981), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(646), - [sym_subscript_expression] = STATE(646), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(981), - [sym_template_string] = STATE(981), - [sym_regex] = STATE(981), - [sym_meta_property] = STATE(981), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2617), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(3067), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1322), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1328), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1312), - [sym_this] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - [sym_readonly] = ACTIONS(1324), - }, - [226] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1197), - [sym_yield_expression] = STATE(1197), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1197), - [sym_jsx_fragment] = STATE(1197), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(1941), - [sym_jsx_self_closing_element] = STATE(1197), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1197), - [sym_await_expression] = STATE(1197), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1197), - [sym_augmented_assignment_expression] = STATE(1197), - [sym_ternary_expression] = STATE(1197), - [sym_binary_expression] = STATE(1197), - [sym_unary_expression] = STATE(1197), - [sym_update_expression] = STATE(1197), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1197), - [sym_as_expression] = STATE(1197), - [sym_internal_module] = STATE(1197), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1354), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1296), + [sym_as_expression] = STATE(1296), + [sym_internal_module] = STATE(1296), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -34293,85 +33877,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [227] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1043), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1225), - [sym_yield_expression] = STATE(1225), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1225), - [sym_jsx_fragment] = STATE(1225), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1225), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1225), - [sym_await_expression] = STATE(1225), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1225), - [sym_augmented_assignment_expression] = STATE(1225), - [sym_ternary_expression] = STATE(1225), - [sym_binary_expression] = STATE(1225), - [sym_unary_expression] = STATE(1225), - [sym_update_expression] = STATE(1225), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [220] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1034), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1002), + [sym_yield_expression] = STATE(1002), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1002), + [sym_jsx_fragment] = STATE(1002), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1002), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1002), + [sym_await_expression] = STATE(1002), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1002), + [sym_augmented_assignment_expression] = STATE(1002), + [sym_ternary_expression] = STATE(1002), + [sym_binary_expression] = STATE(1002), + [sym_unary_expression] = STATE(1002), + [sym_update_expression] = STATE(1002), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1225), - [sym_as_expression] = STATE(1225), - [sym_internal_module] = STATE(1225), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1002), + [sym_as_expression] = STATE(1002), + [sym_internal_module] = STATE(1002), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -34384,64 +33968,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [228] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1409), - [sym_yield_expression] = STATE(1409), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1409), - [sym_jsx_fragment] = STATE(1409), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1409), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1409), - [sym_await_expression] = STATE(1409), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1409), - [sym_augmented_assignment_expression] = STATE(1409), - [sym_ternary_expression] = STATE(1409), - [sym_binary_expression] = STATE(1409), - [sym_unary_expression] = STATE(1409), - [sym_update_expression] = STATE(1409), - [sym_sequence_expression] = STATE(3217), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [221] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1038), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1001), + [sym_yield_expression] = STATE(1001), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1001), + [sym_jsx_fragment] = STATE(1001), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1001), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1001), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1001), + [sym_augmented_assignment_expression] = STATE(1001), + [sym_ternary_expression] = STATE(1001), + [sym_binary_expression] = STATE(1001), + [sym_unary_expression] = STATE(1001), + [sym_update_expression] = STATE(1001), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1409), - [sym_as_expression] = STATE(1409), - [sym_internal_module] = STATE(1409), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1001), + [sym_as_expression] = STATE(1001), + [sym_internal_module] = STATE(1001), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1300), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -34490,70 +34074,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [229] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1042), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1226), - [sym_yield_expression] = STATE(1226), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1226), - [sym_jsx_fragment] = STATE(1226), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1226), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1226), - [sym_await_expression] = STATE(1226), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1226), - [sym_augmented_assignment_expression] = STATE(1226), - [sym_ternary_expression] = STATE(1226), - [sym_binary_expression] = STATE(1226), - [sym_unary_expression] = STATE(1226), - [sym_update_expression] = STATE(1226), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [222] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1031), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1013), + [sym_yield_expression] = STATE(1013), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1013), + [sym_jsx_fragment] = STATE(1013), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1013), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1013), + [sym_await_expression] = STATE(1013), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1013), + [sym_augmented_assignment_expression] = STATE(1013), + [sym_ternary_expression] = STATE(1013), + [sym_binary_expression] = STATE(1013), + [sym_unary_expression] = STATE(1013), + [sym_update_expression] = STATE(1013), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1226), - [sym_as_expression] = STATE(1226), - [sym_internal_module] = STATE(1226), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1013), + [sym_as_expression] = STATE(1013), + [sym_internal_module] = STATE(1013), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -34566,60 +34150,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [230] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1399), - [sym_yield_expression] = STATE(1399), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1399), - [sym_jsx_fragment] = STATE(1399), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1399), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1399), - [sym_await_expression] = STATE(1399), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1399), - [sym_augmented_assignment_expression] = STATE(1399), - [sym_ternary_expression] = STATE(1399), - [sym_binary_expression] = STATE(1399), - [sym_unary_expression] = STATE(1399), - [sym_update_expression] = STATE(1399), - [sym_sequence_expression] = STATE(3270), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [223] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1408), + [sym_yield_expression] = STATE(1408), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1408), + [sym_jsx_fragment] = STATE(1408), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1408), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1408), + [sym_await_expression] = STATE(1408), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1408), + [sym_augmented_assignment_expression] = STATE(1408), + [sym_ternary_expression] = STATE(1408), + [sym_binary_expression] = STATE(1408), + [sym_unary_expression] = STATE(1408), + [sym_update_expression] = STATE(1408), + [sym_sequence_expression] = STATE(3137), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1399), - [sym_as_expression] = STATE(1399), - [sym_internal_module] = STATE(1399), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1408), + [sym_as_expression] = STATE(1408), + [sym_internal_module] = STATE(1408), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -34672,343 +34256,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [231] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1038), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1227), - [sym_yield_expression] = STATE(1227), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1227), - [sym_jsx_fragment] = STATE(1227), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1227), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1227), - [sym_await_expression] = STATE(1227), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1227), - [sym_augmented_assignment_expression] = STATE(1227), - [sym_ternary_expression] = STATE(1227), - [sym_binary_expression] = STATE(1227), - [sym_unary_expression] = STATE(1227), - [sym_update_expression] = STATE(1227), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1227), - [sym_as_expression] = STATE(1227), - [sym_internal_module] = STATE(1227), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), - }, - [232] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1146), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1228), - [sym_yield_expression] = STATE(1228), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1228), - [sym_jsx_fragment] = STATE(1228), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1228), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1228), - [sym_await_expression] = STATE(1228), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1228), - [sym_augmented_assignment_expression] = STATE(1228), - [sym_ternary_expression] = STATE(1228), - [sym_binary_expression] = STATE(1228), - [sym_unary_expression] = STATE(1228), - [sym_update_expression] = STATE(1228), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1228), - [sym_as_expression] = STATE(1228), - [sym_internal_module] = STATE(1228), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), - }, - [233] = { - [sym_import] = STATE(1186), - [sym_parenthesized_expression] = STATE(691), - [sym__expression] = STATE(1582), - [sym_yield_expression] = STATE(1582), - [sym_object] = STATE(1130), - [sym_array] = STATE(1128), - [sym_jsx_element] = STATE(1582), - [sym_jsx_fragment] = STATE(1582), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1582), - [sym_class] = STATE(1186), - [sym_function] = STATE(1186), - [sym_generator_function] = STATE(1186), - [sym_arrow_function] = STATE(1186), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1186), - [sym_new_expression] = STATE(1582), - [sym_await_expression] = STATE(1582), - [sym_member_expression] = STATE(691), - [sym_subscript_expression] = STATE(691), - [sym_assignment_expression] = STATE(1582), - [sym_augmented_assignment_expression] = STATE(1582), - [sym_ternary_expression] = STATE(1582), - [sym_binary_expression] = STATE(1582), - [sym_unary_expression] = STATE(1582), - [sym_update_expression] = STATE(1582), - [sym_string] = STATE(1186), - [sym_template_string] = STATE(1186), - [sym_regex] = STATE(1186), - [sym_meta_property] = STATE(1186), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2617), - [sym_non_null_expression] = STATE(1582), - [sym_as_expression] = STATE(1582), - [sym_internal_module] = STATE(1582), - [sym_type_parameters] = STATE(3067), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(1262), - [anon_sym_namespace] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(1268), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1272), - [sym_this] = ACTIONS(1274), - [sym_super] = ACTIONS(1274), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_undefined] = ACTIONS(1274), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_get] = ACTIONS(1262), - [anon_sym_set] = ACTIONS(1262), - [anon_sym_declare] = ACTIONS(1262), - [anon_sym_public] = ACTIONS(1262), - [anon_sym_private] = ACTIONS(1262), - [anon_sym_protected] = ACTIONS(1262), - [anon_sym_module] = ACTIONS(1262), - [anon_sym_any] = ACTIONS(1262), - [anon_sym_number] = ACTIONS(1262), - [anon_sym_boolean] = ACTIONS(1262), - [anon_sym_string] = ACTIONS(1262), - [anon_sym_symbol] = ACTIONS(1262), - [sym_readonly] = ACTIONS(1262), - }, - [234] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1411), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1077), - [sym_yield_expression] = STATE(1077), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1077), - [sym_jsx_fragment] = STATE(1077), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1077), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1077), - [sym_await_expression] = STATE(1077), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1077), - [sym_augmented_assignment_expression] = STATE(1077), - [sym_ternary_expression] = STATE(1077), - [sym_binary_expression] = STATE(1077), - [sym_unary_expression] = STATE(1077), - [sym_update_expression] = STATE(1077), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [224] = { + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1494), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1410), + [sym_yield_expression] = STATE(1410), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1410), + [sym_jsx_fragment] = STATE(1410), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1410), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1410), + [sym_await_expression] = STATE(1410), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1410), + [sym_augmented_assignment_expression] = STATE(1410), + [sym_ternary_expression] = STATE(1410), + [sym_binary_expression] = STATE(1410), + [sym_unary_expression] = STATE(1410), + [sym_update_expression] = STATE(1410), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1077), - [sym_as_expression] = STATE(1077), - [sym_internal_module] = STATE(1077), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1410), + [sym_as_expression] = STATE(1410), + [sym_internal_module] = STATE(1410), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -35021,60 +34332,151 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [235] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1374), - [sym_yield_expression] = STATE(1374), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1374), - [sym_jsx_fragment] = STATE(1374), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1374), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1374), - [sym_await_expression] = STATE(1374), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1374), - [sym_augmented_assignment_expression] = STATE(1374), - [sym_ternary_expression] = STATE(1374), - [sym_binary_expression] = STATE(1374), - [sym_unary_expression] = STATE(1374), - [sym_update_expression] = STATE(1374), - [sym_sequence_expression] = STATE(3147), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [225] = { + [sym_import] = STATE(970), + [sym_parenthesized_expression] = STATE(646), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(961), + [sym_array] = STATE(962), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(970), + [sym_function] = STATE(970), + [sym_generator_function] = STATE(970), + [sym_arrow_function] = STATE(970), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(970), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(646), + [sym_subscript_expression] = STATE(646), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(970), + [sym_template_string] = STATE(970), + [sym_regex] = STATE(970), + [sym_meta_property] = STATE(970), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1374), - [sym_as_expression] = STATE(1374), - [sym_internal_module] = STATE(1374), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1346), + [anon_sym_export] = ACTIONS(1348), + [anon_sym_namespace] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(1348), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_DOT] = ACTIONS(1276), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(1352), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(1280), + [sym_this] = ACTIONS(1282), + [sym_super] = ACTIONS(1282), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [sym_null] = ACTIONS(1282), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1348), + [anon_sym_get] = ACTIONS(1348), + [anon_sym_set] = ACTIONS(1348), + [anon_sym_declare] = ACTIONS(1348), + [anon_sym_public] = ACTIONS(1348), + [anon_sym_private] = ACTIONS(1348), + [anon_sym_protected] = ACTIONS(1348), + [anon_sym_module] = ACTIONS(1348), + [anon_sym_any] = ACTIONS(1348), + [anon_sym_number] = ACTIONS(1348), + [anon_sym_boolean] = ACTIONS(1348), + [anon_sym_string] = ACTIONS(1348), + [anon_sym_symbol] = ACTIONS(1348), + [sym_readonly] = ACTIONS(1348), + }, + [226] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1033), + [sym_yield_expression] = STATE(1033), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1033), + [sym_jsx_fragment] = STATE(1033), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1033), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1033), + [sym_await_expression] = STATE(1033), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1033), + [sym_augmented_assignment_expression] = STATE(1033), + [sym_ternary_expression] = STATE(1033), + [sym_binary_expression] = STATE(1033), + [sym_unary_expression] = STATE(1033), + [sym_update_expression] = STATE(1033), + [sym_sequence_expression] = STATE(3245), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1033), + [sym_as_expression] = STATE(1033), + [sym_internal_module] = STATE(1033), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -35127,45 +34529,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [236] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1350), - [sym_yield_expression] = STATE(1350), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1350), - [sym_jsx_fragment] = STATE(1350), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1350), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1350), - [sym_await_expression] = STATE(1350), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1350), - [sym_augmented_assignment_expression] = STATE(1350), - [sym_ternary_expression] = STATE(1350), - [sym_binary_expression] = STATE(1350), - [sym_unary_expression] = STATE(1350), - [sym_update_expression] = STATE(1350), - [sym_sequence_expression] = STATE(3234), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [227] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1401), + [sym_yield_expression] = STATE(1401), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1401), + [sym_jsx_fragment] = STATE(1401), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1401), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1401), + [sym_await_expression] = STATE(1401), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1401), + [sym_augmented_assignment_expression] = STATE(1401), + [sym_ternary_expression] = STATE(1401), + [sym_binary_expression] = STATE(1401), + [sym_unary_expression] = STATE(1401), + [sym_update_expression] = STATE(1401), + [sym_sequence_expression] = STATE(3252), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1350), - [sym_as_expression] = STATE(1350), - [sym_internal_module] = STATE(1350), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1401), + [sym_as_expression] = STATE(1401), + [sym_internal_module] = STATE(1401), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -35218,136 +34620,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [237] = { - [sym_import] = STATE(981), - [sym_parenthesized_expression] = STATE(646), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(954), - [sym_array] = STATE(961), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(981), - [sym_function] = STATE(981), - [sym_generator_function] = STATE(981), - [sym_arrow_function] = STATE(981), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(981), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(646), - [sym_subscript_expression] = STATE(646), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(981), - [sym_template_string] = STATE(981), - [sym_regex] = STATE(981), - [sym_meta_property] = STATE(981), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2518), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(2947), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1302), - [anon_sym_export] = ACTIONS(1304), - [anon_sym_namespace] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1304), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1310), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1312), - [sym_this] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_get] = ACTIONS(1304), - [anon_sym_set] = ACTIONS(1304), - [anon_sym_declare] = ACTIONS(1304), - [anon_sym_public] = ACTIONS(1304), - [anon_sym_private] = ACTIONS(1304), - [anon_sym_protected] = ACTIONS(1304), - [anon_sym_module] = ACTIONS(1304), - [anon_sym_any] = ACTIONS(1304), - [anon_sym_number] = ACTIONS(1304), - [anon_sym_boolean] = ACTIONS(1304), - [anon_sym_string] = ACTIONS(1304), - [anon_sym_symbol] = ACTIONS(1304), - [sym_readonly] = ACTIONS(1304), - }, - [238] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1358), - [sym_yield_expression] = STATE(1358), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1358), - [sym_jsx_fragment] = STATE(1358), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1358), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1358), - [sym_await_expression] = STATE(1358), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1358), - [sym_augmented_assignment_expression] = STATE(1358), - [sym_ternary_expression] = STATE(1358), - [sym_binary_expression] = STATE(1358), - [sym_unary_expression] = STATE(1358), - [sym_update_expression] = STATE(1358), - [sym_sequence_expression] = STATE(3205), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [228] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1402), + [sym_yield_expression] = STATE(1402), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1402), + [sym_jsx_fragment] = STATE(1402), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1402), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1402), + [sym_await_expression] = STATE(1402), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1402), + [sym_augmented_assignment_expression] = STATE(1402), + [sym_ternary_expression] = STATE(1402), + [sym_binary_expression] = STATE(1402), + [sym_unary_expression] = STATE(1402), + [sym_update_expression] = STATE(1402), + [sym_sequence_expression] = STATE(3172), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1358), - [sym_as_expression] = STATE(1358), - [sym_internal_module] = STATE(1358), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1402), + [sym_as_expression] = STATE(1402), + [sym_internal_module] = STATE(1402), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -35400,49 +34711,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [239] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1133), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1002), - [sym_yield_expression] = STATE(1002), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1002), - [sym_jsx_fragment] = STATE(1002), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1002), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1002), - [sym_await_expression] = STATE(1002), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1002), - [sym_augmented_assignment_expression] = STATE(1002), - [sym_ternary_expression] = STATE(1002), - [sym_binary_expression] = STATE(1002), - [sym_unary_expression] = STATE(1002), - [sym_update_expression] = STATE(1002), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [229] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1393), + [sym_yield_expression] = STATE(1393), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1393), + [sym_jsx_fragment] = STATE(1393), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1393), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1393), + [sym_await_expression] = STATE(1393), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1393), + [sym_augmented_assignment_expression] = STATE(1393), + [sym_ternary_expression] = STATE(1393), + [sym_binary_expression] = STATE(1393), + [sym_unary_expression] = STATE(1393), + [sym_update_expression] = STATE(1393), + [sym_sequence_expression] = STATE(3255), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1002), - [sym_as_expression] = STATE(1002), - [sym_internal_module] = STATE(1002), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1393), + [sym_as_expression] = STATE(1393), + [sym_internal_module] = STATE(1393), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -35491,137 +34802,46 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [240] = { - [sym_import] = STATE(981), - [sym_parenthesized_expression] = STATE(646), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(954), - [sym_array] = STATE(961), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(981), - [sym_function] = STATE(981), - [sym_generator_function] = STATE(981), - [sym_arrow_function] = STATE(981), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(981), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(646), - [sym_subscript_expression] = STATE(646), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(981), - [sym_template_string] = STATE(981), - [sym_regex] = STATE(981), - [sym_meta_property] = STATE(981), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1344), - [anon_sym_export] = ACTIONS(1346), - [anon_sym_namespace] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1346), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1312), - [sym_this] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [sym_null] = ACTIONS(1314), - [sym_undefined] = ACTIONS(1314), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_get] = ACTIONS(1346), - [anon_sym_set] = ACTIONS(1346), - [anon_sym_declare] = ACTIONS(1346), - [anon_sym_public] = ACTIONS(1346), - [anon_sym_private] = ACTIONS(1346), - [anon_sym_protected] = ACTIONS(1346), - [anon_sym_module] = ACTIONS(1346), - [anon_sym_any] = ACTIONS(1346), - [anon_sym_number] = ACTIONS(1346), - [anon_sym_boolean] = ACTIONS(1346), - [anon_sym_string] = ACTIONS(1346), - [anon_sym_symbol] = ACTIONS(1346), - [sym_readonly] = ACTIONS(1346), - }, - [241] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1003), - [sym_yield_expression] = STATE(1003), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1003), - [sym_jsx_fragment] = STATE(1003), - [sym_jsx_opening_element] = STATE(2064), - [sym_nested_identifier] = STATE(1941), - [sym_jsx_self_closing_element] = STATE(1003), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1003), - [sym_await_expression] = STATE(1003), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(1003), - [sym_ternary_expression] = STATE(1003), - [sym_binary_expression] = STATE(1003), - [sym_unary_expression] = STATE(1003), - [sym_update_expression] = STATE(1003), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [230] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1400), + [sym_yield_expression] = STATE(1400), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1400), + [sym_jsx_fragment] = STATE(1400), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1400), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1400), + [sym_await_expression] = STATE(1400), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1400), + [sym_augmented_assignment_expression] = STATE(1400), + [sym_ternary_expression] = STATE(1400), + [sym_binary_expression] = STATE(1400), + [sym_unary_expression] = STATE(1400), + [sym_update_expression] = STATE(1400), + [sym_sequence_expression] = STATE(3171), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1003), - [sym_as_expression] = STATE(1003), - [sym_internal_module] = STATE(1003), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1356), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1400), + [sym_as_expression] = STATE(1400), + [sym_internal_module] = STATE(1400), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), @@ -35673,45 +34893,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [242] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1079), - [sym_yield_expression] = STATE(1079), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1079), - [sym_jsx_fragment] = STATE(1079), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1079), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1079), - [sym_await_expression] = STATE(1079), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1079), - [sym_augmented_assignment_expression] = STATE(1079), - [sym_ternary_expression] = STATE(1079), - [sym_binary_expression] = STATE(1079), - [sym_unary_expression] = STATE(1079), - [sym_update_expression] = STATE(1079), - [sym_sequence_expression] = STATE(3269), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [231] = { + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1414), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1390), + [sym_yield_expression] = STATE(1390), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1390), + [sym_jsx_fragment] = STATE(1390), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1390), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1390), + [sym_await_expression] = STATE(1390), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1390), + [sym_augmented_assignment_expression] = STATE(1390), + [sym_ternary_expression] = STATE(1390), + [sym_binary_expression] = STATE(1390), + [sym_unary_expression] = STATE(1390), + [sym_update_expression] = STATE(1390), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1079), - [sym_as_expression] = STATE(1079), - [sym_internal_module] = STATE(1079), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1390), + [sym_as_expression] = STATE(1390), + [sym_internal_module] = STATE(1390), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(787), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), + }, + [232] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(993), + [sym_yield_expression] = STATE(993), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(993), + [sym_jsx_fragment] = STATE(993), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(993), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(993), + [sym_await_expression] = STATE(993), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(993), + [sym_augmented_assignment_expression] = STATE(993), + [sym_ternary_expression] = STATE(993), + [sym_binary_expression] = STATE(993), + [sym_unary_expression] = STATE(993), + [sym_update_expression] = STATE(993), + [sym_sequence_expression] = STATE(2528), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(993), + [sym_as_expression] = STATE(993), + [sym_internal_module] = STATE(993), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -35764,140 +35075,140 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [243] = { - [sym_import] = STATE(1696), - [sym_statement_block] = STATE(1577), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1219), - [sym_yield_expression] = STATE(1219), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1219), - [sym_jsx_fragment] = STATE(1219), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1219), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1219), - [sym_await_expression] = STATE(1219), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1219), - [sym_augmented_assignment_expression] = STATE(1219), - [sym_ternary_expression] = STATE(1219), - [sym_binary_expression] = STATE(1219), - [sym_unary_expression] = STATE(1219), - [sym_update_expression] = STATE(1219), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), + [233] = { + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1513), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1352), + [sym_yield_expression] = STATE(1352), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1352), + [sym_jsx_fragment] = STATE(1352), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1352), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1352), + [sym_await_expression] = STATE(1352), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1352), + [sym_augmented_assignment_expression] = STATE(1352), + [sym_ternary_expression] = STATE(1352), + [sym_binary_expression] = STATE(1352), + [sym_unary_expression] = STATE(1352), + [sym_update_expression] = STATE(1352), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1219), - [sym_as_expression] = STATE(1219), - [sym_internal_module] = STATE(1219), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1352), + [sym_as_expression] = STATE(1352), + [sym_internal_module] = STATE(1352), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(787), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [244] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1438), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1112), - [sym_yield_expression] = STATE(1112), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1112), - [sym_jsx_fragment] = STATE(1112), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1112), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1112), - [sym_await_expression] = STATE(1112), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1112), - [sym_augmented_assignment_expression] = STATE(1112), - [sym_ternary_expression] = STATE(1112), - [sym_binary_expression] = STATE(1112), - [sym_unary_expression] = STATE(1112), - [sym_update_expression] = STATE(1112), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [234] = { + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1414), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1172), + [sym_yield_expression] = STATE(1172), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1172), + [sym_jsx_fragment] = STATE(1172), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1172), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1172), + [sym_await_expression] = STATE(1172), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1172), + [sym_augmented_assignment_expression] = STATE(1172), + [sym_ternary_expression] = STATE(1172), + [sym_binary_expression] = STATE(1172), + [sym_unary_expression] = STATE(1172), + [sym_update_expression] = STATE(1172), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1112), - [sym_as_expression] = STATE(1112), - [sym_internal_module] = STATE(1112), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1172), + [sym_as_expression] = STATE(1172), + [sym_internal_module] = STATE(1172), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1268), [anon_sym_type] = ACTIONS(583), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), @@ -35946,45 +35257,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [245] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1375), - [sym_yield_expression] = STATE(1375), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1375), - [sym_jsx_fragment] = STATE(1375), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1375), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1375), - [sym_await_expression] = STATE(1375), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1375), - [sym_augmented_assignment_expression] = STATE(1375), - [sym_ternary_expression] = STATE(1375), - [sym_binary_expression] = STATE(1375), - [sym_unary_expression] = STATE(1375), - [sym_update_expression] = STATE(1375), - [sym_sequence_expression] = STATE(3148), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [235] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1351), + [sym_yield_expression] = STATE(1351), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1351), + [sym_jsx_fragment] = STATE(1351), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1351), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1351), + [sym_await_expression] = STATE(1351), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1351), + [sym_augmented_assignment_expression] = STATE(1351), + [sym_ternary_expression] = STATE(1351), + [sym_binary_expression] = STATE(1351), + [sym_unary_expression] = STATE(1351), + [sym_update_expression] = STATE(1351), + [sym_sequence_expression] = STATE(3278), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1375), - [sym_as_expression] = STATE(1375), - [sym_internal_module] = STATE(1375), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1351), + [sym_as_expression] = STATE(1351), + [sym_internal_module] = STATE(1351), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -36037,70 +35348,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [246] = { - [sym_import] = STATE(1147), - [sym_statement_block] = STATE(1055), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1251), - [sym_yield_expression] = STATE(1251), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1251), - [sym_jsx_fragment] = STATE(1251), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1251), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1251), - [sym_await_expression] = STATE(1251), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1251), - [sym_augmented_assignment_expression] = STATE(1251), - [sym_ternary_expression] = STATE(1251), - [sym_binary_expression] = STATE(1251), - [sym_unary_expression] = STATE(1251), - [sym_update_expression] = STATE(1251), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [236] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1126), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1285), + [sym_yield_expression] = STATE(1285), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1285), + [sym_jsx_fragment] = STATE(1285), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1285), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1285), + [sym_await_expression] = STATE(1285), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1285), + [sym_augmented_assignment_expression] = STATE(1285), + [sym_ternary_expression] = STATE(1285), + [sym_binary_expression] = STATE(1285), + [sym_unary_expression] = STATE(1285), + [sym_update_expression] = STATE(1285), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1251), - [sym_as_expression] = STATE(1251), - [sym_internal_module] = STATE(1251), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1285), + [sym_as_expression] = STATE(1285), + [sym_internal_module] = STATE(1285), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -36113,176 +35424,267 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [247] = { - [sym_import] = STATE(1186), - [sym_parenthesized_expression] = STATE(691), - [sym__expression] = STATE(1582), - [sym_yield_expression] = STATE(1582), - [sym_object] = STATE(1130), - [sym_array] = STATE(1128), - [sym_jsx_element] = STATE(1582), - [sym_jsx_fragment] = STATE(1582), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1582), - [sym_class] = STATE(1186), - [sym_function] = STATE(1186), - [sym_generator_function] = STATE(1186), - [sym_arrow_function] = STATE(1186), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1186), - [sym_new_expression] = STATE(1582), - [sym_await_expression] = STATE(1582), - [sym_member_expression] = STATE(691), - [sym_subscript_expression] = STATE(691), - [sym_assignment_expression] = STATE(1582), - [sym_augmented_assignment_expression] = STATE(1582), - [sym_ternary_expression] = STATE(1582), - [sym_binary_expression] = STATE(1582), - [sym_unary_expression] = STATE(1582), - [sym_update_expression] = STATE(1582), - [sym_string] = STATE(1186), - [sym_template_string] = STATE(1186), - [sym_regex] = STATE(1186), - [sym_meta_property] = STATE(1186), + [237] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1338), + [sym_yield_expression] = STATE(1338), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1338), + [sym_jsx_fragment] = STATE(1338), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1338), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1338), + [sym_await_expression] = STATE(1338), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1338), + [sym_augmented_assignment_expression] = STATE(1338), + [sym_ternary_expression] = STATE(1338), + [sym_binary_expression] = STATE(1338), + [sym_unary_expression] = STATE(1338), + [sym_update_expression] = STATE(1338), + [sym_sequence_expression] = STATE(3120), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1582), - [sym_as_expression] = STATE(1582), - [sym_internal_module] = STATE(1582), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(1276), - [anon_sym_export] = ACTIONS(1278), - [anon_sym_namespace] = ACTIONS(1280), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1338), + [sym_as_expression] = STATE(1338), + [sym_internal_module] = STATE(1338), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(1282), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(539), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1272), - [sym_this] = ACTIONS(1274), - [sym_super] = ACTIONS(1274), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [sym_null] = ACTIONS(1274), - [sym_undefined] = ACTIONS(1274), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_get] = ACTIONS(1278), - [anon_sym_set] = ACTIONS(1278), - [anon_sym_declare] = ACTIONS(1278), - [anon_sym_public] = ACTIONS(1278), - [anon_sym_private] = ACTIONS(1278), - [anon_sym_protected] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_any] = ACTIONS(1278), - [anon_sym_number] = ACTIONS(1278), - [anon_sym_boolean] = ACTIONS(1278), - [anon_sym_string] = ACTIONS(1278), - [anon_sym_symbol] = ACTIONS(1278), - [sym_readonly] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [248] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1269), - [sym_yield_expression] = STATE(1269), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1269), - [sym_jsx_fragment] = STATE(1269), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1269), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1269), - [sym_await_expression] = STATE(1269), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1269), - [sym_augmented_assignment_expression] = STATE(1269), - [sym_ternary_expression] = STATE(1269), - [sym_binary_expression] = STATE(1269), - [sym_unary_expression] = STATE(1269), - [sym_update_expression] = STATE(1269), - [sym_sequence_expression] = STATE(2896), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [238] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1126), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(990), + [sym_yield_expression] = STATE(990), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(990), + [sym_jsx_fragment] = STATE(990), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(990), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(990), + [sym_await_expression] = STATE(990), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(990), + [sym_augmented_assignment_expression] = STATE(990), + [sym_ternary_expression] = STATE(990), + [sym_binary_expression] = STATE(990), + [sym_unary_expression] = STATE(990), + [sym_update_expression] = STATE(990), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1269), - [sym_as_expression] = STATE(1269), - [sym_internal_module] = STATE(1269), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(990), + [sym_as_expression] = STATE(990), + [sym_internal_module] = STATE(990), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(539), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), + }, + [239] = { + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1505), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1348), + [sym_yield_expression] = STATE(1348), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1348), + [sym_jsx_fragment] = STATE(1348), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1348), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1348), + [sym_await_expression] = STATE(1348), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1348), + [sym_augmented_assignment_expression] = STATE(1348), + [sym_ternary_expression] = STATE(1348), + [sym_binary_expression] = STATE(1348), + [sym_unary_expression] = STATE(1348), + [sym_update_expression] = STATE(1348), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1348), + [sym_as_expression] = STATE(1348), + [sym_internal_module] = STATE(1348), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -36295,85 +35697,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [249] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1556), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1100), - [sym_yield_expression] = STATE(1100), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1100), - [sym_jsx_fragment] = STATE(1100), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1100), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1100), - [sym_await_expression] = STATE(1100), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1100), - [sym_augmented_assignment_expression] = STATE(1100), - [sym_ternary_expression] = STATE(1100), - [sym_binary_expression] = STATE(1100), - [sym_unary_expression] = STATE(1100), - [sym_update_expression] = STATE(1100), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [240] = { + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1497), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1345), + [sym_yield_expression] = STATE(1345), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1345), + [sym_jsx_fragment] = STATE(1345), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1345), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1345), + [sym_await_expression] = STATE(1345), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1345), + [sym_augmented_assignment_expression] = STATE(1345), + [sym_ternary_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_unary_expression] = STATE(1345), + [sym_update_expression] = STATE(1345), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1100), - [sym_as_expression] = STATE(1100), - [sym_internal_module] = STATE(1100), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1345), + [sym_as_expression] = STATE(1345), + [sym_internal_module] = STATE(1345), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -36386,85 +35788,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [250] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1421), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1108), - [sym_yield_expression] = STATE(1108), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1108), - [sym_jsx_fragment] = STATE(1108), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1108), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1108), - [sym_await_expression] = STATE(1108), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1108), - [sym_augmented_assignment_expression] = STATE(1108), - [sym_ternary_expression] = STATE(1108), - [sym_binary_expression] = STATE(1108), - [sym_unary_expression] = STATE(1108), - [sym_update_expression] = STATE(1108), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [241] = { + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1495), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1344), + [sym_yield_expression] = STATE(1344), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1344), + [sym_jsx_fragment] = STATE(1344), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1344), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1344), + [sym_await_expression] = STATE(1344), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1344), + [sym_augmented_assignment_expression] = STATE(1344), + [sym_ternary_expression] = STATE(1344), + [sym_binary_expression] = STATE(1344), + [sym_unary_expression] = STATE(1344), + [sym_update_expression] = STATE(1344), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1108), - [sym_as_expression] = STATE(1108), - [sym_internal_module] = STATE(1108), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1344), + [sym_as_expression] = STATE(1344), + [sym_internal_module] = STATE(1344), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -36477,85 +35879,176 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [251] = { - [sym_import] = STATE(1420), - [sym_statement_block] = STATE(1418), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1106), - [sym_yield_expression] = STATE(1106), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1106), - [sym_jsx_fragment] = STATE(1106), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1106), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1106), - [sym_await_expression] = STATE(1106), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1106), - [sym_augmented_assignment_expression] = STATE(1106), - [sym_ternary_expression] = STATE(1106), - [sym_binary_expression] = STATE(1106), - [sym_unary_expression] = STATE(1106), - [sym_update_expression] = STATE(1106), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [242] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1341), + [sym_yield_expression] = STATE(1341), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1341), + [sym_jsx_fragment] = STATE(1341), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1341), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1341), + [sym_await_expression] = STATE(1341), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1341), + [sym_augmented_assignment_expression] = STATE(1341), + [sym_ternary_expression] = STATE(1341), + [sym_binary_expression] = STATE(1341), + [sym_unary_expression] = STATE(1341), + [sym_update_expression] = STATE(1341), + [sym_sequence_expression] = STATE(3301), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1106), - [sym_as_expression] = STATE(1106), - [sym_internal_module] = STATE(1106), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1341), + [sym_as_expression] = STATE(1341), + [sym_internal_module] = STATE(1341), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(539), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), + }, + [243] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1334), + [sym_yield_expression] = STATE(1334), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1334), + [sym_jsx_fragment] = STATE(1334), + [sym_jsx_opening_element] = STATE(2038), + [sym_nested_identifier] = STATE(1943), + [sym_jsx_self_closing_element] = STATE(1334), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1334), + [sym_await_expression] = STATE(1334), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1334), + [sym_augmented_assignment_expression] = STATE(1334), + [sym_ternary_expression] = STATE(1334), + [sym_binary_expression] = STATE(1334), + [sym_unary_expression] = STATE(1334), + [sym_update_expression] = STATE(1334), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1334), + [sym_as_expression] = STATE(1334), + [sym_internal_module] = STATE(1334), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(1356), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -36568,64 +36061,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [252] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1379), - [sym_yield_expression] = STATE(1379), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1379), - [sym_jsx_fragment] = STATE(1379), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1379), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1379), - [sym_await_expression] = STATE(1379), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1379), - [sym_augmented_assignment_expression] = STATE(1379), - [sym_ternary_expression] = STATE(1379), - [sym_binary_expression] = STATE(1379), - [sym_unary_expression] = STATE(1379), - [sym_update_expression] = STATE(1379), - [sym_sequence_expression] = STATE(3157), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [244] = { + [sym_import] = STATE(1267), + [sym_parenthesized_expression] = STATE(688), + [sym__expression] = STATE(1657), + [sym_yield_expression] = STATE(1657), + [sym_object] = STATE(1148), + [sym_array] = STATE(1151), + [sym_jsx_element] = STATE(1657), + [sym_jsx_fragment] = STATE(1657), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1657), + [sym_class] = STATE(1267), + [sym_function] = STATE(1267), + [sym_generator_function] = STATE(1267), + [sym_arrow_function] = STATE(1267), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1267), + [sym_new_expression] = STATE(1657), + [sym_await_expression] = STATE(1657), + [sym_member_expression] = STATE(688), + [sym_subscript_expression] = STATE(688), + [sym_assignment_expression] = STATE(1657), + [sym_augmented_assignment_expression] = STATE(1657), + [sym_ternary_expression] = STATE(1657), + [sym_binary_expression] = STATE(1657), + [sym_unary_expression] = STATE(1657), + [sym_update_expression] = STATE(1657), + [sym_string] = STATE(1267), + [sym_template_string] = STATE(1267), + [sym_regex] = STATE(1267), + [sym_meta_property] = STATE(1267), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2570), + [sym_non_null_expression] = STATE(1657), + [sym_as_expression] = STATE(1657), + [sym_internal_module] = STATE(1657), + [sym_type_parameters] = STATE(3020), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(1250), + [anon_sym_export] = ACTIONS(1252), + [anon_sym_namespace] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(1252), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1256), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1262), + [sym_this] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [sym_null] = ACTIONS(1264), + [sym_undefined] = ACTIONS(1264), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_get] = ACTIONS(1252), + [anon_sym_set] = ACTIONS(1252), + [anon_sym_declare] = ACTIONS(1252), + [anon_sym_public] = ACTIONS(1252), + [anon_sym_private] = ACTIONS(1252), + [anon_sym_protected] = ACTIONS(1252), + [anon_sym_module] = ACTIONS(1252), + [anon_sym_any] = ACTIONS(1252), + [anon_sym_number] = ACTIONS(1252), + [anon_sym_boolean] = ACTIONS(1252), + [anon_sym_string] = ACTIONS(1252), + [anon_sym_symbol] = ACTIONS(1252), + [sym_readonly] = ACTIONS(1252), + }, + [245] = { + [sym_import] = STATE(1088), + [sym_statement_block] = STATE(1181), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(984), + [sym_yield_expression] = STATE(984), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(984), + [sym_jsx_fragment] = STATE(984), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(984), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(984), + [sym_await_expression] = STATE(984), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(984), + [sym_augmented_assignment_expression] = STATE(984), + [sym_ternary_expression] = STATE(984), + [sym_binary_expression] = STATE(984), + [sym_unary_expression] = STATE(984), + [sym_update_expression] = STATE(984), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1379), - [sym_as_expression] = STATE(1379), - [sym_internal_module] = STATE(1379), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(984), + [sym_as_expression] = STATE(984), + [sym_internal_module] = STATE(984), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1300), [anon_sym_type] = ACTIONS(527), [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), @@ -36674,69 +36258,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [253] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1288), - [sym_yield_expression] = STATE(1288), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1288), - [sym_jsx_fragment] = STATE(1288), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1288), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1288), - [sym_await_expression] = STATE(1288), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1288), - [sym_augmented_assignment_expression] = STATE(1288), - [sym_ternary_expression] = STATE(1288), - [sym_binary_expression] = STATE(1288), - [sym_unary_expression] = STATE(1288), - [sym_update_expression] = STATE(1288), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [246] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1369), + [sym_yield_expression] = STATE(1369), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1369), + [sym_jsx_fragment] = STATE(1369), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1369), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1369), + [sym_await_expression] = STATE(1369), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1369), + [sym_augmented_assignment_expression] = STATE(1369), + [sym_ternary_expression] = STATE(1369), + [sym_binary_expression] = STATE(1369), + [sym_unary_expression] = STATE(1369), + [sym_update_expression] = STATE(1369), + [sym_sequence_expression] = STATE(3272), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1288), - [sym_as_expression] = STATE(1288), - [sym_internal_module] = STATE(1288), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1369), + [sym_as_expression] = STATE(1369), + [sym_internal_module] = STATE(1369), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -36749,238 +36334,150 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), - }, - [254] = { - [sym__call_signature] = STATE(3120), - [sym_string] = STATE(2197), - [sym_formal_parameters] = STATE(2406), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [sym_type_parameters] = STATE(2899), - [aux_sym_object_repeat1] = STATE(2778), - [sym_identifier] = ACTIONS(1358), - [anon_sym_export] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1188), - [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_in] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_function] = ACTIONS(1377), - [anon_sym_EQ_GT] = ACTIONS(1154), - [anon_sym_QMARK_DOT] = ACTIONS(1156), - [anon_sym_PLUS_EQ] = ACTIONS(1158), - [anon_sym_DASH_EQ] = ACTIONS(1158), - [anon_sym_STAR_EQ] = ACTIONS(1158), - [anon_sym_SLASH_EQ] = ACTIONS(1158), - [anon_sym_PERCENT_EQ] = ACTIONS(1158), - [anon_sym_CARET_EQ] = ACTIONS(1158), - [anon_sym_AMP_EQ] = ACTIONS(1158), - [anon_sym_PIPE_EQ] = ACTIONS(1158), - [anon_sym_GT_GT_EQ] = ACTIONS(1158), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1158), - [anon_sym_LT_LT_EQ] = ACTIONS(1158), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1158), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1143), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_GT_GT_GT] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_STAR_STAR] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_QMARK_QMARK] = ACTIONS(1133), - [anon_sym_instanceof] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1381), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_get] = ACTIONS(1385), - [anon_sym_set] = ACTIONS(1385), - [anon_sym_declare] = ACTIONS(1360), - [anon_sym_public] = ACTIONS(1360), - [anon_sym_private] = ACTIONS(1360), - [anon_sym_protected] = ACTIONS(1360), - [anon_sym_module] = ACTIONS(1360), - [anon_sym_any] = ACTIONS(1360), - [anon_sym_number] = ACTIONS(1360), - [anon_sym_boolean] = ACTIONS(1360), - [anon_sym_string] = ACTIONS(1360), - [anon_sym_symbol] = ACTIONS(1360), - [sym_readonly] = ACTIONS(1360), - [sym__automatic_semicolon] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [255] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1087), - [sym_yield_expression] = STATE(1087), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1087), - [sym_jsx_fragment] = STATE(1087), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1087), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1087), - [sym_await_expression] = STATE(1087), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1087), - [sym_augmented_assignment_expression] = STATE(1087), - [sym_ternary_expression] = STATE(1087), - [sym_binary_expression] = STATE(1087), - [sym_unary_expression] = STATE(1087), - [sym_update_expression] = STATE(1087), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [247] = { + [sym_import] = STATE(1267), + [sym_parenthesized_expression] = STATE(688), + [sym__expression] = STATE(1657), + [sym_yield_expression] = STATE(1657), + [sym_object] = STATE(1148), + [sym_array] = STATE(1151), + [sym_jsx_element] = STATE(1657), + [sym_jsx_fragment] = STATE(1657), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1657), + [sym_class] = STATE(1267), + [sym_function] = STATE(1267), + [sym_generator_function] = STATE(1267), + [sym_arrow_function] = STATE(1267), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1267), + [sym_new_expression] = STATE(1657), + [sym_await_expression] = STATE(1657), + [sym_member_expression] = STATE(688), + [sym_subscript_expression] = STATE(688), + [sym_assignment_expression] = STATE(1657), + [sym_augmented_assignment_expression] = STATE(1657), + [sym_ternary_expression] = STATE(1657), + [sym_binary_expression] = STATE(1657), + [sym_unary_expression] = STATE(1657), + [sym_update_expression] = STATE(1657), + [sym_string] = STATE(1267), + [sym_template_string] = STATE(1267), + [sym_regex] = STATE(1267), + [sym_meta_property] = STATE(1267), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1087), - [sym_as_expression] = STATE(1087), - [sym_internal_module] = STATE(1087), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1657), + [sym_as_expression] = STATE(1657), + [sym_internal_module] = STATE(1657), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), + [sym_identifier] = ACTIONS(1304), + [anon_sym_export] = ACTIONS(1306), + [anon_sym_namespace] = ACTIONS(1308), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), + [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1256), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(1310), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(1260), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [sym_number] = ACTIONS(1262), + [sym_this] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_true] = ACTIONS(1264), + [sym_false] = ACTIONS(1264), + [sym_null] = ACTIONS(1264), + [sym_undefined] = ACTIONS(1264), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_get] = ACTIONS(1306), + [anon_sym_set] = ACTIONS(1306), + [anon_sym_declare] = ACTIONS(1306), + [anon_sym_public] = ACTIONS(1306), + [anon_sym_private] = ACTIONS(1306), + [anon_sym_protected] = ACTIONS(1306), + [anon_sym_module] = ACTIONS(1306), + [anon_sym_any] = ACTIONS(1306), + [anon_sym_number] = ACTIONS(1306), + [anon_sym_boolean] = ACTIONS(1306), + [anon_sym_string] = ACTIONS(1306), + [anon_sym_symbol] = ACTIONS(1306), + [sym_readonly] = ACTIONS(1306), }, - [256] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1089), - [sym_yield_expression] = STATE(1089), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1089), - [sym_jsx_fragment] = STATE(1089), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1089), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1089), - [sym_await_expression] = STATE(1089), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1089), - [sym_augmented_assignment_expression] = STATE(1089), - [sym_ternary_expression] = STATE(1089), - [sym_binary_expression] = STATE(1089), - [sym_unary_expression] = STATE(1089), - [sym_update_expression] = STATE(1089), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [248] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1213), + [sym_yield_expression] = STATE(1213), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1213), + [sym_jsx_fragment] = STATE(1213), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1213), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1213), + [sym_await_expression] = STATE(1213), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1213), + [sym_augmented_assignment_expression] = STATE(1213), + [sym_ternary_expression] = STATE(1213), + [sym_binary_expression] = STATE(1213), + [sym_unary_expression] = STATE(1213), + [sym_update_expression] = STATE(1213), + [sym_sequence_expression] = STATE(2996), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1089), - [sym_as_expression] = STATE(1089), - [sym_internal_module] = STATE(1089), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1213), + [sym_as_expression] = STATE(1213), + [sym_internal_module] = STATE(1213), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -37034,48 +36531,49 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [257] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1090), - [sym_yield_expression] = STATE(1090), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1090), - [sym_jsx_fragment] = STATE(1090), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1090), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1090), - [sym_await_expression] = STATE(1090), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1090), - [sym_augmented_assignment_expression] = STATE(1090), - [sym_ternary_expression] = STATE(1090), - [sym_binary_expression] = STATE(1090), - [sym_unary_expression] = STATE(1090), - [sym_update_expression] = STATE(1090), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [249] = { + [sym_import] = STATE(1473), + [sym_statement_block] = STATE(1513), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1124), + [sym_yield_expression] = STATE(1124), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1124), + [sym_jsx_fragment] = STATE(1124), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1124), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1124), + [sym_await_expression] = STATE(1124), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1124), + [sym_augmented_assignment_expression] = STATE(1124), + [sym_ternary_expression] = STATE(1124), + [sym_binary_expression] = STATE(1124), + [sym_unary_expression] = STATE(1124), + [sym_update_expression] = STATE(1124), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1090), - [sym_as_expression] = STATE(1090), - [sym_internal_module] = STATE(1090), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1124), + [sym_as_expression] = STATE(1124), + [sym_internal_module] = STATE(1124), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(1268), [anon_sym_type] = ACTIONS(583), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), @@ -37124,249 +36622,252 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [258] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1091), - [sym_yield_expression] = STATE(1091), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1091), - [sym_jsx_fragment] = STATE(1091), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1091), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1091), - [sym_await_expression] = STATE(1091), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1091), - [sym_augmented_assignment_expression] = STATE(1091), - [sym_ternary_expression] = STATE(1091), - [sym_binary_expression] = STATE(1091), - [sym_unary_expression] = STATE(1091), - [sym_update_expression] = STATE(1091), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [250] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1370), + [sym_yield_expression] = STATE(1370), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1370), + [sym_jsx_fragment] = STATE(1370), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1370), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1370), + [sym_await_expression] = STATE(1370), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1370), + [sym_augmented_assignment_expression] = STATE(1370), + [sym_ternary_expression] = STATE(1370), + [sym_binary_expression] = STATE(1370), + [sym_unary_expression] = STATE(1370), + [sym_update_expression] = STATE(1370), + [sym_sequence_expression] = STATE(3268), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1091), - [sym_as_expression] = STATE(1091), - [sym_internal_module] = STATE(1091), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1370), + [sym_as_expression] = STATE(1370), + [sym_internal_module] = STATE(1370), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(539), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [259] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1094), - [sym_yield_expression] = STATE(1094), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1094), - [sym_jsx_fragment] = STATE(1094), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1094), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1094), - [sym_await_expression] = STATE(1094), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1094), - [sym_augmented_assignment_expression] = STATE(1094), - [sym_ternary_expression] = STATE(1094), - [sym_binary_expression] = STATE(1094), - [sym_unary_expression] = STATE(1094), - [sym_update_expression] = STATE(1094), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [251] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1377), + [sym_yield_expression] = STATE(1377), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1377), + [sym_jsx_fragment] = STATE(1377), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1377), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1377), + [sym_await_expression] = STATE(1377), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1377), + [sym_augmented_assignment_expression] = STATE(1377), + [sym_ternary_expression] = STATE(1377), + [sym_binary_expression] = STATE(1377), + [sym_unary_expression] = STATE(1377), + [sym_update_expression] = STATE(1377), + [sym_sequence_expression] = STATE(3263), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1094), - [sym_as_expression] = STATE(1094), - [sym_internal_module] = STATE(1094), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1377), + [sym_as_expression] = STATE(1377), + [sym_internal_module] = STATE(1377), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(539), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [260] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1244), - [sym_yield_expression] = STATE(1244), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1244), - [sym_jsx_fragment] = STATE(1244), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1244), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1244), - [sym_await_expression] = STATE(1244), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1244), - [sym_augmented_assignment_expression] = STATE(1244), - [sym_ternary_expression] = STATE(1244), - [sym_binary_expression] = STATE(1244), - [sym_unary_expression] = STATE(1244), - [sym_update_expression] = STATE(1244), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [252] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1378), + [sym_yield_expression] = STATE(1378), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1378), + [sym_jsx_fragment] = STATE(1378), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1378), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1378), + [sym_await_expression] = STATE(1378), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1378), + [sym_augmented_assignment_expression] = STATE(1378), + [sym_ternary_expression] = STATE(1378), + [sym_binary_expression] = STATE(1378), + [sym_unary_expression] = STATE(1378), + [sym_update_expression] = STATE(1378), + [sym_sequence_expression] = STATE(3258), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1244), - [sym_as_expression] = STATE(1244), - [sym_internal_module] = STATE(1244), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1378), + [sym_as_expression] = STATE(1378), + [sym_internal_module] = STATE(1378), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -37379,84 +36880,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [261] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1391), - [sym_yield_expression] = STATE(1391), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1391), - [sym_jsx_fragment] = STATE(1391), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1391), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1391), - [sym_await_expression] = STATE(1391), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1391), - [sym_augmented_assignment_expression] = STATE(1391), - [sym_ternary_expression] = STATE(1391), - [sym_binary_expression] = STATE(1391), - [sym_unary_expression] = STATE(1391), - [sym_update_expression] = STATE(1391), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [253] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1159), + [sym_yield_expression] = STATE(1159), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1159), + [sym_jsx_fragment] = STATE(1159), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1159), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1159), + [sym_await_expression] = STATE(1159), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1159), + [sym_augmented_assignment_expression] = STATE(1159), + [sym_ternary_expression] = STATE(1159), + [sym_binary_expression] = STATE(1159), + [sym_unary_expression] = STATE(1159), + [sym_update_expression] = STATE(1159), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1391), - [sym_as_expression] = STATE(1391), - [sym_internal_module] = STATE(1391), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1159), + [sym_as_expression] = STATE(1159), + [sym_internal_module] = STATE(1159), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -37469,148 +36970,148 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [262] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1246), - [sym_yield_expression] = STATE(1246), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1246), - [sym_jsx_fragment] = STATE(1246), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1246), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1246), - [sym_await_expression] = STATE(1246), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1246), - [sym_augmented_assignment_expression] = STATE(1246), - [sym_ternary_expression] = STATE(1246), - [sym_binary_expression] = STATE(1246), - [sym_unary_expression] = STATE(1246), - [sym_update_expression] = STATE(1246), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1246), - [sym_as_expression] = STATE(1246), - [sym_internal_module] = STATE(1246), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [254] = { + [sym__call_signature] = STATE(3149), + [sym_string] = STATE(2204), + [sym_formal_parameters] = STATE(2340), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [sym_type_parameters] = STATE(2923), + [aux_sym_object_repeat1] = STATE(2824), + [sym_identifier] = ACTIONS(1358), + [anon_sym_export] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_as] = ACTIONS(1133), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_function] = ACTIONS(1377), + [anon_sym_EQ_GT] = ACTIONS(1154), + [anon_sym_QMARK_DOT] = ACTIONS(1156), + [anon_sym_PLUS_EQ] = ACTIONS(1158), + [anon_sym_DASH_EQ] = ACTIONS(1158), + [anon_sym_STAR_EQ] = ACTIONS(1158), + [anon_sym_SLASH_EQ] = ACTIONS(1158), + [anon_sym_PERCENT_EQ] = ACTIONS(1158), + [anon_sym_CARET_EQ] = ACTIONS(1158), + [anon_sym_AMP_EQ] = ACTIONS(1158), + [anon_sym_PIPE_EQ] = ACTIONS(1158), + [anon_sym_GT_GT_EQ] = ACTIONS(1158), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1158), + [anon_sym_LT_LT_EQ] = ACTIONS(1158), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1158), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), + [anon_sym_QMARK] = ACTIONS(1143), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_GT_GT_GT] = ACTIONS(1133), + [anon_sym_LT_LT] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_STAR_STAR] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(1119), + [anon_sym_EQ_EQ] = ACTIONS(1133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1119), + [anon_sym_BANG_EQ] = ACTIONS(1133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1119), + [anon_sym_GT_EQ] = ACTIONS(1119), + [anon_sym_QMARK_QMARK] = ACTIONS(1133), + [anon_sym_instanceof] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1381), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_BQUOTE] = ACTIONS(1119), + [sym_number] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_get] = ACTIONS(1385), + [anon_sym_set] = ACTIONS(1385), + [anon_sym_declare] = ACTIONS(1360), + [anon_sym_public] = ACTIONS(1360), + [anon_sym_private] = ACTIONS(1360), + [anon_sym_protected] = ACTIONS(1360), + [anon_sym_module] = ACTIONS(1360), + [anon_sym_any] = ACTIONS(1360), + [anon_sym_number] = ACTIONS(1360), + [anon_sym_boolean] = ACTIONS(1360), + [anon_sym_string] = ACTIONS(1360), + [anon_sym_symbol] = ACTIONS(1360), + [sym_readonly] = ACTIONS(1360), + [sym__automatic_semicolon] = ACTIONS(1119), }, - [263] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1096), - [sym_yield_expression] = STATE(1096), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1096), - [sym_jsx_fragment] = STATE(1096), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1096), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1096), - [sym_await_expression] = STATE(1096), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1096), - [sym_augmented_assignment_expression] = STATE(1096), - [sym_ternary_expression] = STATE(1096), - [sym_binary_expression] = STATE(1096), - [sym_unary_expression] = STATE(1096), - [sym_update_expression] = STATE(1096), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [255] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1165), + [sym_yield_expression] = STATE(1165), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1165), + [sym_jsx_fragment] = STATE(1165), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1165), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1165), + [sym_await_expression] = STATE(1165), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1165), + [sym_augmented_assignment_expression] = STATE(1165), + [sym_ternary_expression] = STATE(1165), + [sym_binary_expression] = STATE(1165), + [sym_unary_expression] = STATE(1165), + [sym_update_expression] = STATE(1165), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1096), - [sym_as_expression] = STATE(1096), - [sym_internal_module] = STATE(1096), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1165), + [sym_as_expression] = STATE(1165), + [sym_internal_module] = STATE(1165), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -37664,43 +37165,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [264] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1099), - [sym_yield_expression] = STATE(1099), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1099), - [sym_jsx_fragment] = STATE(1099), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1099), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1099), - [sym_await_expression] = STATE(1099), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1099), - [sym_augmented_assignment_expression] = STATE(1099), - [sym_ternary_expression] = STATE(1099), - [sym_binary_expression] = STATE(1099), - [sym_unary_expression] = STATE(1099), - [sym_update_expression] = STATE(1099), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [256] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1162), + [sym_yield_expression] = STATE(1162), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1162), + [sym_jsx_fragment] = STATE(1162), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1162), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1162), + [sym_await_expression] = STATE(1162), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1162), + [sym_augmented_assignment_expression] = STATE(1162), + [sym_ternary_expression] = STATE(1162), + [sym_binary_expression] = STATE(1162), + [sym_unary_expression] = STATE(1162), + [sym_update_expression] = STATE(1162), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1099), - [sym_as_expression] = STATE(1099), - [sym_internal_module] = STATE(1099), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1162), + [sym_as_expression] = STATE(1162), + [sym_internal_module] = STATE(1162), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -37754,69 +37255,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [265] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1243), - [sym_yield_expression] = STATE(1243), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1243), - [sym_jsx_fragment] = STATE(1243), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1243), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1243), - [sym_await_expression] = STATE(1243), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1243), - [sym_augmented_assignment_expression] = STATE(1243), - [sym_ternary_expression] = STATE(1243), - [sym_binary_expression] = STATE(1243), - [sym_unary_expression] = STATE(1243), - [sym_update_expression] = STATE(1243), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [257] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1097), + [sym_yield_expression] = STATE(1097), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1097), + [sym_jsx_fragment] = STATE(1097), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1097), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1097), + [sym_await_expression] = STATE(1097), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1097), + [sym_augmented_assignment_expression] = STATE(1097), + [sym_ternary_expression] = STATE(1097), + [sym_binary_expression] = STATE(1097), + [sym_unary_expression] = STATE(1097), + [sym_update_expression] = STATE(1097), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1243), - [sym_as_expression] = STATE(1243), - [sym_internal_module] = STATE(1243), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1097), + [sym_as_expression] = STATE(1097), + [sym_internal_module] = STATE(1097), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -37829,58 +37330,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [266] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1170), - [sym_yield_expression] = STATE(1170), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1170), - [sym_jsx_fragment] = STATE(1170), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1170), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1170), - [sym_await_expression] = STATE(1170), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1170), - [sym_augmented_assignment_expression] = STATE(1170), - [sym_ternary_expression] = STATE(1170), - [sym_binary_expression] = STATE(1170), - [sym_unary_expression] = STATE(1170), - [sym_update_expression] = STATE(1170), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [258] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1158), + [sym_yield_expression] = STATE(1158), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1158), + [sym_jsx_fragment] = STATE(1158), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1158), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1158), + [sym_await_expression] = STATE(1158), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1158), + [sym_augmented_assignment_expression] = STATE(1158), + [sym_ternary_expression] = STATE(1158), + [sym_binary_expression] = STATE(1158), + [sym_unary_expression] = STATE(1158), + [sym_update_expression] = STATE(1158), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1170), - [sym_as_expression] = STATE(1170), - [sym_internal_module] = STATE(1170), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1158), + [sym_as_expression] = STATE(1158), + [sym_internal_module] = STATE(1158), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -37934,223 +37435,43 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [267] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1210), - [sym_yield_expression] = STATE(1210), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1210), - [sym_jsx_fragment] = STATE(1210), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1210), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1210), - [sym_await_expression] = STATE(1210), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1210), - [sym_augmented_assignment_expression] = STATE(1210), - [sym_ternary_expression] = STATE(1210), - [sym_binary_expression] = STATE(1210), - [sym_unary_expression] = STATE(1210), - [sym_update_expression] = STATE(1210), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1210), - [sym_as_expression] = STATE(1210), - [sym_internal_module] = STATE(1210), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [268] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1240), - [sym_yield_expression] = STATE(1240), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1240), - [sym_jsx_fragment] = STATE(1240), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1240), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1240), - [sym_await_expression] = STATE(1240), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1240), - [sym_augmented_assignment_expression] = STATE(1240), - [sym_ternary_expression] = STATE(1240), - [sym_binary_expression] = STATE(1240), - [sym_unary_expression] = STATE(1240), - [sym_update_expression] = STATE(1240), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1240), - [sym_as_expression] = STATE(1240), - [sym_internal_module] = STATE(1240), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [269] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1081), - [sym_yield_expression] = STATE(1081), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1081), - [sym_jsx_fragment] = STATE(1081), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1081), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1081), - [sym_await_expression] = STATE(1081), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1081), - [sym_augmented_assignment_expression] = STATE(1081), - [sym_ternary_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_unary_expression] = STATE(1081), - [sym_update_expression] = STATE(1081), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [259] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1155), + [sym_yield_expression] = STATE(1155), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1155), + [sym_jsx_fragment] = STATE(1155), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1155), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1155), + [sym_await_expression] = STATE(1155), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1155), + [sym_augmented_assignment_expression] = STATE(1155), + [sym_ternary_expression] = STATE(1155), + [sym_binary_expression] = STATE(1155), + [sym_unary_expression] = STATE(1155), + [sym_update_expression] = STATE(1155), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1081), - [sym_as_expression] = STATE(1081), - [sym_internal_module] = STATE(1081), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1155), + [sym_as_expression] = STATE(1155), + [sym_internal_module] = STATE(1155), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -38204,159 +37525,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [270] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1241), - [sym_yield_expression] = STATE(1241), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1241), - [sym_jsx_fragment] = STATE(1241), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1241), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1241), - [sym_await_expression] = STATE(1241), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1241), - [sym_augmented_assignment_expression] = STATE(1241), - [sym_ternary_expression] = STATE(1241), - [sym_binary_expression] = STATE(1241), - [sym_unary_expression] = STATE(1241), - [sym_update_expression] = STATE(1241), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1241), - [sym_as_expression] = STATE(1241), - [sym_internal_module] = STATE(1241), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [271] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1248), - [sym_yield_expression] = STATE(1248), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1248), - [sym_jsx_fragment] = STATE(1248), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1248), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1248), - [sym_await_expression] = STATE(1248), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1248), - [sym_augmented_assignment_expression] = STATE(1248), - [sym_ternary_expression] = STATE(1248), - [sym_binary_expression] = STATE(1248), - [sym_unary_expression] = STATE(1248), - [sym_update_expression] = STATE(1248), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [260] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1277), + [sym_yield_expression] = STATE(1277), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1277), + [sym_jsx_fragment] = STATE(1277), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1277), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1277), + [sym_await_expression] = STATE(1277), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1277), + [sym_augmented_assignment_expression] = STATE(1277), + [sym_ternary_expression] = STATE(1277), + [sym_binary_expression] = STATE(1277), + [sym_unary_expression] = STATE(1277), + [sym_update_expression] = STATE(1277), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1248), - [sym_as_expression] = STATE(1248), - [sym_internal_module] = STATE(1248), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1277), + [sym_as_expression] = STATE(1277), + [sym_internal_module] = STATE(1277), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -38369,174 +37600,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [272] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1163), - [sym_yield_expression] = STATE(1163), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1163), - [sym_jsx_fragment] = STATE(1163), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1163), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1163), - [sym_await_expression] = STATE(1163), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1163), - [sym_augmented_assignment_expression] = STATE(1163), - [sym_ternary_expression] = STATE(1163), - [sym_binary_expression] = STATE(1163), - [sym_unary_expression] = STATE(1163), - [sym_update_expression] = STATE(1163), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [261] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1280), + [sym_yield_expression] = STATE(1280), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1280), + [sym_jsx_fragment] = STATE(1280), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1280), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1280), + [sym_await_expression] = STATE(1280), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1280), + [sym_augmented_assignment_expression] = STATE(1280), + [sym_ternary_expression] = STATE(1280), + [sym_binary_expression] = STATE(1280), + [sym_unary_expression] = STATE(1280), + [sym_update_expression] = STATE(1280), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1163), - [sym_as_expression] = STATE(1163), - [sym_internal_module] = STATE(1163), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), - }, - [273] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1242), - [sym_yield_expression] = STATE(1242), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1242), - [sym_jsx_fragment] = STATE(1242), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1242), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1242), - [sym_await_expression] = STATE(1242), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1242), - [sym_augmented_assignment_expression] = STATE(1242), - [sym_ternary_expression] = STATE(1242), - [sym_binary_expression] = STATE(1242), - [sym_unary_expression] = STATE(1242), - [sym_update_expression] = STATE(1242), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1242), - [sym_as_expression] = STATE(1242), - [sym_internal_module] = STATE(1242), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1280), + [sym_as_expression] = STATE(1280), + [sym_internal_module] = STATE(1280), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -38549,174 +37690,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [274] = { - [sym_import] = STATE(1696), + [262] = { + [sym_import] = STATE(1088), [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1211), - [sym_yield_expression] = STATE(1211), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1211), - [sym_jsx_fragment] = STATE(1211), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1211), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1211), - [sym_await_expression] = STATE(1211), + [sym__expression] = STATE(1230), + [sym_yield_expression] = STATE(1230), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1230), + [sym_jsx_fragment] = STATE(1230), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1230), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1230), + [sym_await_expression] = STATE(1230), [sym_member_expression] = STATE(785), [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1211), - [sym_augmented_assignment_expression] = STATE(1211), - [sym_ternary_expression] = STATE(1211), - [sym_binary_expression] = STATE(1211), - [sym_unary_expression] = STATE(1211), - [sym_update_expression] = STATE(1211), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1211), - [sym_as_expression] = STATE(1211), - [sym_internal_module] = STATE(1211), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [275] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(983), - [sym_yield_expression] = STATE(983), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(983), - [sym_jsx_fragment] = STATE(983), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(983), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(983), - [sym_await_expression] = STATE(983), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(983), - [sym_augmented_assignment_expression] = STATE(983), - [sym_ternary_expression] = STATE(983), - [sym_binary_expression] = STATE(983), - [sym_unary_expression] = STATE(983), - [sym_update_expression] = STATE(983), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_assignment_expression] = STATE(1230), + [sym_augmented_assignment_expression] = STATE(1230), + [sym_ternary_expression] = STATE(1230), + [sym_binary_expression] = STATE(1230), + [sym_unary_expression] = STATE(1230), + [sym_update_expression] = STATE(1230), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(983), - [sym_as_expression] = STATE(983), - [sym_internal_module] = STATE(983), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1230), + [sym_as_expression] = STATE(1230), + [sym_internal_module] = STATE(1230), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -38729,264 +37780,264 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [276] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1254), - [sym_yield_expression] = STATE(1254), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1254), - [sym_jsx_fragment] = STATE(1254), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1254), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1254), - [sym_await_expression] = STATE(1254), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1254), - [sym_augmented_assignment_expression] = STATE(1254), - [sym_ternary_expression] = STATE(1254), - [sym_binary_expression] = STATE(1254), - [sym_unary_expression] = STATE(1254), - [sym_update_expression] = STATE(1254), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [263] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1150), + [sym_yield_expression] = STATE(1150), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1150), + [sym_jsx_fragment] = STATE(1150), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1150), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1150), + [sym_await_expression] = STATE(1150), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1150), + [sym_augmented_assignment_expression] = STATE(1150), + [sym_ternary_expression] = STATE(1150), + [sym_binary_expression] = STATE(1150), + [sym_unary_expression] = STATE(1150), + [sym_update_expression] = STATE(1150), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1254), - [sym_as_expression] = STATE(1254), - [sym_internal_module] = STATE(1254), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1150), + [sym_as_expression] = STATE(1150), + [sym_internal_module] = STATE(1150), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [277] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1250), - [sym_yield_expression] = STATE(1250), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1250), - [sym_jsx_fragment] = STATE(1250), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1250), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1250), - [sym_await_expression] = STATE(1250), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1250), - [sym_augmented_assignment_expression] = STATE(1250), - [sym_ternary_expression] = STATE(1250), - [sym_binary_expression] = STATE(1250), - [sym_unary_expression] = STATE(1250), - [sym_update_expression] = STATE(1250), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [264] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1149), + [sym_yield_expression] = STATE(1149), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1149), + [sym_jsx_fragment] = STATE(1149), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1149), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1149), + [sym_await_expression] = STATE(1149), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1149), + [sym_augmented_assignment_expression] = STATE(1149), + [sym_ternary_expression] = STATE(1149), + [sym_binary_expression] = STATE(1149), + [sym_unary_expression] = STATE(1149), + [sym_update_expression] = STATE(1149), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1250), - [sym_as_expression] = STATE(1250), - [sym_internal_module] = STATE(1250), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1149), + [sym_as_expression] = STATE(1149), + [sym_internal_module] = STATE(1149), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [278] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(936), - [sym__expression] = STATE(1631), - [sym_yield_expression] = STATE(1631), - [sym_object] = STATE(1703), - [sym_array] = STATE(1704), - [sym_jsx_element] = STATE(1631), - [sym_jsx_fragment] = STATE(1631), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1631), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1631), - [sym_await_expression] = STATE(1631), - [sym_member_expression] = STATE(936), - [sym_subscript_expression] = STATE(936), - [sym_assignment_expression] = STATE(1631), - [sym_augmented_assignment_expression] = STATE(1631), - [sym_ternary_expression] = STATE(1631), - [sym_binary_expression] = STATE(1631), - [sym_unary_expression] = STATE(1631), - [sym_update_expression] = STATE(1631), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [265] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1215), + [sym_yield_expression] = STATE(1215), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1215), + [sym_jsx_fragment] = STATE(1215), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1215), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1215), + [sym_await_expression] = STATE(1215), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1215), + [sym_augmented_assignment_expression] = STATE(1215), + [sym_ternary_expression] = STATE(1215), + [sym_binary_expression] = STATE(1215), + [sym_unary_expression] = STATE(1215), + [sym_update_expression] = STATE(1215), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1631), - [sym_as_expression] = STATE(1631), - [sym_internal_module] = STATE(1631), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1387), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1215), + [sym_as_expression] = STATE(1215), + [sym_internal_module] = STATE(1215), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -38999,328 +38050,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_module] = ACTIONS(1254), - [anon_sym_any] = ACTIONS(1254), - [anon_sym_number] = ACTIONS(1254), - [anon_sym_boolean] = ACTIONS(1254), - [anon_sym_string] = ACTIONS(1254), - [anon_sym_symbol] = ACTIONS(1254), - [sym_readonly] = ACTIONS(1254), - }, - [279] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1212), - [sym_yield_expression] = STATE(1212), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1212), - [sym_jsx_fragment] = STATE(1212), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1212), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1212), - [sym_await_expression] = STATE(1212), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1212), - [sym_augmented_assignment_expression] = STATE(1212), - [sym_ternary_expression] = STATE(1212), - [sym_binary_expression] = STATE(1212), - [sym_unary_expression] = STATE(1212), - [sym_update_expression] = STATE(1212), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1212), - [sym_as_expression] = STATE(1212), - [sym_internal_module] = STATE(1212), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [280] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1213), - [sym_yield_expression] = STATE(1213), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1213), - [sym_jsx_fragment] = STATE(1213), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1213), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1213), - [sym_await_expression] = STATE(1213), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1213), - [sym_augmented_assignment_expression] = STATE(1213), - [sym_ternary_expression] = STATE(1213), - [sym_binary_expression] = STATE(1213), - [sym_unary_expression] = STATE(1213), - [sym_update_expression] = STATE(1213), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1213), - [sym_as_expression] = STATE(1213), - [sym_internal_module] = STATE(1213), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [281] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1214), - [sym_yield_expression] = STATE(1214), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1214), - [sym_jsx_fragment] = STATE(1214), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1214), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1214), - [sym_await_expression] = STATE(1214), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1214), - [sym_augmented_assignment_expression] = STATE(1214), - [sym_ternary_expression] = STATE(1214), - [sym_binary_expression] = STATE(1214), - [sym_unary_expression] = STATE(1214), - [sym_update_expression] = STATE(1214), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1214), - [sym_as_expression] = STATE(1214), - [sym_internal_module] = STATE(1214), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [282] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1152), - [sym_yield_expression] = STATE(1152), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1152), - [sym_jsx_fragment] = STATE(1152), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1152), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1152), - [sym_await_expression] = STATE(1152), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1152), - [sym_augmented_assignment_expression] = STATE(1152), - [sym_ternary_expression] = STATE(1152), - [sym_binary_expression] = STATE(1152), - [sym_unary_expression] = STATE(1152), - [sym_update_expression] = STATE(1152), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [266] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1041), + [sym_yield_expression] = STATE(1041), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1041), + [sym_jsx_fragment] = STATE(1041), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1041), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1041), + [sym_await_expression] = STATE(1041), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1041), + [sym_augmented_assignment_expression] = STATE(1041), + [sym_ternary_expression] = STATE(1041), + [sym_binary_expression] = STATE(1041), + [sym_unary_expression] = STATE(1041), + [sym_update_expression] = STATE(1041), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1152), - [sym_as_expression] = STATE(1152), - [sym_internal_module] = STATE(1152), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1041), + [sym_as_expression] = STATE(1041), + [sym_internal_module] = STATE(1041), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -39374,159 +38155,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [283] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1215), - [sym_yield_expression] = STATE(1215), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1215), - [sym_jsx_fragment] = STATE(1215), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1215), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1215), - [sym_await_expression] = STATE(1215), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1215), - [sym_augmented_assignment_expression] = STATE(1215), - [sym_ternary_expression] = STATE(1215), - [sym_binary_expression] = STATE(1215), - [sym_unary_expression] = STATE(1215), - [sym_update_expression] = STATE(1215), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), + [267] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1264), + [sym_yield_expression] = STATE(1264), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1264), + [sym_jsx_fragment] = STATE(1264), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1264), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1264), + [sym_await_expression] = STATE(1264), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1264), + [sym_augmented_assignment_expression] = STATE(1264), + [sym_ternary_expression] = STATE(1264), + [sym_binary_expression] = STATE(1264), + [sym_unary_expression] = STATE(1264), + [sym_update_expression] = STATE(1264), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1215), - [sym_as_expression] = STATE(1215), - [sym_internal_module] = STATE(1215), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1264), + [sym_as_expression] = STATE(1264), + [sym_internal_module] = STATE(1264), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), [anon_sym_new] = ACTIONS(887), [anon_sym_PLUS] = ACTIONS(889), [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, - [284] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1349), - [sym_yield_expression] = STATE(1349), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1349), - [sym_jsx_fragment] = STATE(1349), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1349), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1349), - [sym_await_expression] = STATE(1349), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1349), - [sym_augmented_assignment_expression] = STATE(1349), - [sym_ternary_expression] = STATE(1349), - [sym_binary_expression] = STATE(1349), - [sym_unary_expression] = STATE(1349), - [sym_update_expression] = STATE(1349), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [268] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1326), + [sym_yield_expression] = STATE(1326), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1326), + [sym_jsx_fragment] = STATE(1326), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1326), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1326), + [sym_await_expression] = STATE(1326), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1326), + [sym_augmented_assignment_expression] = STATE(1326), + [sym_ternary_expression] = STATE(1326), + [sym_binary_expression] = STATE(1326), + [sym_unary_expression] = STATE(1326), + [sym_update_expression] = STATE(1326), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1349), - [sym_as_expression] = STATE(1349), - [sym_internal_module] = STATE(1349), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1326), + [sym_as_expression] = STATE(1326), + [sym_internal_module] = STATE(1326), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -39539,58 +38320,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [285] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1080), - [sym_yield_expression] = STATE(1080), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1080), - [sym_jsx_fragment] = STATE(1080), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1080), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1080), - [sym_await_expression] = STATE(1080), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1080), - [sym_augmented_assignment_expression] = STATE(1080), - [sym_ternary_expression] = STATE(1080), - [sym_binary_expression] = STATE(1080), - [sym_unary_expression] = STATE(1080), - [sym_update_expression] = STATE(1080), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [269] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1168), + [sym_yield_expression] = STATE(1168), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1168), + [sym_jsx_fragment] = STATE(1168), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1168), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1168), + [sym_await_expression] = STATE(1168), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1168), + [sym_augmented_assignment_expression] = STATE(1168), + [sym_ternary_expression] = STATE(1168), + [sym_binary_expression] = STATE(1168), + [sym_unary_expression] = STATE(1168), + [sym_update_expression] = STATE(1168), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1080), - [sym_as_expression] = STATE(1080), - [sym_internal_module] = STATE(1080), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1168), + [sym_as_expression] = STATE(1168), + [sym_internal_module] = STATE(1168), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -39644,429 +38425,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [286] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1531), - [sym_yield_expression] = STATE(1531), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1531), - [sym_jsx_fragment] = STATE(1531), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1531), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1531), - [sym_await_expression] = STATE(1531), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1531), - [sym_augmented_assignment_expression] = STATE(1531), - [sym_ternary_expression] = STATE(1531), - [sym_binary_expression] = STATE(1531), - [sym_unary_expression] = STATE(1531), - [sym_update_expression] = STATE(1531), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [270] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1082), + [sym_yield_expression] = STATE(1082), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1082), + [sym_jsx_fragment] = STATE(1082), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1082), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1082), + [sym_await_expression] = STATE(1082), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1082), + [sym_augmented_assignment_expression] = STATE(1082), + [sym_ternary_expression] = STATE(1082), + [sym_binary_expression] = STATE(1082), + [sym_unary_expression] = STATE(1082), + [sym_update_expression] = STATE(1082), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1531), - [sym_as_expression] = STATE(1531), - [sym_internal_module] = STATE(1531), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), - }, - [287] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1216), - [sym_yield_expression] = STATE(1216), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1216), - [sym_jsx_fragment] = STATE(1216), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1216), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1216), - [sym_await_expression] = STATE(1216), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1216), - [sym_augmented_assignment_expression] = STATE(1216), - [sym_ternary_expression] = STATE(1216), - [sym_binary_expression] = STATE(1216), - [sym_unary_expression] = STATE(1216), - [sym_update_expression] = STATE(1216), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1216), - [sym_as_expression] = STATE(1216), - [sym_internal_module] = STATE(1216), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [288] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1217), - [sym_yield_expression] = STATE(1217), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1217), - [sym_jsx_fragment] = STATE(1217), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1217), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1217), - [sym_await_expression] = STATE(1217), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1217), - [sym_augmented_assignment_expression] = STATE(1217), - [sym_ternary_expression] = STATE(1217), - [sym_binary_expression] = STATE(1217), - [sym_unary_expression] = STATE(1217), - [sym_update_expression] = STATE(1217), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1217), - [sym_as_expression] = STATE(1217), - [sym_internal_module] = STATE(1217), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [289] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1218), - [sym_yield_expression] = STATE(1218), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1218), - [sym_jsx_fragment] = STATE(1218), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1218), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1218), - [sym_await_expression] = STATE(1218), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1218), - [sym_augmented_assignment_expression] = STATE(1218), - [sym_ternary_expression] = STATE(1218), - [sym_binary_expression] = STATE(1218), - [sym_unary_expression] = STATE(1218), - [sym_update_expression] = STATE(1218), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1218), - [sym_as_expression] = STATE(1218), - [sym_internal_module] = STATE(1218), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1082), + [sym_as_expression] = STATE(1082), + [sym_internal_module] = STATE(1082), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [290] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1329), - [sym_yield_expression] = STATE(1329), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1329), - [sym_jsx_fragment] = STATE(1329), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1329), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1329), - [sym_await_expression] = STATE(1329), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1329), - [sym_augmented_assignment_expression] = STATE(1329), - [sym_ternary_expression] = STATE(1329), - [sym_binary_expression] = STATE(1329), - [sym_unary_expression] = STATE(1329), - [sym_update_expression] = STATE(1329), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [271] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1333), + [sym_yield_expression] = STATE(1333), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1333), + [sym_jsx_fragment] = STATE(1333), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1333), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1333), + [sym_await_expression] = STATE(1333), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1333), + [sym_augmented_assignment_expression] = STATE(1333), + [sym_ternary_expression] = STATE(1333), + [sym_binary_expression] = STATE(1333), + [sym_unary_expression] = STATE(1333), + [sym_update_expression] = STATE(1333), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1329), - [sym_as_expression] = STATE(1329), - [sym_internal_module] = STATE(1329), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1333), + [sym_as_expression] = STATE(1333), + [sym_internal_module] = STATE(1333), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -40079,89 +38590,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [291] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1237), - [sym_yield_expression] = STATE(1237), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1237), - [sym_jsx_fragment] = STATE(1237), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1237), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1237), - [sym_await_expression] = STATE(1237), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1237), - [sym_augmented_assignment_expression] = STATE(1237), - [sym_ternary_expression] = STATE(1237), - [sym_binary_expression] = STATE(1237), - [sym_unary_expression] = STATE(1237), - [sym_update_expression] = STATE(1237), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [272] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1007), + [sym_yield_expression] = STATE(1007), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1007), + [sym_jsx_fragment] = STATE(1007), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1007), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1007), + [sym_await_expression] = STATE(1007), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(1007), + [sym_ternary_expression] = STATE(1007), + [sym_binary_expression] = STATE(1007), + [sym_unary_expression] = STATE(1007), + [sym_update_expression] = STATE(1007), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1237), - [sym_as_expression] = STATE(1237), - [sym_internal_module] = STATE(1237), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1007), + [sym_as_expression] = STATE(1007), + [sym_internal_module] = STATE(1007), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), + [sym_number] = ACTIONS(1389), [sym_this] = ACTIONS(511), [sym_super] = ACTIONS(511), [sym_true] = ACTIONS(511), @@ -40169,174 +38680,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [292] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1236), - [sym_yield_expression] = STATE(1236), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1236), - [sym_jsx_fragment] = STATE(1236), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1236), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1236), - [sym_await_expression] = STATE(1236), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1236), - [sym_augmented_assignment_expression] = STATE(1236), - [sym_ternary_expression] = STATE(1236), - [sym_binary_expression] = STATE(1236), - [sym_unary_expression] = STATE(1236), - [sym_update_expression] = STATE(1236), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [273] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1062), + [sym_yield_expression] = STATE(1062), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1062), + [sym_jsx_fragment] = STATE(1062), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1062), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1062), + [sym_await_expression] = STATE(1062), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1062), + [sym_augmented_assignment_expression] = STATE(1062), + [sym_ternary_expression] = STATE(1062), + [sym_binary_expression] = STATE(1062), + [sym_unary_expression] = STATE(1062), + [sym_update_expression] = STATE(1062), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1236), - [sym_as_expression] = STATE(1236), - [sym_internal_module] = STATE(1236), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1062), + [sym_internal_module] = STATE(1062), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(1391), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [293] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(968), - [sym_yield_expression] = STATE(968), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(968), - [sym_jsx_fragment] = STATE(968), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(968), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(968), - [sym_await_expression] = STATE(968), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(968), - [sym_augmented_assignment_expression] = STATE(968), - [sym_ternary_expression] = STATE(968), - [sym_binary_expression] = STATE(968), - [sym_unary_expression] = STATE(968), - [sym_update_expression] = STATE(968), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [274] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1464), + [sym_yield_expression] = STATE(1464), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1464), + [sym_jsx_fragment] = STATE(1464), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1464), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1464), + [sym_await_expression] = STATE(1464), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1464), + [sym_augmented_assignment_expression] = STATE(1464), + [sym_ternary_expression] = STATE(1464), + [sym_binary_expression] = STATE(1464), + [sym_unary_expression] = STATE(1464), + [sym_update_expression] = STATE(1464), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(968), - [sym_as_expression] = STATE(968), - [sym_internal_module] = STATE(968), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1464), + [sym_as_expression] = STATE(1464), + [sym_internal_module] = STATE(1464), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -40349,59 +38860,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [294] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1004), - [sym_yield_expression] = STATE(1004), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1004), - [sym_jsx_fragment] = STATE(1004), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1004), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1004), - [sym_await_expression] = STATE(1004), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1004), - [sym_augmented_assignment_expression] = STATE(1004), - [sym_ternary_expression] = STATE(1004), - [sym_binary_expression] = STATE(1004), - [sym_unary_expression] = STATE(1004), - [sym_update_expression] = STATE(1004), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [275] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1362), + [sym_yield_expression] = STATE(1362), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1362), + [sym_jsx_fragment] = STATE(1362), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1362), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1362), + [sym_await_expression] = STATE(1362), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1362), + [sym_augmented_assignment_expression] = STATE(1362), + [sym_ternary_expression] = STATE(1362), + [sym_binary_expression] = STATE(1362), + [sym_unary_expression] = STATE(1362), + [sym_update_expression] = STATE(1362), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1004), - [sym_as_expression] = STATE(1004), - [sym_internal_module] = STATE(1004), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1362), + [sym_as_expression] = STATE(1362), + [sym_internal_module] = STATE(1362), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -40454,44 +38965,134 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [295] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1029), - [sym_yield_expression] = STATE(1029), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1029), - [sym_jsx_fragment] = STATE(1029), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1029), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1029), - [sym_await_expression] = STATE(1029), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(1029), - [sym_ternary_expression] = STATE(1029), - [sym_binary_expression] = STATE(1029), - [sym_unary_expression] = STATE(1029), - [sym_update_expression] = STATE(1029), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [276] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1110), + [sym_yield_expression] = STATE(1110), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1110), + [sym_jsx_fragment] = STATE(1110), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1110), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1110), + [sym_await_expression] = STATE(1110), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1110), + [sym_augmented_assignment_expression] = STATE(1110), + [sym_ternary_expression] = STATE(1110), + [sym_binary_expression] = STATE(1110), + [sym_unary_expression] = STATE(1110), + [sym_update_expression] = STATE(1110), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1029), - [sym_as_expression] = STATE(1029), - [sym_internal_module] = STATE(1029), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1110), + [sym_as_expression] = STATE(1110), + [sym_internal_module] = STATE(1110), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [277] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1363), + [sym_yield_expression] = STATE(1363), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1363), + [sym_jsx_fragment] = STATE(1363), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1363), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1363), + [sym_await_expression] = STATE(1363), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1363), + [sym_augmented_assignment_expression] = STATE(1363), + [sym_ternary_expression] = STATE(1363), + [sym_binary_expression] = STATE(1363), + [sym_unary_expression] = STATE(1363), + [sym_update_expression] = STATE(1363), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1363), + [sym_as_expression] = STATE(1363), + [sym_internal_module] = STATE(1363), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -40544,249 +39145,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [296] = { - [sym_import] = STATE(1696), + [278] = { + [sym_import] = STATE(1088), [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1207), - [sym_yield_expression] = STATE(1207), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1207), - [sym_jsx_fragment] = STATE(1207), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1207), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1207), - [sym_await_expression] = STATE(1207), + [sym__expression] = STATE(963), + [sym_yield_expression] = STATE(963), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(963), + [sym_jsx_fragment] = STATE(963), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(963), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(963), + [sym_await_expression] = STATE(963), [sym_member_expression] = STATE(785), [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1207), - [sym_augmented_assignment_expression] = STATE(1207), - [sym_ternary_expression] = STATE(1207), - [sym_binary_expression] = STATE(1207), - [sym_unary_expression] = STATE(1207), - [sym_update_expression] = STATE(1207), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1207), - [sym_as_expression] = STATE(1207), - [sym_internal_module] = STATE(1207), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [297] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1372), - [sym_yield_expression] = STATE(1372), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1372), - [sym_jsx_fragment] = STATE(1372), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1372), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1372), - [sym_await_expression] = STATE(1372), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1372), - [sym_augmented_assignment_expression] = STATE(1372), - [sym_ternary_expression] = STATE(1372), - [sym_binary_expression] = STATE(1372), - [sym_unary_expression] = STATE(1372), - [sym_update_expression] = STATE(1372), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_assignment_expression] = STATE(963), + [sym_augmented_assignment_expression] = STATE(963), + [sym_ternary_expression] = STATE(963), + [sym_binary_expression] = STATE(963), + [sym_unary_expression] = STATE(963), + [sym_update_expression] = STATE(963), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1372), - [sym_as_expression] = STATE(1372), - [sym_internal_module] = STATE(1372), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(963), + [sym_as_expression] = STATE(963), + [sym_internal_module] = STATE(963), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), - }, - [298] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1235), - [sym_yield_expression] = STATE(1235), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1235), - [sym_jsx_fragment] = STATE(1235), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1235), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1235), - [sym_await_expression] = STATE(1235), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1235), - [sym_augmented_assignment_expression] = STATE(1235), - [sym_ternary_expression] = STATE(1235), - [sym_binary_expression] = STATE(1235), - [sym_unary_expression] = STATE(1235), - [sym_update_expression] = STATE(1235), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1235), - [sym_as_expression] = STATE(1235), - [sym_internal_module] = STATE(1235), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -40799,84 +39220,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [299] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1234), - [sym_yield_expression] = STATE(1234), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1234), - [sym_jsx_fragment] = STATE(1234), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1234), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1234), - [sym_await_expression] = STATE(1234), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1234), - [sym_augmented_assignment_expression] = STATE(1234), - [sym_ternary_expression] = STATE(1234), - [sym_binary_expression] = STATE(1234), - [sym_unary_expression] = STATE(1234), - [sym_update_expression] = STATE(1234), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [279] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1365), + [sym_yield_expression] = STATE(1365), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1365), + [sym_jsx_fragment] = STATE(1365), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1365), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1365), + [sym_await_expression] = STATE(1365), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1365), + [sym_augmented_assignment_expression] = STATE(1365), + [sym_ternary_expression] = STATE(1365), + [sym_binary_expression] = STATE(1365), + [sym_unary_expression] = STATE(1365), + [sym_update_expression] = STATE(1365), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1234), - [sym_as_expression] = STATE(1234), - [sym_internal_module] = STATE(1234), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1365), + [sym_internal_module] = STATE(1365), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -40889,38 +39310,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [300] = { - [sym_import] = STATE(1696), + [280] = { + [sym_import] = STATE(1088), [sym_parenthesized_expression] = STATE(785), [sym__expression] = STATE(1220), [sym_yield_expression] = STATE(1220), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), [sym_jsx_element] = STATE(1220), [sym_jsx_fragment] = STATE(1220), - [sym_jsx_opening_element] = STATE(2054), + [sym_jsx_opening_element] = STATE(2056), [sym_jsx_self_closing_element] = STATE(1220), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), [sym_new_expression] = STATE(1220), [sym_await_expression] = STATE(1220), [sym_member_expression] = STATE(785), @@ -40931,132 +39352,132 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_binary_expression] = STATE(1220), [sym_unary_expression] = STATE(1220), [sym_update_expression] = STATE(1220), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), + [sym_formal_parameters] = STATE(2340), [sym_non_null_expression] = STATE(1220), [sym_as_expression] = STATE(1220), [sym_internal_module] = STATE(1220), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [301] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1184), - [sym_yield_expression] = STATE(1184), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1184), - [sym_jsx_fragment] = STATE(1184), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1184), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1184), - [sym_await_expression] = STATE(1184), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1184), - [sym_augmented_assignment_expression] = STATE(1184), - [sym_ternary_expression] = STATE(1184), - [sym_binary_expression] = STATE(1184), - [sym_unary_expression] = STATE(1184), - [sym_update_expression] = STATE(1184), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [281] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1251), + [sym_yield_expression] = STATE(1251), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1251), + [sym_jsx_fragment] = STATE(1251), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1251), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1251), + [sym_await_expression] = STATE(1251), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1251), + [sym_augmented_assignment_expression] = STATE(1251), + [sym_ternary_expression] = STATE(1251), + [sym_binary_expression] = STATE(1251), + [sym_unary_expression] = STATE(1251), + [sym_update_expression] = STATE(1251), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1184), - [sym_as_expression] = STATE(1184), - [sym_internal_module] = STATE(1184), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1251), + [sym_as_expression] = STATE(1251), + [sym_internal_module] = STATE(1251), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -41069,174 +39490,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [302] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1388), - [sym_yield_expression] = STATE(1388), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1388), - [sym_jsx_fragment] = STATE(1388), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1388), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1388), - [sym_await_expression] = STATE(1388), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1388), - [sym_augmented_assignment_expression] = STATE(1388), - [sym_ternary_expression] = STATE(1388), - [sym_binary_expression] = STATE(1388), - [sym_unary_expression] = STATE(1388), - [sym_update_expression] = STATE(1388), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [282] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1214), + [sym_yield_expression] = STATE(1214), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1214), + [sym_jsx_fragment] = STATE(1214), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1214), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1214), + [sym_await_expression] = STATE(1214), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1214), + [sym_augmented_assignment_expression] = STATE(1214), + [sym_ternary_expression] = STATE(1214), + [sym_binary_expression] = STATE(1214), + [sym_unary_expression] = STATE(1214), + [sym_update_expression] = STATE(1214), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1388), - [sym_as_expression] = STATE(1388), - [sym_internal_module] = STATE(1388), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1214), + [sym_as_expression] = STATE(1214), + [sym_internal_module] = STATE(1214), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1389), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), - }, - [303] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1232), - [sym_yield_expression] = STATE(1232), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1232), - [sym_jsx_fragment] = STATE(1232), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1232), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1232), - [sym_await_expression] = STATE(1232), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1232), - [sym_augmented_assignment_expression] = STATE(1232), - [sym_ternary_expression] = STATE(1232), - [sym_binary_expression] = STATE(1232), - [sym_unary_expression] = STATE(1232), - [sym_update_expression] = STATE(1232), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1232), - [sym_as_expression] = STATE(1232), - [sym_internal_module] = STATE(1232), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -41249,84 +39580,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [304] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1231), - [sym_yield_expression] = STATE(1231), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1231), - [sym_jsx_fragment] = STATE(1231), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1231), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1231), - [sym_await_expression] = STATE(1231), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1231), - [sym_augmented_assignment_expression] = STATE(1231), - [sym_ternary_expression] = STATE(1231), - [sym_binary_expression] = STATE(1231), - [sym_unary_expression] = STATE(1231), - [sym_update_expression] = STATE(1231), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [283] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1223), + [sym_yield_expression] = STATE(1223), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1223), + [sym_jsx_fragment] = STATE(1223), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1223), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1223), + [sym_await_expression] = STATE(1223), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1223), + [sym_augmented_assignment_expression] = STATE(1223), + [sym_ternary_expression] = STATE(1223), + [sym_binary_expression] = STATE(1223), + [sym_unary_expression] = STATE(1223), + [sym_update_expression] = STATE(1223), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1231), - [sym_as_expression] = STATE(1231), - [sym_internal_module] = STATE(1231), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1223), + [sym_as_expression] = STATE(1223), + [sym_internal_module] = STATE(1223), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -41339,84 +39670,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [305] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1078), - [sym_yield_expression] = STATE(1078), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1078), - [sym_jsx_fragment] = STATE(1078), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1078), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1078), - [sym_await_expression] = STATE(1078), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1078), - [sym_augmented_assignment_expression] = STATE(1078), - [sym_ternary_expression] = STATE(1078), - [sym_binary_expression] = STATE(1078), - [sym_unary_expression] = STATE(1078), - [sym_update_expression] = STATE(1078), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [284] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1337), + [sym_yield_expression] = STATE(1337), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1337), + [sym_jsx_fragment] = STATE(1337), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1337), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1337), + [sym_await_expression] = STATE(1337), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1337), + [sym_augmented_assignment_expression] = STATE(1337), + [sym_ternary_expression] = STATE(1337), + [sym_binary_expression] = STATE(1337), + [sym_unary_expression] = STATE(1337), + [sym_update_expression] = STATE(1337), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1078), - [sym_as_expression] = STATE(1078), - [sym_internal_module] = STATE(1078), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1337), + [sym_as_expression] = STATE(1337), + [sym_internal_module] = STATE(1337), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -41429,58 +39760,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [306] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1075), - [sym_yield_expression] = STATE(1075), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1075), - [sym_jsx_fragment] = STATE(1075), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1075), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1075), - [sym_await_expression] = STATE(1075), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1075), - [sym_augmented_assignment_expression] = STATE(1075), - [sym_ternary_expression] = STATE(1075), - [sym_binary_expression] = STATE(1075), - [sym_unary_expression] = STATE(1075), - [sym_update_expression] = STATE(1075), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [285] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1170), + [sym_yield_expression] = STATE(1170), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1170), + [sym_jsx_fragment] = STATE(1170), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1170), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1170), + [sym_await_expression] = STATE(1170), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1170), + [sym_augmented_assignment_expression] = STATE(1170), + [sym_ternary_expression] = STATE(1170), + [sym_binary_expression] = STATE(1170), + [sym_unary_expression] = STATE(1170), + [sym_update_expression] = STATE(1170), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1075), - [sym_as_expression] = STATE(1075), - [sym_internal_module] = STATE(1075), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1170), + [sym_as_expression] = STATE(1170), + [sym_internal_module] = STATE(1170), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -41534,164 +39865,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [307] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1204), - [sym_yield_expression] = STATE(1204), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1204), - [sym_jsx_fragment] = STATE(1204), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1204), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1204), - [sym_await_expression] = STATE(1204), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1204), - [sym_augmented_assignment_expression] = STATE(1204), - [sym_ternary_expression] = STATE(1204), - [sym_binary_expression] = STATE(1204), - [sym_unary_expression] = STATE(1204), - [sym_update_expression] = STATE(1204), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1204), - [sym_as_expression] = STATE(1204), - [sym_internal_module] = STATE(1204), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), - }, - [308] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1102), - [sym_yield_expression] = STATE(1102), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1102), - [sym_jsx_fragment] = STATE(1102), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1102), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1102), - [sym_await_expression] = STATE(1102), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1102), - [sym_augmented_assignment_expression] = STATE(1102), - [sym_ternary_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_unary_expression] = STATE(1102), - [sym_update_expression] = STATE(1102), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [286] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1342), + [sym_yield_expression] = STATE(1342), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1342), + [sym_jsx_fragment] = STATE(1342), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1342), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1342), + [sym_await_expression] = STATE(1342), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1342), + [sym_augmented_assignment_expression] = STATE(1342), + [sym_ternary_expression] = STATE(1342), + [sym_binary_expression] = STATE(1342), + [sym_unary_expression] = STATE(1342), + [sym_update_expression] = STATE(1342), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1102), - [sym_as_expression] = STATE(1102), - [sym_internal_module] = STATE(1102), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1342), + [sym_internal_module] = STATE(1342), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(1391), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), + [sym_number] = ACTIONS(1393), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -41699,84 +39940,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [309] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1003), - [sym_yield_expression] = STATE(1003), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1003), - [sym_jsx_fragment] = STATE(1003), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1003), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1003), - [sym_await_expression] = STATE(1003), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1003), - [sym_augmented_assignment_expression] = STATE(1003), - [sym_ternary_expression] = STATE(1003), - [sym_binary_expression] = STATE(1003), - [sym_unary_expression] = STATE(1003), - [sym_update_expression] = STATE(1003), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [287] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1211), + [sym_yield_expression] = STATE(1211), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1211), + [sym_jsx_fragment] = STATE(1211), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1211), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1211), + [sym_await_expression] = STATE(1211), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1211), + [sym_augmented_assignment_expression] = STATE(1211), + [sym_ternary_expression] = STATE(1211), + [sym_binary_expression] = STATE(1211), + [sym_unary_expression] = STATE(1211), + [sym_update_expression] = STATE(1211), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1003), - [sym_as_expression] = STATE(1003), - [sym_internal_module] = STATE(1003), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1211), + [sym_as_expression] = STATE(1211), + [sym_internal_module] = STATE(1211), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -41789,84 +40030,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [310] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1417), - [sym_yield_expression] = STATE(1417), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1417), - [sym_jsx_fragment] = STATE(1417), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1417), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1417), - [sym_await_expression] = STATE(1417), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1417), - [sym_augmented_assignment_expression] = STATE(1417), - [sym_ternary_expression] = STATE(1417), - [sym_binary_expression] = STATE(1417), - [sym_unary_expression] = STATE(1417), - [sym_update_expression] = STATE(1417), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [288] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1302), + [sym_yield_expression] = STATE(1302), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1302), + [sym_jsx_fragment] = STATE(1302), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1302), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1302), + [sym_await_expression] = STATE(1302), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1302), + [sym_augmented_assignment_expression] = STATE(1302), + [sym_ternary_expression] = STATE(1302), + [sym_binary_expression] = STATE(1302), + [sym_unary_expression] = STATE(1302), + [sym_update_expression] = STATE(1302), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1417), - [sym_as_expression] = STATE(1417), - [sym_internal_module] = STATE(1417), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1302), + [sym_as_expression] = STATE(1302), + [sym_internal_module] = STATE(1302), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -41879,89 +40120,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [311] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1188), - [sym_yield_expression] = STATE(1188), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1188), - [sym_jsx_fragment] = STATE(1188), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1188), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1188), - [sym_await_expression] = STATE(1188), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1188), - [sym_augmented_assignment_expression] = STATE(1188), - [sym_ternary_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_unary_expression] = STATE(1188), - [sym_update_expression] = STATE(1188), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [289] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1474), + [sym_yield_expression] = STATE(1474), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1474), + [sym_jsx_fragment] = STATE(1474), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1474), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1474), + [sym_await_expression] = STATE(1474), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1474), + [sym_augmented_assignment_expression] = STATE(1474), + [sym_ternary_expression] = STATE(1474), + [sym_binary_expression] = STATE(1474), + [sym_unary_expression] = STATE(1474), + [sym_update_expression] = STATE(1474), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1188), - [sym_as_expression] = STATE(1188), - [sym_internal_module] = STATE(1188), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1474), + [sym_as_expression] = STATE(1474), + [sym_internal_module] = STATE(1474), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1393), + [sym_number] = ACTIONS(579), [sym_this] = ACTIONS(511), [sym_super] = ACTIONS(511), [sym_true] = ACTIONS(511), @@ -41969,84 +40210,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [312] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1492), - [sym_yield_expression] = STATE(1492), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1492), - [sym_jsx_fragment] = STATE(1492), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1492), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1492), - [sym_await_expression] = STATE(1492), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1492), - [sym_augmented_assignment_expression] = STATE(1492), - [sym_ternary_expression] = STATE(1492), - [sym_binary_expression] = STATE(1492), - [sym_unary_expression] = STATE(1492), - [sym_update_expression] = STATE(1492), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [290] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1281), + [sym_yield_expression] = STATE(1281), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1281), + [sym_jsx_fragment] = STATE(1281), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1281), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1281), + [sym_await_expression] = STATE(1281), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1281), + [sym_augmented_assignment_expression] = STATE(1281), + [sym_ternary_expression] = STATE(1281), + [sym_binary_expression] = STATE(1281), + [sym_unary_expression] = STATE(1281), + [sym_update_expression] = STATE(1281), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1492), - [sym_as_expression] = STATE(1492), - [sym_internal_module] = STATE(1492), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1281), + [sym_as_expression] = STATE(1281), + [sym_internal_module] = STATE(1281), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -42059,329 +40300,149 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [313] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1127), - [sym_yield_expression] = STATE(1127), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1127), - [sym_jsx_fragment] = STATE(1127), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1127), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1127), - [sym_await_expression] = STATE(1127), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1127), - [sym_augmented_assignment_expression] = STATE(1127), - [sym_ternary_expression] = STATE(1127), - [sym_binary_expression] = STATE(1127), - [sym_unary_expression] = STATE(1127), - [sym_update_expression] = STATE(1127), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [291] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(833), + [sym__expression] = STATE(1642), + [sym_yield_expression] = STATE(1642), + [sym_object] = STATE(1710), + [sym_array] = STATE(1709), + [sym_jsx_element] = STATE(1642), + [sym_jsx_fragment] = STATE(1642), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1642), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1642), + [sym_await_expression] = STATE(1642), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(1642), + [sym_augmented_assignment_expression] = STATE(1642), + [sym_ternary_expression] = STATE(1642), + [sym_binary_expression] = STATE(1642), + [sym_unary_expression] = STATE(1642), + [sym_update_expression] = STATE(1642), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1127), - [sym_as_expression] = STATE(1127), - [sym_internal_module] = STATE(1127), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), - }, - [314] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1102), - [sym_yield_expression] = STATE(1102), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1102), - [sym_jsx_fragment] = STATE(1102), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1102), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1102), - [sym_await_expression] = STATE(1102), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1102), - [sym_augmented_assignment_expression] = STATE(1102), - [sym_ternary_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_unary_expression] = STATE(1102), - [sym_update_expression] = STATE(1102), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1102), - [sym_as_expression] = STATE(1102), - [sym_internal_module] = STATE(1102), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), - }, - [315] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1126), - [sym_yield_expression] = STATE(1126), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1126), - [sym_jsx_fragment] = STATE(1126), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1126), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1126), - [sym_await_expression] = STATE(1126), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1126), - [sym_augmented_assignment_expression] = STATE(1126), - [sym_ternary_expression] = STATE(1126), - [sym_binary_expression] = STATE(1126), - [sym_unary_expression] = STATE(1126), - [sym_update_expression] = STATE(1126), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1126), - [sym_as_expression] = STATE(1126), - [sym_internal_module] = STATE(1126), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1642), + [sym_as_expression] = STATE(1642), + [sym_internal_module] = STATE(1642), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1395), + [anon_sym_export] = ACTIONS(1336), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_get] = ACTIONS(1336), + [anon_sym_set] = ACTIONS(1336), + [anon_sym_declare] = ACTIONS(1336), + [anon_sym_public] = ACTIONS(1336), + [anon_sym_private] = ACTIONS(1336), + [anon_sym_protected] = ACTIONS(1336), + [anon_sym_module] = ACTIONS(1336), + [anon_sym_any] = ACTIONS(1336), + [anon_sym_number] = ACTIONS(1336), + [anon_sym_boolean] = ACTIONS(1336), + [anon_sym_string] = ACTIONS(1336), + [anon_sym_symbol] = ACTIONS(1336), + [sym_readonly] = ACTIONS(1336), }, - [316] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1001), - [sym_yield_expression] = STATE(1001), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1001), - [sym_jsx_fragment] = STATE(1001), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1001), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1001), - [sym_await_expression] = STATE(1001), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1001), - [sym_augmented_assignment_expression] = STATE(1001), - [sym_ternary_expression] = STATE(1001), - [sym_binary_expression] = STATE(1001), - [sym_unary_expression] = STATE(1001), - [sym_update_expression] = STATE(1001), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [292] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1283), + [sym_yield_expression] = STATE(1283), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1283), + [sym_jsx_fragment] = STATE(1283), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1283), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1283), + [sym_await_expression] = STATE(1283), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1283), + [sym_augmented_assignment_expression] = STATE(1283), + [sym_ternary_expression] = STATE(1283), + [sym_binary_expression] = STATE(1283), + [sym_unary_expression] = STATE(1283), + [sym_update_expression] = STATE(1283), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1001), - [sym_as_expression] = STATE(1001), - [sym_internal_module] = STATE(1001), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1283), + [sym_as_expression] = STATE(1283), + [sym_internal_module] = STATE(1283), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -42434,69 +40495,249 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [317] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1206), - [sym_yield_expression] = STATE(1206), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1206), - [sym_jsx_fragment] = STATE(1206), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1206), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1206), - [sym_await_expression] = STATE(1206), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1206), - [sym_augmented_assignment_expression] = STATE(1206), - [sym_ternary_expression] = STATE(1206), - [sym_binary_expression] = STATE(1206), - [sym_unary_expression] = STATE(1206), - [sym_update_expression] = STATE(1206), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [293] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1188), + [sym_yield_expression] = STATE(1188), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1188), + [sym_jsx_fragment] = STATE(1188), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1188), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1188), + [sym_await_expression] = STATE(1188), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1188), + [sym_augmented_assignment_expression] = STATE(1188), + [sym_ternary_expression] = STATE(1188), + [sym_binary_expression] = STATE(1188), + [sym_unary_expression] = STATE(1188), + [sym_update_expression] = STATE(1188), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1206), - [sym_as_expression] = STATE(1206), - [sym_internal_module] = STATE(1206), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1188), + [sym_as_expression] = STATE(1188), + [sym_internal_module] = STATE(1188), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(1397), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [294] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1395), + [sym_yield_expression] = STATE(1395), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1395), + [sym_jsx_fragment] = STATE(1395), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1395), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1395), + [sym_await_expression] = STATE(1395), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1395), + [sym_augmented_assignment_expression] = STATE(1395), + [sym_ternary_expression] = STATE(1395), + [sym_binary_expression] = STATE(1395), + [sym_unary_expression] = STATE(1395), + [sym_update_expression] = STATE(1395), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1395), + [sym_as_expression] = STATE(1395), + [sym_internal_module] = STATE(1395), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(787), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), + }, + [295] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1311), + [sym_yield_expression] = STATE(1311), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1311), + [sym_jsx_fragment] = STATE(1311), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1311), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1311), + [sym_await_expression] = STATE(1311), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1311), + [sym_augmented_assignment_expression] = STATE(1311), + [sym_ternary_expression] = STATE(1311), + [sym_binary_expression] = STATE(1311), + [sym_unary_expression] = STATE(1311), + [sym_update_expression] = STATE(1311), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1311), + [sym_as_expression] = STATE(1311), + [sym_internal_module] = STATE(1311), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -42509,59 +40750,239 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [318] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1354), - [sym_yield_expression] = STATE(1354), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1354), - [sym_jsx_fragment] = STATE(1354), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1354), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1354), - [sym_await_expression] = STATE(1354), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1354), - [sym_augmented_assignment_expression] = STATE(1354), - [sym_ternary_expression] = STATE(1354), - [sym_binary_expression] = STATE(1354), - [sym_unary_expression] = STATE(1354), - [sym_update_expression] = STATE(1354), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [296] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1209), + [sym_yield_expression] = STATE(1209), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1209), + [sym_jsx_fragment] = STATE(1209), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1209), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1209), + [sym_await_expression] = STATE(1209), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1209), + [sym_augmented_assignment_expression] = STATE(1209), + [sym_ternary_expression] = STATE(1209), + [sym_binary_expression] = STATE(1209), + [sym_unary_expression] = STATE(1209), + [sym_update_expression] = STATE(1209), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1209), + [sym_as_expression] = STATE(1209), + [sym_internal_module] = STATE(1209), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), + }, + [297] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1303), + [sym_yield_expression] = STATE(1303), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1303), + [sym_jsx_fragment] = STATE(1303), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1303), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1303), + [sym_await_expression] = STATE(1303), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1303), + [sym_augmented_assignment_expression] = STATE(1303), + [sym_ternary_expression] = STATE(1303), + [sym_binary_expression] = STATE(1303), + [sym_unary_expression] = STATE(1303), + [sym_update_expression] = STATE(1303), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1303), + [sym_as_expression] = STATE(1303), + [sym_internal_module] = STATE(1303), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), + }, + [298] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(982), + [sym_yield_expression] = STATE(982), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(982), + [sym_jsx_fragment] = STATE(982), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(982), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(982), + [sym_await_expression] = STATE(982), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(982), + [sym_augmented_assignment_expression] = STATE(982), + [sym_ternary_expression] = STATE(982), + [sym_binary_expression] = STATE(982), + [sym_unary_expression] = STATE(982), + [sym_update_expression] = STATE(982), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1354), - [sym_as_expression] = STATE(1354), - [sym_internal_module] = STATE(1354), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(982), + [sym_as_expression] = STATE(982), + [sym_internal_module] = STATE(982), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -42614,44 +41035,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [319] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), + [299] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), [sym__expression] = STATE(1000), [sym_yield_expression] = STATE(1000), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), [sym_jsx_element] = STATE(1000), [sym_jsx_fragment] = STATE(1000), - [sym_jsx_opening_element] = STATE(2064), + [sym_jsx_opening_element] = STATE(2056), [sym_jsx_self_closing_element] = STATE(1000), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), [sym_new_expression] = STATE(1000), [sym_await_expression] = STATE(1000), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), [sym_assignment_expression] = STATE(1000), [sym_augmented_assignment_expression] = STATE(1000), [sym_ternary_expression] = STATE(1000), [sym_binary_expression] = STATE(1000), [sym_unary_expression] = STATE(1000), [sym_update_expression] = STATE(1000), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), + [sym_formal_parameters] = STATE(2340), [sym_non_null_expression] = STATE(1000), [sym_as_expression] = STATE(1000), [sym_internal_module] = STATE(1000), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -42704,69 +41125,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [320] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1446), - [sym_yield_expression] = STATE(1446), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1446), - [sym_jsx_fragment] = STATE(1446), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1446), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1446), - [sym_await_expression] = STATE(1446), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1446), - [sym_augmented_assignment_expression] = STATE(1446), - [sym_ternary_expression] = STATE(1446), - [sym_binary_expression] = STATE(1446), - [sym_unary_expression] = STATE(1446), - [sym_update_expression] = STATE(1446), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [300] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1090), + [sym_yield_expression] = STATE(1090), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1090), + [sym_jsx_fragment] = STATE(1090), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1090), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1090), + [sym_await_expression] = STATE(1090), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1090), + [sym_augmented_assignment_expression] = STATE(1090), + [sym_ternary_expression] = STATE(1090), + [sym_binary_expression] = STATE(1090), + [sym_unary_expression] = STATE(1090), + [sym_update_expression] = STATE(1090), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1446), - [sym_as_expression] = STATE(1446), - [sym_internal_module] = STATE(1446), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1090), + [sym_as_expression] = STATE(1090), + [sym_internal_module] = STATE(1090), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [301] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1504), + [sym_jsx_fragment] = STATE(1504), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1504), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1504), + [sym_augmented_assignment_expression] = STATE(1504), + [sym_ternary_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_unary_expression] = STATE(1504), + [sym_update_expression] = STATE(1504), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1504), + [sym_as_expression] = STATE(1504), + [sym_internal_module] = STATE(1504), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -42779,174 +41290,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [321] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1222), - [sym_yield_expression] = STATE(1222), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1222), - [sym_jsx_fragment] = STATE(1222), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1222), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1222), - [sym_await_expression] = STATE(1222), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1222), - [sym_augmented_assignment_expression] = STATE(1222), - [sym_ternary_expression] = STATE(1222), - [sym_binary_expression] = STATE(1222), - [sym_unary_expression] = STATE(1222), - [sym_update_expression] = STATE(1222), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [302] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1097), + [sym_yield_expression] = STATE(1097), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1097), + [sym_jsx_fragment] = STATE(1097), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1097), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1097), + [sym_await_expression] = STATE(1097), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1097), + [sym_augmented_assignment_expression] = STATE(1097), + [sym_ternary_expression] = STATE(1097), + [sym_binary_expression] = STATE(1097), + [sym_unary_expression] = STATE(1097), + [sym_update_expression] = STATE(1097), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1222), - [sym_as_expression] = STATE(1222), - [sym_internal_module] = STATE(1222), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1097), + [sym_as_expression] = STATE(1097), + [sym_internal_module] = STATE(1097), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), - }, - [322] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1208), - [sym_yield_expression] = STATE(1208), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1208), - [sym_jsx_fragment] = STATE(1208), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1208), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1208), - [sym_await_expression] = STATE(1208), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1208), - [sym_augmented_assignment_expression] = STATE(1208), - [sym_ternary_expression] = STATE(1208), - [sym_binary_expression] = STATE(1208), - [sym_unary_expression] = STATE(1208), - [sym_update_expression] = STATE(1208), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1208), - [sym_as_expression] = STATE(1208), - [sym_internal_module] = STATE(1208), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -42959,84 +41380,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [323] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1197), - [sym_yield_expression] = STATE(1197), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1197), - [sym_jsx_fragment] = STATE(1197), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1197), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1197), - [sym_await_expression] = STATE(1197), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1197), - [sym_augmented_assignment_expression] = STATE(1197), - [sym_ternary_expression] = STATE(1197), - [sym_binary_expression] = STATE(1197), - [sym_unary_expression] = STATE(1197), - [sym_update_expression] = STATE(1197), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [303] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1284), + [sym_yield_expression] = STATE(1284), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1284), + [sym_jsx_fragment] = STATE(1284), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1284), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1284), + [sym_await_expression] = STATE(1284), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1284), + [sym_augmented_assignment_expression] = STATE(1284), + [sym_ternary_expression] = STATE(1284), + [sym_binary_expression] = STATE(1284), + [sym_unary_expression] = STATE(1284), + [sym_update_expression] = STATE(1284), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1197), - [sym_as_expression] = STATE(1197), - [sym_internal_module] = STATE(1197), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1284), + [sym_as_expression] = STATE(1284), + [sym_internal_module] = STATE(1284), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -43049,174 +41470,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [324] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1209), - [sym_yield_expression] = STATE(1209), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1209), - [sym_jsx_fragment] = STATE(1209), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1209), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1209), - [sym_await_expression] = STATE(1209), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1209), - [sym_augmented_assignment_expression] = STATE(1209), - [sym_ternary_expression] = STATE(1209), - [sym_binary_expression] = STATE(1209), - [sym_unary_expression] = STATE(1209), - [sym_update_expression] = STATE(1209), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [304] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1164), + [sym_yield_expression] = STATE(1164), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1164), + [sym_jsx_fragment] = STATE(1164), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1164), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1164), + [sym_await_expression] = STATE(1164), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1164), + [sym_augmented_assignment_expression] = STATE(1164), + [sym_ternary_expression] = STATE(1164), + [sym_binary_expression] = STATE(1164), + [sym_unary_expression] = STATE(1164), + [sym_update_expression] = STATE(1164), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1209), - [sym_as_expression] = STATE(1209), - [sym_internal_module] = STATE(1209), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1164), + [sym_as_expression] = STATE(1164), + [sym_internal_module] = STATE(1164), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1393), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [325] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1369), - [sym_yield_expression] = STATE(1369), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1369), - [sym_jsx_fragment] = STATE(1369), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1369), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1369), - [sym_await_expression] = STATE(1369), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1369), - [sym_augmented_assignment_expression] = STATE(1369), - [sym_ternary_expression] = STATE(1369), - [sym_binary_expression] = STATE(1369), - [sym_unary_expression] = STATE(1369), - [sym_update_expression] = STATE(1369), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [305] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1171), + [sym_yield_expression] = STATE(1171), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1171), + [sym_jsx_fragment] = STATE(1171), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1171), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1171), + [sym_await_expression] = STATE(1171), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1171), + [sym_augmented_assignment_expression] = STATE(1171), + [sym_ternary_expression] = STATE(1171), + [sym_binary_expression] = STATE(1171), + [sym_unary_expression] = STATE(1171), + [sym_update_expression] = STATE(1171), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1369), - [sym_as_expression] = STATE(1369), - [sym_internal_module] = STATE(1369), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1171), + [sym_as_expression] = STATE(1171), + [sym_internal_module] = STATE(1171), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -43229,84 +41650,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [326] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1371), - [sym_yield_expression] = STATE(1371), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1371), - [sym_jsx_fragment] = STATE(1371), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1371), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1371), - [sym_await_expression] = STATE(1371), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1371), - [sym_augmented_assignment_expression] = STATE(1371), - [sym_ternary_expression] = STATE(1371), - [sym_binary_expression] = STATE(1371), - [sym_unary_expression] = STATE(1371), - [sym_update_expression] = STATE(1371), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [306] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1358), + [sym_yield_expression] = STATE(1358), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1358), + [sym_jsx_fragment] = STATE(1358), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1358), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1358), + [sym_await_expression] = STATE(1358), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1358), + [sym_augmented_assignment_expression] = STATE(1358), + [sym_ternary_expression] = STATE(1358), + [sym_binary_expression] = STATE(1358), + [sym_unary_expression] = STATE(1358), + [sym_update_expression] = STATE(1358), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1371), - [sym_as_expression] = STATE(1371), - [sym_internal_module] = STATE(1371), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1358), + [sym_as_expression] = STATE(1358), + [sym_internal_module] = STATE(1358), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -43319,84 +41740,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [327] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1376), - [sym_yield_expression] = STATE(1376), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1376), - [sym_jsx_fragment] = STATE(1376), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1376), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1376), - [sym_await_expression] = STATE(1376), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1376), - [sym_augmented_assignment_expression] = STATE(1376), - [sym_ternary_expression] = STATE(1376), - [sym_binary_expression] = STATE(1376), - [sym_unary_expression] = STATE(1376), - [sym_update_expression] = STATE(1376), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [307] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1175), + [sym_yield_expression] = STATE(1175), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1175), + [sym_jsx_fragment] = STATE(1175), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1175), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1175), + [sym_await_expression] = STATE(1175), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1175), + [sym_augmented_assignment_expression] = STATE(1175), + [sym_ternary_expression] = STATE(1175), + [sym_binary_expression] = STATE(1175), + [sym_unary_expression] = STATE(1175), + [sym_update_expression] = STATE(1175), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1376), - [sym_as_expression] = STATE(1376), - [sym_internal_module] = STATE(1376), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1175), + [sym_as_expression] = STATE(1175), + [sym_internal_module] = STATE(1175), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -43409,174 +41830,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [328] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1196), - [sym_yield_expression] = STATE(1196), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1196), - [sym_jsx_fragment] = STATE(1196), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1196), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1196), - [sym_await_expression] = STATE(1196), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1196), - [sym_augmented_assignment_expression] = STATE(1196), - [sym_ternary_expression] = STATE(1196), - [sym_binary_expression] = STATE(1196), - [sym_unary_expression] = STATE(1196), - [sym_update_expression] = STATE(1196), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [308] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1078), + [sym_yield_expression] = STATE(1078), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1078), + [sym_jsx_fragment] = STATE(1078), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1078), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1078), + [sym_await_expression] = STATE(1078), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1078), + [sym_augmented_assignment_expression] = STATE(1078), + [sym_ternary_expression] = STATE(1078), + [sym_binary_expression] = STATE(1078), + [sym_unary_expression] = STATE(1078), + [sym_update_expression] = STATE(1078), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1196), - [sym_as_expression] = STATE(1196), - [sym_internal_module] = STATE(1196), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1078), + [sym_internal_module] = STATE(1078), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(1391), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [329] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1378), - [sym_yield_expression] = STATE(1378), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1378), - [sym_jsx_fragment] = STATE(1378), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1378), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1378), - [sym_await_expression] = STATE(1378), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1378), - [sym_augmented_assignment_expression] = STATE(1378), - [sym_ternary_expression] = STATE(1378), - [sym_binary_expression] = STATE(1378), - [sym_unary_expression] = STATE(1378), - [sym_update_expression] = STATE(1378), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [309] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1359), + [sym_yield_expression] = STATE(1359), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1359), + [sym_jsx_fragment] = STATE(1359), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1359), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1359), + [sym_await_expression] = STATE(1359), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1359), + [sym_augmented_assignment_expression] = STATE(1359), + [sym_ternary_expression] = STATE(1359), + [sym_binary_expression] = STATE(1359), + [sym_unary_expression] = STATE(1359), + [sym_update_expression] = STATE(1359), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1378), - [sym_as_expression] = STATE(1378), - [sym_internal_module] = STATE(1378), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1359), + [sym_as_expression] = STATE(1359), + [sym_internal_module] = STATE(1359), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -43589,84 +42010,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [330] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1382), - [sym_yield_expression] = STATE(1382), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1382), - [sym_jsx_fragment] = STATE(1382), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1382), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1382), - [sym_await_expression] = STATE(1382), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1382), - [sym_augmented_assignment_expression] = STATE(1382), - [sym_ternary_expression] = STATE(1382), - [sym_binary_expression] = STATE(1382), - [sym_unary_expression] = STATE(1382), - [sym_update_expression] = STATE(1382), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [310] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1360), + [sym_yield_expression] = STATE(1360), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1360), + [sym_jsx_fragment] = STATE(1360), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1360), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1360), + [sym_await_expression] = STATE(1360), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1360), + [sym_augmented_assignment_expression] = STATE(1360), + [sym_ternary_expression] = STATE(1360), + [sym_binary_expression] = STATE(1360), + [sym_unary_expression] = STATE(1360), + [sym_update_expression] = STATE(1360), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1382), - [sym_as_expression] = STATE(1382), - [sym_internal_module] = STATE(1382), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1360), + [sym_as_expression] = STATE(1360), + [sym_internal_module] = STATE(1360), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -43679,84 +42100,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [331] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(995), - [sym_yield_expression] = STATE(995), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(995), - [sym_jsx_fragment] = STATE(995), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(995), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(995), - [sym_await_expression] = STATE(995), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(995), - [sym_augmented_assignment_expression] = STATE(995), - [sym_ternary_expression] = STATE(995), - [sym_binary_expression] = STATE(995), - [sym_unary_expression] = STATE(995), - [sym_update_expression] = STATE(995), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [311] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1364), + [sym_yield_expression] = STATE(1364), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1364), + [sym_jsx_fragment] = STATE(1364), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1364), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1364), + [sym_await_expression] = STATE(1364), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1364), + [sym_augmented_assignment_expression] = STATE(1364), + [sym_ternary_expression] = STATE(1364), + [sym_binary_expression] = STATE(1364), + [sym_unary_expression] = STATE(1364), + [sym_update_expression] = STATE(1364), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(995), - [sym_as_expression] = STATE(995), - [sym_internal_module] = STATE(995), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1364), + [sym_as_expression] = STATE(1364), + [sym_internal_module] = STATE(1364), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(787), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), + }, + [312] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1559), + [sym_yield_expression] = STATE(1559), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1559), + [sym_jsx_fragment] = STATE(1559), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1559), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1559), + [sym_await_expression] = STATE(1559), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1559), + [sym_augmented_assignment_expression] = STATE(1559), + [sym_ternary_expression] = STATE(1559), + [sym_binary_expression] = STATE(1559), + [sym_unary_expression] = STATE(1559), + [sym_update_expression] = STATE(1559), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1559), + [sym_as_expression] = STATE(1559), + [sym_internal_module] = STATE(1559), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -43769,58 +42280,148 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [332] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1104), - [sym_yield_expression] = STATE(1104), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1104), - [sym_jsx_fragment] = STATE(1104), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1104), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1104), - [sym_await_expression] = STATE(1104), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1104), - [sym_augmented_assignment_expression] = STATE(1104), - [sym_ternary_expression] = STATE(1104), - [sym_binary_expression] = STATE(1104), - [sym_unary_expression] = STATE(1104), - [sym_update_expression] = STATE(1104), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [313] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1366), + [sym_yield_expression] = STATE(1366), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1366), + [sym_jsx_fragment] = STATE(1366), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1366), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1366), + [sym_await_expression] = STATE(1366), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1366), + [sym_augmented_assignment_expression] = STATE(1366), + [sym_ternary_expression] = STATE(1366), + [sym_binary_expression] = STATE(1366), + [sym_unary_expression] = STATE(1366), + [sym_update_expression] = STATE(1366), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1366), + [sym_as_expression] = STATE(1366), + [sym_internal_module] = STATE(1366), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(787), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), + }, + [314] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1078), + [sym_yield_expression] = STATE(1078), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1078), + [sym_jsx_fragment] = STATE(1078), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1078), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1078), + [sym_await_expression] = STATE(1078), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1078), + [sym_augmented_assignment_expression] = STATE(1078), + [sym_ternary_expression] = STATE(1078), + [sym_binary_expression] = STATE(1078), + [sym_unary_expression] = STATE(1078), + [sym_update_expression] = STATE(1078), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1104), - [sym_as_expression] = STATE(1104), - [sym_internal_module] = STATE(1104), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1078), + [sym_as_expression] = STATE(1078), + [sym_internal_module] = STATE(1078), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -43874,69 +42475,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [333] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1383), - [sym_yield_expression] = STATE(1383), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1383), - [sym_jsx_fragment] = STATE(1383), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1383), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1383), - [sym_await_expression] = STATE(1383), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1383), - [sym_augmented_assignment_expression] = STATE(1383), - [sym_ternary_expression] = STATE(1383), - [sym_binary_expression] = STATE(1383), - [sym_unary_expression] = STATE(1383), - [sym_update_expression] = STATE(1383), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [315] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1368), + [sym_yield_expression] = STATE(1368), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1368), + [sym_jsx_fragment] = STATE(1368), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1368), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1368), + [sym_await_expression] = STATE(1368), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1368), + [sym_augmented_assignment_expression] = STATE(1368), + [sym_ternary_expression] = STATE(1368), + [sym_binary_expression] = STATE(1368), + [sym_unary_expression] = STATE(1368), + [sym_update_expression] = STATE(1368), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1383), - [sym_as_expression] = STATE(1383), - [sym_internal_module] = STATE(1383), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1368), + [sym_as_expression] = STATE(1368), + [sym_internal_module] = STATE(1368), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -43949,84 +42550,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [334] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1398), - [sym_yield_expression] = STATE(1398), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1398), - [sym_jsx_fragment] = STATE(1398), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1398), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1398), - [sym_await_expression] = STATE(1398), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1398), - [sym_augmented_assignment_expression] = STATE(1398), - [sym_ternary_expression] = STATE(1398), - [sym_binary_expression] = STATE(1398), - [sym_unary_expression] = STATE(1398), - [sym_update_expression] = STATE(1398), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [316] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1382), + [sym_yield_expression] = STATE(1382), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1382), + [sym_jsx_fragment] = STATE(1382), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1382), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1382), + [sym_await_expression] = STATE(1382), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1382), + [sym_augmented_assignment_expression] = STATE(1382), + [sym_ternary_expression] = STATE(1382), + [sym_binary_expression] = STATE(1382), + [sym_unary_expression] = STATE(1382), + [sym_update_expression] = STATE(1382), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1398), - [sym_as_expression] = STATE(1398), - [sym_internal_module] = STATE(1398), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1382), + [sym_as_expression] = STATE(1382), + [sym_internal_module] = STATE(1382), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -44039,84 +42640,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [335] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), + [317] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), [sym__expression] = STATE(1458), [sym_yield_expression] = STATE(1458), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), [sym_jsx_element] = STATE(1458), [sym_jsx_fragment] = STATE(1458), - [sym_jsx_opening_element] = STATE(2064), + [sym_jsx_opening_element] = STATE(2056), [sym_jsx_self_closing_element] = STATE(1458), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), [sym_new_expression] = STATE(1458), [sym_await_expression] = STATE(1458), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), [sym_assignment_expression] = STATE(1458), [sym_augmented_assignment_expression] = STATE(1458), [sym_ternary_expression] = STATE(1458), [sym_binary_expression] = STATE(1458), [sym_unary_expression] = STATE(1458), [sym_update_expression] = STATE(1458), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), + [sym_formal_parameters] = STATE(2340), [sym_non_null_expression] = STATE(1458), [sym_as_expression] = STATE(1458), [sym_internal_module] = STATE(1458), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -44129,84 +42730,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [336] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1031), - [sym_yield_expression] = STATE(1031), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1031), - [sym_jsx_fragment] = STATE(1031), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1031), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1031), - [sym_await_expression] = STATE(1031), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1031), - [sym_augmented_assignment_expression] = STATE(1031), - [sym_ternary_expression] = STATE(1031), - [sym_binary_expression] = STATE(1031), - [sym_unary_expression] = STATE(1031), - [sym_update_expression] = STATE(1031), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [318] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1385), + [sym_yield_expression] = STATE(1385), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1385), + [sym_jsx_fragment] = STATE(1385), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1385), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1385), + [sym_await_expression] = STATE(1385), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1385), + [sym_augmented_assignment_expression] = STATE(1385), + [sym_ternary_expression] = STATE(1385), + [sym_binary_expression] = STATE(1385), + [sym_unary_expression] = STATE(1385), + [sym_update_expression] = STATE(1385), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1031), - [sym_as_expression] = STATE(1031), - [sym_internal_module] = STATE(1031), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1385), + [sym_as_expression] = STATE(1385), + [sym_internal_module] = STATE(1385), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -44219,174 +42820,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), - }, - [337] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1195), - [sym_yield_expression] = STATE(1195), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1195), - [sym_jsx_fragment] = STATE(1195), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1195), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1195), - [sym_await_expression] = STATE(1195), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1195), - [sym_augmented_assignment_expression] = STATE(1195), - [sym_ternary_expression] = STATE(1195), - [sym_binary_expression] = STATE(1195), - [sym_unary_expression] = STATE(1195), - [sym_update_expression] = STATE(1195), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1195), - [sym_as_expression] = STATE(1195), - [sym_internal_module] = STATE(1195), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [338] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1410), - [sym_yield_expression] = STATE(1410), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1410), - [sym_jsx_fragment] = STATE(1410), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1410), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1410), - [sym_await_expression] = STATE(1410), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1410), - [sym_augmented_assignment_expression] = STATE(1410), - [sym_ternary_expression] = STATE(1410), - [sym_binary_expression] = STATE(1410), - [sym_unary_expression] = STATE(1410), - [sym_update_expression] = STATE(1410), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [319] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1388), + [sym_yield_expression] = STATE(1388), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1388), + [sym_jsx_fragment] = STATE(1388), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1388), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1388), + [sym_await_expression] = STATE(1388), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1388), + [sym_augmented_assignment_expression] = STATE(1388), + [sym_ternary_expression] = STATE(1388), + [sym_binary_expression] = STATE(1388), + [sym_unary_expression] = STATE(1388), + [sym_update_expression] = STATE(1388), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1410), - [sym_as_expression] = STATE(1410), - [sym_internal_module] = STATE(1410), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1388), + [sym_as_expression] = STATE(1388), + [sym_internal_module] = STATE(1388), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -44399,84 +42910,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [339] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1110), - [sym_yield_expression] = STATE(1110), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1110), - [sym_jsx_fragment] = STATE(1110), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1110), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1110), - [sym_await_expression] = STATE(1110), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1110), - [sym_augmented_assignment_expression] = STATE(1110), - [sym_ternary_expression] = STATE(1110), - [sym_binary_expression] = STATE(1110), - [sym_unary_expression] = STATE(1110), - [sym_update_expression] = STATE(1110), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [320] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1389), + [sym_yield_expression] = STATE(1389), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1389), + [sym_jsx_fragment] = STATE(1389), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1389), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1389), + [sym_await_expression] = STATE(1389), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1389), + [sym_augmented_assignment_expression] = STATE(1389), + [sym_ternary_expression] = STATE(1389), + [sym_binary_expression] = STATE(1389), + [sym_unary_expression] = STATE(1389), + [sym_update_expression] = STATE(1389), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1110), - [sym_as_expression] = STATE(1110), - [sym_internal_module] = STATE(1110), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1389), + [sym_as_expression] = STATE(1389), + [sym_internal_module] = STATE(1389), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -44489,84 +43000,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [340] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1330), - [sym_yield_expression] = STATE(1330), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1330), - [sym_jsx_fragment] = STATE(1330), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1330), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1330), - [sym_await_expression] = STATE(1330), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1330), - [sym_augmented_assignment_expression] = STATE(1330), - [sym_ternary_expression] = STATE(1330), - [sym_binary_expression] = STATE(1330), - [sym_unary_expression] = STATE(1330), - [sym_update_expression] = STATE(1330), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [321] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1286), + [sym_yield_expression] = STATE(1286), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1286), + [sym_jsx_fragment] = STATE(1286), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1286), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1286), + [sym_await_expression] = STATE(1286), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1286), + [sym_augmented_assignment_expression] = STATE(1286), + [sym_ternary_expression] = STATE(1286), + [sym_binary_expression] = STATE(1286), + [sym_unary_expression] = STATE(1286), + [sym_update_expression] = STATE(1286), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1330), - [sym_as_expression] = STATE(1330), - [sym_internal_module] = STATE(1330), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1286), + [sym_as_expression] = STATE(1286), + [sym_internal_module] = STATE(1286), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -44579,84 +43090,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [341] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1407), - [sym_yield_expression] = STATE(1407), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1407), - [sym_jsx_fragment] = STATE(1407), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1407), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1407), - [sym_await_expression] = STATE(1407), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1407), - [sym_augmented_assignment_expression] = STATE(1407), - [sym_ternary_expression] = STATE(1407), - [sym_binary_expression] = STATE(1407), - [sym_unary_expression] = STATE(1407), - [sym_update_expression] = STATE(1407), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [322] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1391), + [sym_yield_expression] = STATE(1391), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1391), + [sym_jsx_fragment] = STATE(1391), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1391), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1391), + [sym_await_expression] = STATE(1391), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1391), + [sym_augmented_assignment_expression] = STATE(1391), + [sym_ternary_expression] = STATE(1391), + [sym_binary_expression] = STATE(1391), + [sym_unary_expression] = STATE(1391), + [sym_update_expression] = STATE(1391), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1407), - [sym_as_expression] = STATE(1407), - [sym_internal_module] = STATE(1407), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1391), + [sym_as_expression] = STATE(1391), + [sym_internal_module] = STATE(1391), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -44669,149 +43180,239 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [342] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1403), - [sym_yield_expression] = STATE(1403), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1403), - [sym_jsx_fragment] = STATE(1403), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1403), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1403), - [sym_await_expression] = STATE(1403), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1403), - [sym_augmented_assignment_expression] = STATE(1403), - [sym_ternary_expression] = STATE(1403), - [sym_binary_expression] = STATE(1403), - [sym_unary_expression] = STATE(1403), - [sym_update_expression] = STATE(1403), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [323] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1287), + [sym_yield_expression] = STATE(1287), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1287), + [sym_jsx_fragment] = STATE(1287), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1287), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1287), + [sym_await_expression] = STATE(1287), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1287), + [sym_augmented_assignment_expression] = STATE(1287), + [sym_ternary_expression] = STATE(1287), + [sym_binary_expression] = STATE(1287), + [sym_unary_expression] = STATE(1287), + [sym_update_expression] = STATE(1287), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1403), - [sym_as_expression] = STATE(1403), - [sym_internal_module] = STATE(1403), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1287), + [sym_as_expression] = STATE(1287), + [sym_internal_module] = STATE(1287), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [343] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1355), - [sym_yield_expression] = STATE(1355), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1355), - [sym_jsx_fragment] = STATE(1355), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1355), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1355), - [sym_await_expression] = STATE(1355), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1355), - [sym_augmented_assignment_expression] = STATE(1355), - [sym_ternary_expression] = STATE(1355), - [sym_binary_expression] = STATE(1355), - [sym_unary_expression] = STATE(1355), - [sym_update_expression] = STATE(1355), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [324] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1250), + [sym_yield_expression] = STATE(1250), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1250), + [sym_jsx_fragment] = STATE(1250), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1250), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1250), + [sym_await_expression] = STATE(1250), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1250), + [sym_augmented_assignment_expression] = STATE(1250), + [sym_ternary_expression] = STATE(1250), + [sym_binary_expression] = STATE(1250), + [sym_unary_expression] = STATE(1250), + [sym_update_expression] = STATE(1250), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1250), + [sym_as_expression] = STATE(1250), + [sym_internal_module] = STATE(1250), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [325] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(999), + [sym_yield_expression] = STATE(999), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(999), + [sym_jsx_fragment] = STATE(999), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(999), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(999), + [sym_await_expression] = STATE(999), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(999), + [sym_augmented_assignment_expression] = STATE(999), + [sym_ternary_expression] = STATE(999), + [sym_binary_expression] = STATE(999), + [sym_unary_expression] = STATE(999), + [sym_update_expression] = STATE(999), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1355), - [sym_as_expression] = STATE(1355), - [sym_internal_module] = STATE(1355), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(999), + [sym_as_expression] = STATE(999), + [sym_internal_module] = STATE(999), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -44864,44 +43465,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [344] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1014), - [sym_yield_expression] = STATE(1014), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1014), - [sym_jsx_fragment] = STATE(1014), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1014), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1014), - [sym_await_expression] = STATE(1014), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1014), - [sym_augmented_assignment_expression] = STATE(1014), - [sym_ternary_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_unary_expression] = STATE(1014), - [sym_update_expression] = STATE(1014), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [326] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(998), + [sym_yield_expression] = STATE(998), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(998), + [sym_jsx_fragment] = STATE(998), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(998), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(998), + [sym_await_expression] = STATE(998), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(998), + [sym_augmented_assignment_expression] = STATE(998), + [sym_ternary_expression] = STATE(998), + [sym_binary_expression] = STATE(998), + [sym_unary_expression] = STATE(998), + [sym_update_expression] = STATE(998), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1014), - [sym_as_expression] = STATE(1014), - [sym_internal_module] = STATE(1014), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(998), + [sym_as_expression] = STATE(998), + [sym_internal_module] = STATE(998), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -44931,7 +43532,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1395), + [sym_number] = ACTIONS(579), [sym_this] = ACTIONS(511), [sym_super] = ACTIONS(511), [sym_true] = ACTIONS(511), @@ -44954,134 +43555,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [345] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1405), - [sym_yield_expression] = STATE(1405), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1405), - [sym_jsx_fragment] = STATE(1405), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1405), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1405), - [sym_await_expression] = STATE(1405), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1405), - [sym_augmented_assignment_expression] = STATE(1405), - [sym_ternary_expression] = STATE(1405), - [sym_binary_expression] = STATE(1405), - [sym_unary_expression] = STATE(1405), - [sym_update_expression] = STATE(1405), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1405), - [sym_as_expression] = STATE(1405), - [sym_internal_module] = STATE(1405), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), - }, - [346] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1356), - [sym_yield_expression] = STATE(1356), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1356), - [sym_jsx_fragment] = STATE(1356), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1356), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1356), - [sym_await_expression] = STATE(1356), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1356), - [sym_augmented_assignment_expression] = STATE(1356), - [sym_ternary_expression] = STATE(1356), - [sym_binary_expression] = STATE(1356), - [sym_unary_expression] = STATE(1356), - [sym_update_expression] = STATE(1356), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [327] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(997), + [sym_yield_expression] = STATE(997), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(997), + [sym_jsx_fragment] = STATE(997), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(997), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(997), + [sym_await_expression] = STATE(997), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(997), + [sym_augmented_assignment_expression] = STATE(997), + [sym_ternary_expression] = STATE(997), + [sym_binary_expression] = STATE(997), + [sym_unary_expression] = STATE(997), + [sym_update_expression] = STATE(997), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1356), - [sym_as_expression] = STATE(1356), - [sym_internal_module] = STATE(1356), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(997), + [sym_as_expression] = STATE(997), + [sym_internal_module] = STATE(997), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -45134,69 +43645,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [347] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1511), - [sym_yield_expression] = STATE(1511), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1511), - [sym_jsx_fragment] = STATE(1511), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1511), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1511), - [sym_await_expression] = STATE(1511), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1511), - [sym_augmented_assignment_expression] = STATE(1511), - [sym_ternary_expression] = STATE(1511), - [sym_binary_expression] = STATE(1511), - [sym_unary_expression] = STATE(1511), - [sym_update_expression] = STATE(1511), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [328] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1288), + [sym_yield_expression] = STATE(1288), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1288), + [sym_jsx_fragment] = STATE(1288), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1288), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1288), + [sym_await_expression] = STATE(1288), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1288), + [sym_augmented_assignment_expression] = STATE(1288), + [sym_ternary_expression] = STATE(1288), + [sym_binary_expression] = STATE(1288), + [sym_unary_expression] = STATE(1288), + [sym_update_expression] = STATE(1288), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1511), - [sym_as_expression] = STATE(1511), - [sym_internal_module] = STATE(1511), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1288), + [sym_as_expression] = STATE(1288), + [sym_internal_module] = STATE(1288), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -45209,84 +43720,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [348] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1298), - [sym_yield_expression] = STATE(1298), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1298), - [sym_jsx_fragment] = STATE(1298), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1298), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1298), - [sym_await_expression] = STATE(1298), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1298), - [sym_augmented_assignment_expression] = STATE(1298), - [sym_ternary_expression] = STATE(1298), - [sym_binary_expression] = STATE(1298), - [sym_unary_expression] = STATE(1298), - [sym_update_expression] = STATE(1298), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [329] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1315), + [sym_yield_expression] = STATE(1315), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1315), + [sym_jsx_fragment] = STATE(1315), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1315), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1315), + [sym_await_expression] = STATE(1315), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1315), + [sym_augmented_assignment_expression] = STATE(1315), + [sym_ternary_expression] = STATE(1315), + [sym_binary_expression] = STATE(1315), + [sym_unary_expression] = STATE(1315), + [sym_update_expression] = STATE(1315), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1298), - [sym_as_expression] = STATE(1298), - [sym_internal_module] = STATE(1298), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1315), + [sym_as_expression] = STATE(1315), + [sym_internal_module] = STATE(1315), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(787), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), + }, + [330] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1289), + [sym_yield_expression] = STATE(1289), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1289), + [sym_jsx_fragment] = STATE(1289), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1289), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1289), + [sym_await_expression] = STATE(1289), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1289), + [sym_augmented_assignment_expression] = STATE(1289), + [sym_ternary_expression] = STATE(1289), + [sym_binary_expression] = STATE(1289), + [sym_unary_expression] = STATE(1289), + [sym_update_expression] = STATE(1289), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1289), + [sym_as_expression] = STATE(1289), + [sym_internal_module] = STATE(1289), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -45299,59 +43900,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [349] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(984), - [sym_yield_expression] = STATE(984), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(984), - [sym_jsx_fragment] = STATE(984), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(984), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(984), - [sym_await_expression] = STATE(984), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(984), - [sym_augmented_assignment_expression] = STATE(984), - [sym_ternary_expression] = STATE(984), - [sym_binary_expression] = STATE(984), - [sym_unary_expression] = STATE(984), - [sym_update_expression] = STATE(984), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [331] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(996), + [sym_yield_expression] = STATE(996), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(996), + [sym_jsx_fragment] = STATE(996), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(996), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(996), + [sym_await_expression] = STATE(996), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(996), + [sym_augmented_assignment_expression] = STATE(996), + [sym_ternary_expression] = STATE(996), + [sym_binary_expression] = STATE(996), + [sym_unary_expression] = STATE(996), + [sym_update_expression] = STATE(996), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(984), - [sym_as_expression] = STATE(984), - [sym_internal_module] = STATE(984), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(996), + [sym_as_expression] = STATE(996), + [sym_internal_module] = STATE(996), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -45404,44 +44005,134 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [350] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1005), - [sym_yield_expression] = STATE(1005), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1005), - [sym_jsx_fragment] = STATE(1005), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1005), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1005), - [sym_await_expression] = STATE(1005), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1005), - [sym_augmented_assignment_expression] = STATE(1005), - [sym_ternary_expression] = STATE(1005), - [sym_binary_expression] = STATE(1005), - [sym_unary_expression] = STATE(1005), - [sym_update_expression] = STATE(1005), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [332] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1046), + [sym_yield_expression] = STATE(1046), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1046), + [sym_jsx_fragment] = STATE(1046), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1046), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1046), + [sym_await_expression] = STATE(1046), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1046), + [sym_augmented_assignment_expression] = STATE(1046), + [sym_ternary_expression] = STATE(1046), + [sym_binary_expression] = STATE(1046), + [sym_unary_expression] = STATE(1046), + [sym_update_expression] = STATE(1046), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1005), - [sym_as_expression] = STATE(1005), - [sym_internal_module] = STATE(1005), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1046), + [sym_as_expression] = STATE(1046), + [sym_internal_module] = STATE(1046), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [333] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(995), + [sym_yield_expression] = STATE(995), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(995), + [sym_jsx_fragment] = STATE(995), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(995), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(995), + [sym_await_expression] = STATE(995), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(995), + [sym_augmented_assignment_expression] = STATE(995), + [sym_ternary_expression] = STATE(995), + [sym_binary_expression] = STATE(995), + [sym_unary_expression] = STATE(995), + [sym_update_expression] = STATE(995), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(995), + [sym_as_expression] = STATE(995), + [sym_internal_module] = STATE(995), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -45494,69 +44185,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [351] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1019), - [sym_yield_expression] = STATE(1019), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1019), - [sym_jsx_fragment] = STATE(1019), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1019), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1019), - [sym_await_expression] = STATE(1019), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(1019), - [sym_ternary_expression] = STATE(1019), - [sym_binary_expression] = STATE(1019), - [sym_unary_expression] = STATE(1019), - [sym_update_expression] = STATE(1019), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [334] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1207), + [sym_yield_expression] = STATE(1207), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1207), + [sym_jsx_fragment] = STATE(1207), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1207), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1207), + [sym_await_expression] = STATE(1207), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1207), + [sym_augmented_assignment_expression] = STATE(1207), + [sym_ternary_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_unary_expression] = STATE(1207), + [sym_update_expression] = STATE(1207), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1019), - [sym_as_expression] = STATE(1019), - [sym_internal_module] = STATE(1019), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1207), + [sym_as_expression] = STATE(1207), + [sym_internal_module] = STATE(1207), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), + }, + [335] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1290), + [sym_yield_expression] = STATE(1290), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1290), + [sym_jsx_fragment] = STATE(1290), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1290), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1290), + [sym_await_expression] = STATE(1290), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1290), + [sym_augmented_assignment_expression] = STATE(1290), + [sym_ternary_expression] = STATE(1290), + [sym_binary_expression] = STATE(1290), + [sym_unary_expression] = STATE(1290), + [sym_update_expression] = STATE(1290), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1290), + [sym_as_expression] = STATE(1290), + [sym_internal_module] = STATE(1290), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -45569,84 +44350,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [352] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1400), - [sym_yield_expression] = STATE(1400), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1400), - [sym_jsx_fragment] = STATE(1400), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1400), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1400), - [sym_await_expression] = STATE(1400), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1400), - [sym_augmented_assignment_expression] = STATE(1400), - [sym_ternary_expression] = STATE(1400), - [sym_binary_expression] = STATE(1400), - [sym_unary_expression] = STATE(1400), - [sym_update_expression] = STATE(1400), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [336] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1036), + [sym_yield_expression] = STATE(1036), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1036), + [sym_jsx_fragment] = STATE(1036), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1036), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1036), + [sym_await_expression] = STATE(1036), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(1036), + [sym_ternary_expression] = STATE(1036), + [sym_binary_expression] = STATE(1036), + [sym_unary_expression] = STATE(1036), + [sym_update_expression] = STATE(1036), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1400), - [sym_as_expression] = STATE(1400), - [sym_internal_module] = STATE(1400), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1036), + [sym_as_expression] = STATE(1036), + [sym_internal_module] = STATE(1036), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(599), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -45659,174 +44440,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), - }, - [353] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1085), - [sym_yield_expression] = STATE(1085), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1085), - [sym_jsx_fragment] = STATE(1085), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1085), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1085), - [sym_await_expression] = STATE(1085), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1085), - [sym_augmented_assignment_expression] = STATE(1085), - [sym_ternary_expression] = STATE(1085), - [sym_binary_expression] = STATE(1085), - [sym_unary_expression] = STATE(1085), - [sym_update_expression] = STATE(1085), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [337] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1407), + [sym_yield_expression] = STATE(1407), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1407), + [sym_jsx_fragment] = STATE(1407), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1407), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1407), + [sym_await_expression] = STATE(1407), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1407), + [sym_augmented_assignment_expression] = STATE(1407), + [sym_ternary_expression] = STATE(1407), + [sym_binary_expression] = STATE(1407), + [sym_unary_expression] = STATE(1407), + [sym_update_expression] = STATE(1407), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1085), - [sym_as_expression] = STATE(1085), - [sym_internal_module] = STATE(1085), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1397), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1407), + [sym_as_expression] = STATE(1407), + [sym_internal_module] = STATE(1407), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(787), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [354] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1319), - [sym_yield_expression] = STATE(1319), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1319), - [sym_jsx_fragment] = STATE(1319), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1319), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1319), - [sym_await_expression] = STATE(1319), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1319), - [sym_augmented_assignment_expression] = STATE(1319), - [sym_ternary_expression] = STATE(1319), - [sym_binary_expression] = STATE(1319), - [sym_unary_expression] = STATE(1319), - [sym_update_expression] = STATE(1319), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [338] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1394), + [sym_yield_expression] = STATE(1394), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1394), + [sym_jsx_fragment] = STATE(1394), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1394), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1394), + [sym_await_expression] = STATE(1394), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1394), + [sym_augmented_assignment_expression] = STATE(1394), + [sym_ternary_expression] = STATE(1394), + [sym_binary_expression] = STATE(1394), + [sym_unary_expression] = STATE(1394), + [sym_update_expression] = STATE(1394), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1319), - [sym_as_expression] = STATE(1319), - [sym_internal_module] = STATE(1319), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1394), + [sym_as_expression] = STATE(1394), + [sym_internal_module] = STATE(1394), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -45839,59 +44620,149 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [355] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1011), - [sym_yield_expression] = STATE(1011), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1011), - [sym_jsx_fragment] = STATE(1011), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1011), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1011), - [sym_await_expression] = STATE(1011), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1011), - [sym_augmented_assignment_expression] = STATE(1011), - [sym_ternary_expression] = STATE(1011), - [sym_binary_expression] = STATE(1011), - [sym_unary_expression] = STATE(1011), - [sym_update_expression] = STATE(1011), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [339] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1079), + [sym_yield_expression] = STATE(1079), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1079), + [sym_jsx_fragment] = STATE(1079), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1079), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1079), + [sym_await_expression] = STATE(1079), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1079), + [sym_augmented_assignment_expression] = STATE(1079), + [sym_ternary_expression] = STATE(1079), + [sym_binary_expression] = STATE(1079), + [sym_unary_expression] = STATE(1079), + [sym_update_expression] = STATE(1079), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1079), + [sym_as_expression] = STATE(1079), + [sym_internal_module] = STATE(1079), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [340] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1328), + [sym_yield_expression] = STATE(1328), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1328), + [sym_jsx_fragment] = STATE(1328), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1328), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1328), + [sym_await_expression] = STATE(1328), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1328), + [sym_augmented_assignment_expression] = STATE(1328), + [sym_ternary_expression] = STATE(1328), + [sym_binary_expression] = STATE(1328), + [sym_unary_expression] = STATE(1328), + [sym_update_expression] = STATE(1328), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1011), - [sym_as_expression] = STATE(1011), - [sym_internal_module] = STATE(1011), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1328), + [sym_as_expression] = STATE(1328), + [sym_internal_module] = STATE(1328), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -45944,69 +44815,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [356] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1024), - [sym_yield_expression] = STATE(1024), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1024), - [sym_jsx_fragment] = STATE(1024), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1024), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1024), - [sym_await_expression] = STATE(1024), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1024), - [sym_augmented_assignment_expression] = STATE(1024), - [sym_ternary_expression] = STATE(1024), - [sym_binary_expression] = STATE(1024), - [sym_unary_expression] = STATE(1024), - [sym_update_expression] = STATE(1024), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [341] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1291), + [sym_yield_expression] = STATE(1291), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1291), + [sym_jsx_fragment] = STATE(1291), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1291), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1291), + [sym_await_expression] = STATE(1291), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1291), + [sym_augmented_assignment_expression] = STATE(1291), + [sym_ternary_expression] = STATE(1291), + [sym_binary_expression] = STATE(1291), + [sym_unary_expression] = STATE(1291), + [sym_update_expression] = STATE(1291), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1024), - [sym_as_expression] = STATE(1024), - [sym_internal_module] = STATE(1024), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1291), + [sym_as_expression] = STATE(1291), + [sym_internal_module] = STATE(1291), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -46019,264 +44890,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), - }, - [357] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1113), - [sym_yield_expression] = STATE(1113), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1113), - [sym_jsx_fragment] = STATE(1113), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1113), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1113), - [sym_await_expression] = STATE(1113), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1113), - [sym_augmented_assignment_expression] = STATE(1113), - [sym_ternary_expression] = STATE(1113), - [sym_binary_expression] = STATE(1113), - [sym_unary_expression] = STATE(1113), - [sym_update_expression] = STATE(1113), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1113), - [sym_as_expression] = STATE(1113), - [sym_internal_module] = STATE(1113), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(1391), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [358] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1394), - [sym_yield_expression] = STATE(1394), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1394), - [sym_jsx_fragment] = STATE(1394), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1394), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1394), - [sym_await_expression] = STATE(1394), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1394), - [sym_augmented_assignment_expression] = STATE(1394), - [sym_ternary_expression] = STATE(1394), - [sym_binary_expression] = STATE(1394), - [sym_unary_expression] = STATE(1394), - [sym_update_expression] = STATE(1394), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [342] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1305), + [sym_yield_expression] = STATE(1305), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1305), + [sym_jsx_fragment] = STATE(1305), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1305), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1305), + [sym_await_expression] = STATE(1305), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1305), + [sym_augmented_assignment_expression] = STATE(1305), + [sym_ternary_expression] = STATE(1305), + [sym_binary_expression] = STATE(1305), + [sym_unary_expression] = STATE(1305), + [sym_update_expression] = STATE(1305), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1394), - [sym_as_expression] = STATE(1394), - [sym_internal_module] = STATE(1394), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1305), + [sym_as_expression] = STATE(1305), + [sym_internal_module] = STATE(1305), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(481), [anon_sym_new] = ACTIONS(859), [anon_sym_PLUS] = ACTIONS(861), [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [359] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1397), - [sym_yield_expression] = STATE(1397), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1397), - [sym_jsx_fragment] = STATE(1397), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1397), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1397), - [sym_await_expression] = STATE(1397), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1397), - [sym_augmented_assignment_expression] = STATE(1397), - [sym_ternary_expression] = STATE(1397), - [sym_binary_expression] = STATE(1397), - [sym_unary_expression] = STATE(1397), - [sym_update_expression] = STATE(1397), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [343] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1405), + [sym_yield_expression] = STATE(1405), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1405), + [sym_jsx_fragment] = STATE(1405), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1405), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1405), + [sym_await_expression] = STATE(1405), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1405), + [sym_augmented_assignment_expression] = STATE(1405), + [sym_ternary_expression] = STATE(1405), + [sym_binary_expression] = STATE(1405), + [sym_unary_expression] = STATE(1405), + [sym_update_expression] = STATE(1405), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1397), - [sym_as_expression] = STATE(1397), - [sym_internal_module] = STATE(1397), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1405), + [sym_as_expression] = STATE(1405), + [sym_internal_module] = STATE(1405), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -46289,149 +45070,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), - }, - [360] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1256), - [sym_yield_expression] = STATE(1256), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1256), - [sym_jsx_fragment] = STATE(1256), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1256), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1256), - [sym_await_expression] = STATE(1256), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1256), - [sym_augmented_assignment_expression] = STATE(1256), - [sym_ternary_expression] = STATE(1256), - [sym_binary_expression] = STATE(1256), - [sym_unary_expression] = STATE(1256), - [sym_update_expression] = STATE(1256), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1256), - [sym_as_expression] = STATE(1256), - [sym_internal_module] = STATE(1256), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [361] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1023), - [sym_yield_expression] = STATE(1023), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1023), - [sym_jsx_fragment] = STATE(1023), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1023), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1023), - [sym_await_expression] = STATE(1023), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(1023), - [sym_ternary_expression] = STATE(1023), - [sym_binary_expression] = STATE(1023), - [sym_unary_expression] = STATE(1023), - [sym_update_expression] = STATE(1023), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [344] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(994), + [sym_yield_expression] = STATE(994), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(994), + [sym_jsx_fragment] = STATE(994), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(994), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(994), + [sym_await_expression] = STATE(994), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(994), + [sym_augmented_assignment_expression] = STATE(994), + [sym_ternary_expression] = STATE(994), + [sym_binary_expression] = STATE(994), + [sym_unary_expression] = STATE(994), + [sym_update_expression] = STATE(994), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1023), - [sym_as_expression] = STATE(1023), - [sym_internal_module] = STATE(1023), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(994), + [sym_as_expression] = STATE(994), + [sym_internal_module] = STATE(994), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -46484,159 +45175,249 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [362] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1393), - [sym_yield_expression] = STATE(1393), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1393), - [sym_jsx_fragment] = STATE(1393), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1393), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1393), - [sym_await_expression] = STATE(1393), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1393), - [sym_augmented_assignment_expression] = STATE(1393), - [sym_ternary_expression] = STATE(1393), - [sym_binary_expression] = STATE(1393), - [sym_unary_expression] = STATE(1393), - [sym_update_expression] = STATE(1393), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [345] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1249), + [sym_yield_expression] = STATE(1249), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1249), + [sym_jsx_fragment] = STATE(1249), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1249), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1249), + [sym_await_expression] = STATE(1249), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1249), + [sym_augmented_assignment_expression] = STATE(1249), + [sym_ternary_expression] = STATE(1249), + [sym_binary_expression] = STATE(1249), + [sym_unary_expression] = STATE(1249), + [sym_update_expression] = STATE(1249), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1393), - [sym_as_expression] = STATE(1393), - [sym_internal_module] = STATE(1393), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1249), + [sym_as_expression] = STATE(1249), + [sym_internal_module] = STATE(1249), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, - [363] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1552), - [sym_yield_expression] = STATE(1552), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1552), - [sym_jsx_fragment] = STATE(1552), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1552), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1552), - [sym_await_expression] = STATE(1552), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1552), - [sym_augmented_assignment_expression] = STATE(1552), - [sym_ternary_expression] = STATE(1552), - [sym_binary_expression] = STATE(1552), - [sym_unary_expression] = STATE(1552), - [sym_update_expression] = STATE(1552), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [346] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1244), + [sym_yield_expression] = STATE(1244), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1244), + [sym_jsx_fragment] = STATE(1244), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1244), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1244), + [sym_await_expression] = STATE(1244), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1244), + [sym_augmented_assignment_expression] = STATE(1244), + [sym_ternary_expression] = STATE(1244), + [sym_binary_expression] = STATE(1244), + [sym_unary_expression] = STATE(1244), + [sym_update_expression] = STATE(1244), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1552), - [sym_as_expression] = STATE(1552), - [sym_internal_module] = STATE(1552), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1244), + [sym_as_expression] = STATE(1244), + [sym_internal_module] = STATE(1244), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [347] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1292), + [sym_yield_expression] = STATE(1292), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1292), + [sym_jsx_fragment] = STATE(1292), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1292), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1292), + [sym_await_expression] = STATE(1292), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1292), + [sym_augmented_assignment_expression] = STATE(1292), + [sym_ternary_expression] = STATE(1292), + [sym_binary_expression] = STATE(1292), + [sym_unary_expression] = STATE(1292), + [sym_update_expression] = STATE(1292), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1292), + [sym_as_expression] = STATE(1292), + [sym_internal_module] = STATE(1292), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -46649,59 +45430,599 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [364] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1021), - [sym_yield_expression] = STATE(1021), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1021), - [sym_jsx_fragment] = STATE(1021), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1021), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1021), - [sym_await_expression] = STATE(1021), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1021), - [sym_augmented_assignment_expression] = STATE(1021), - [sym_ternary_expression] = STATE(1021), - [sym_binary_expression] = STATE(1021), - [sym_unary_expression] = STATE(1021), - [sym_update_expression] = STATE(1021), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [348] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1243), + [sym_yield_expression] = STATE(1243), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1243), + [sym_jsx_fragment] = STATE(1243), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1243), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1243), + [sym_await_expression] = STATE(1243), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1243), + [sym_augmented_assignment_expression] = STATE(1243), + [sym_ternary_expression] = STATE(1243), + [sym_binary_expression] = STATE(1243), + [sym_unary_expression] = STATE(1243), + [sym_update_expression] = STATE(1243), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1243), + [sym_as_expression] = STATE(1243), + [sym_internal_module] = STATE(1243), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [349] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1242), + [sym_yield_expression] = STATE(1242), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1242), + [sym_jsx_fragment] = STATE(1242), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1242), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1242), + [sym_await_expression] = STATE(1242), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1242), + [sym_augmented_assignment_expression] = STATE(1242), + [sym_ternary_expression] = STATE(1242), + [sym_binary_expression] = STATE(1242), + [sym_unary_expression] = STATE(1242), + [sym_update_expression] = STATE(1242), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1242), + [sym_as_expression] = STATE(1242), + [sym_internal_module] = STATE(1242), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [350] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1238), + [sym_yield_expression] = STATE(1238), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1238), + [sym_jsx_fragment] = STATE(1238), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1238), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1238), + [sym_await_expression] = STATE(1238), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1238), + [sym_augmented_assignment_expression] = STATE(1238), + [sym_ternary_expression] = STATE(1238), + [sym_binary_expression] = STATE(1238), + [sym_unary_expression] = STATE(1238), + [sym_update_expression] = STATE(1238), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1238), + [sym_as_expression] = STATE(1238), + [sym_internal_module] = STATE(1238), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [351] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1293), + [sym_yield_expression] = STATE(1293), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1293), + [sym_jsx_fragment] = STATE(1293), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1293), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1293), + [sym_await_expression] = STATE(1293), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1293), + [sym_augmented_assignment_expression] = STATE(1293), + [sym_ternary_expression] = STATE(1293), + [sym_binary_expression] = STATE(1293), + [sym_unary_expression] = STATE(1293), + [sym_update_expression] = STATE(1293), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1293), + [sym_as_expression] = STATE(1293), + [sym_internal_module] = STATE(1293), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [352] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1235), + [sym_yield_expression] = STATE(1235), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1235), + [sym_jsx_fragment] = STATE(1235), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1235), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1235), + [sym_await_expression] = STATE(1235), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1235), + [sym_augmented_assignment_expression] = STATE(1235), + [sym_ternary_expression] = STATE(1235), + [sym_binary_expression] = STATE(1235), + [sym_unary_expression] = STATE(1235), + [sym_update_expression] = STATE(1235), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1235), + [sym_as_expression] = STATE(1235), + [sym_internal_module] = STATE(1235), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [353] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1294), + [sym_yield_expression] = STATE(1294), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1294), + [sym_jsx_fragment] = STATE(1294), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1294), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1294), + [sym_await_expression] = STATE(1294), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1294), + [sym_augmented_assignment_expression] = STATE(1294), + [sym_ternary_expression] = STATE(1294), + [sym_binary_expression] = STATE(1294), + [sym_unary_expression] = STATE(1294), + [sym_update_expression] = STATE(1294), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1294), + [sym_as_expression] = STATE(1294), + [sym_internal_module] = STATE(1294), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [354] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1006), + [sym_yield_expression] = STATE(1006), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1006), + [sym_jsx_fragment] = STATE(1006), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1006), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1006), + [sym_await_expression] = STATE(1006), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1006), + [sym_augmented_assignment_expression] = STATE(1006), + [sym_ternary_expression] = STATE(1006), + [sym_binary_expression] = STATE(1006), + [sym_unary_expression] = STATE(1006), + [sym_update_expression] = STATE(1006), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1021), - [sym_as_expression] = STATE(1021), - [sym_internal_module] = STATE(1021), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1006), + [sym_as_expression] = STATE(1006), + [sym_internal_module] = STATE(1006), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -46754,44 +46075,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [365] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1020), - [sym_yield_expression] = STATE(1020), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1020), - [sym_jsx_fragment] = STATE(1020), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1020), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1020), - [sym_await_expression] = STATE(1020), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1020), - [sym_augmented_assignment_expression] = STATE(1020), - [sym_ternary_expression] = STATE(1020), - [sym_binary_expression] = STATE(1020), - [sym_unary_expression] = STATE(1020), - [sym_update_expression] = STATE(1020), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [355] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1024), + [sym_yield_expression] = STATE(1024), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1024), + [sym_jsx_fragment] = STATE(1024), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1024), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1024), + [sym_await_expression] = STATE(1024), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1024), + [sym_augmented_assignment_expression] = STATE(1024), + [sym_ternary_expression] = STATE(1024), + [sym_binary_expression] = STATE(1024), + [sym_unary_expression] = STATE(1024), + [sym_update_expression] = STATE(1024), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1020), - [sym_as_expression] = STATE(1020), - [sym_internal_module] = STATE(1020), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1024), + [sym_as_expression] = STATE(1024), + [sym_internal_module] = STATE(1024), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -46844,44 +46165,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [366] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1018), - [sym_yield_expression] = STATE(1018), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1018), - [sym_jsx_fragment] = STATE(1018), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1018), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1018), - [sym_await_expression] = STATE(1018), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(1018), - [sym_ternary_expression] = STATE(1018), - [sym_binary_expression] = STATE(1018), - [sym_unary_expression] = STATE(1018), - [sym_update_expression] = STATE(1018), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [356] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1029), + [sym_yield_expression] = STATE(1029), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1029), + [sym_jsx_fragment] = STATE(1029), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1029), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1029), + [sym_await_expression] = STATE(1029), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1029), + [sym_augmented_assignment_expression] = STATE(1029), + [sym_ternary_expression] = STATE(1029), + [sym_binary_expression] = STATE(1029), + [sym_unary_expression] = STATE(1029), + [sym_update_expression] = STATE(1029), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1018), - [sym_as_expression] = STATE(1018), - [sym_internal_module] = STATE(1018), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1029), + [sym_as_expression] = STATE(1029), + [sym_internal_module] = STATE(1029), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -46934,229 +46255,769 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [367] = { - [sym_import] = STATE(1696), + [357] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1295), + [sym_yield_expression] = STATE(1295), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1295), + [sym_jsx_fragment] = STATE(1295), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1295), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1295), + [sym_await_expression] = STATE(1295), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1295), + [sym_augmented_assignment_expression] = STATE(1295), + [sym_ternary_expression] = STATE(1295), + [sym_binary_expression] = STATE(1295), + [sym_unary_expression] = STATE(1295), + [sym_update_expression] = STATE(1295), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1295), + [sym_as_expression] = STATE(1295), + [sym_internal_module] = STATE(1295), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [358] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1470), + [sym_yield_expression] = STATE(1470), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1470), + [sym_jsx_fragment] = STATE(1470), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1470), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1470), + [sym_await_expression] = STATE(1470), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1470), + [sym_augmented_assignment_expression] = STATE(1470), + [sym_ternary_expression] = STATE(1470), + [sym_binary_expression] = STATE(1470), + [sym_unary_expression] = STATE(1470), + [sym_update_expression] = STATE(1470), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1470), + [sym_as_expression] = STATE(1470), + [sym_internal_module] = STATE(1470), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [359] = { + [sym_import] = STATE(1088), [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1255), - [sym_yield_expression] = STATE(1255), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1255), - [sym_jsx_fragment] = STATE(1255), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1255), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1255), - [sym_await_expression] = STATE(1255), + [sym__expression] = STATE(1229), + [sym_yield_expression] = STATE(1229), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1229), + [sym_jsx_fragment] = STATE(1229), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1229), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1229), + [sym_await_expression] = STATE(1229), [sym_member_expression] = STATE(785), [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1255), - [sym_augmented_assignment_expression] = STATE(1255), - [sym_ternary_expression] = STATE(1255), - [sym_binary_expression] = STATE(1255), - [sym_unary_expression] = STATE(1255), - [sym_update_expression] = STATE(1255), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), + [sym_assignment_expression] = STATE(1229), + [sym_augmented_assignment_expression] = STATE(1229), + [sym_ternary_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_unary_expression] = STATE(1229), + [sym_update_expression] = STATE(1229), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1255), - [sym_as_expression] = STATE(1255), - [sym_internal_module] = STATE(1255), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1229), + [sym_as_expression] = STATE(1229), + [sym_internal_module] = STATE(1229), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [368] = { - [sym_import] = STATE(1696), + [360] = { + [sym_import] = STATE(1088), [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1253), - [sym_yield_expression] = STATE(1253), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1253), - [sym_jsx_fragment] = STATE(1253), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1253), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1253), - [sym_await_expression] = STATE(1253), + [sym__expression] = STATE(1226), + [sym_yield_expression] = STATE(1226), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1226), + [sym_jsx_fragment] = STATE(1226), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1226), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1226), + [sym_await_expression] = STATE(1226), [sym_member_expression] = STATE(785), [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1253), - [sym_augmented_assignment_expression] = STATE(1253), - [sym_ternary_expression] = STATE(1253), - [sym_binary_expression] = STATE(1253), - [sym_unary_expression] = STATE(1253), - [sym_update_expression] = STATE(1253), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), + [sym_assignment_expression] = STATE(1226), + [sym_augmented_assignment_expression] = STATE(1226), + [sym_ternary_expression] = STATE(1226), + [sym_binary_expression] = STATE(1226), + [sym_unary_expression] = STATE(1226), + [sym_update_expression] = STATE(1226), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1253), - [sym_as_expression] = STATE(1253), - [sym_internal_module] = STATE(1253), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1226), + [sym_as_expression] = STATE(1226), + [sym_internal_module] = STATE(1226), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [369] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1032), - [sym_yield_expression] = STATE(1032), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1032), - [sym_jsx_fragment] = STATE(1032), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1032), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1032), - [sym_await_expression] = STATE(1032), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1032), - [sym_augmented_assignment_expression] = STATE(1032), - [sym_ternary_expression] = STATE(1032), - [sym_binary_expression] = STATE(1032), - [sym_unary_expression] = STATE(1032), - [sym_update_expression] = STATE(1032), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1032), - [sym_as_expression] = STATE(1032), - [sym_internal_module] = STATE(1032), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), + [361] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1225), + [sym_yield_expression] = STATE(1225), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1225), + [sym_jsx_fragment] = STATE(1225), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1225), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1225), + [sym_await_expression] = STATE(1225), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1225), + [sym_augmented_assignment_expression] = STATE(1225), + [sym_ternary_expression] = STATE(1225), + [sym_binary_expression] = STATE(1225), + [sym_unary_expression] = STATE(1225), + [sym_update_expression] = STATE(1225), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1225), + [sym_as_expression] = STATE(1225), + [sym_internal_module] = STATE(1225), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [362] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(963), + [sym_yield_expression] = STATE(963), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(963), + [sym_jsx_fragment] = STATE(963), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(963), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(963), + [sym_await_expression] = STATE(963), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(963), + [sym_augmented_assignment_expression] = STATE(963), + [sym_ternary_expression] = STATE(963), + [sym_binary_expression] = STATE(963), + [sym_unary_expression] = STATE(963), + [sym_update_expression] = STATE(963), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(963), + [sym_as_expression] = STATE(963), + [sym_internal_module] = STATE(963), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [363] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1224), + [sym_yield_expression] = STATE(1224), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1224), + [sym_jsx_fragment] = STATE(1224), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1224), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1224), + [sym_await_expression] = STATE(1224), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1224), + [sym_augmented_assignment_expression] = STATE(1224), + [sym_ternary_expression] = STATE(1224), + [sym_binary_expression] = STATE(1224), + [sym_unary_expression] = STATE(1224), + [sym_update_expression] = STATE(1224), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1224), + [sym_as_expression] = STATE(1224), + [sym_internal_module] = STATE(1224), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [364] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1222), + [sym_yield_expression] = STATE(1222), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1222), + [sym_jsx_fragment] = STATE(1222), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1222), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1222), + [sym_await_expression] = STATE(1222), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1222), + [sym_augmented_assignment_expression] = STATE(1222), + [sym_ternary_expression] = STATE(1222), + [sym_binary_expression] = STATE(1222), + [sym_unary_expression] = STATE(1222), + [sym_update_expression] = STATE(1222), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1222), + [sym_as_expression] = STATE(1222), + [sym_internal_module] = STATE(1222), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [365] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1262), + [sym_yield_expression] = STATE(1262), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1262), + [sym_jsx_fragment] = STATE(1262), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1262), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1262), + [sym_await_expression] = STATE(1262), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1262), + [sym_augmented_assignment_expression] = STATE(1262), + [sym_ternary_expression] = STATE(1262), + [sym_binary_expression] = STATE(1262), + [sym_unary_expression] = STATE(1262), + [sym_update_expression] = STATE(1262), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1262), + [sym_as_expression] = STATE(1262), + [sym_internal_module] = STATE(1262), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(591), [anon_sym_BANG] = ACTIONS(29), @@ -47204,43 +47065,133 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [370] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1201), - [sym_yield_expression] = STATE(1201), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1201), - [sym_jsx_fragment] = STATE(1201), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1201), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1201), - [sym_await_expression] = STATE(1201), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1201), - [sym_augmented_assignment_expression] = STATE(1201), - [sym_ternary_expression] = STATE(1201), - [sym_binary_expression] = STATE(1201), - [sym_unary_expression] = STATE(1201), - [sym_update_expression] = STATE(1201), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [366] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1204), + [sym_yield_expression] = STATE(1204), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1204), + [sym_jsx_fragment] = STATE(1204), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1204), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1204), + [sym_await_expression] = STATE(1204), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1204), + [sym_augmented_assignment_expression] = STATE(1204), + [sym_ternary_expression] = STATE(1204), + [sym_binary_expression] = STATE(1204), + [sym_unary_expression] = STATE(1204), + [sym_update_expression] = STATE(1204), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1201), - [sym_as_expression] = STATE(1201), - [sym_internal_module] = STATE(1201), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1204), + [sym_as_expression] = STATE(1204), + [sym_internal_module] = STATE(1204), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), + }, + [367] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1265), + [sym_yield_expression] = STATE(1265), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1265), + [sym_jsx_fragment] = STATE(1265), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1265), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1265), + [sym_await_expression] = STATE(1265), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1265), + [sym_augmented_assignment_expression] = STATE(1265), + [sym_ternary_expression] = STATE(1265), + [sym_binary_expression] = STATE(1265), + [sym_unary_expression] = STATE(1265), + [sym_update_expression] = STATE(1265), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1265), + [sym_as_expression] = STATE(1265), + [sym_internal_module] = STATE(1265), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -47294,314 +47245,674 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [371] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1204), - [sym_yield_expression] = STATE(1204), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1204), - [sym_jsx_fragment] = STATE(1204), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1204), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1204), - [sym_await_expression] = STATE(1204), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1204), - [sym_augmented_assignment_expression] = STATE(1204), - [sym_ternary_expression] = STATE(1204), - [sym_binary_expression] = STATE(1204), - [sym_unary_expression] = STATE(1204), - [sym_update_expression] = STATE(1204), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [368] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1164), + [sym_yield_expression] = STATE(1164), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1164), + [sym_jsx_fragment] = STATE(1164), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1164), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1164), + [sym_await_expression] = STATE(1164), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1164), + [sym_augmented_assignment_expression] = STATE(1164), + [sym_ternary_expression] = STATE(1164), + [sym_binary_expression] = STATE(1164), + [sym_unary_expression] = STATE(1164), + [sym_update_expression] = STATE(1164), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1204), - [sym_as_expression] = STATE(1204), - [sym_internal_module] = STATE(1204), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1164), + [sym_as_expression] = STATE(1164), + [sym_internal_module] = STATE(1164), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1393), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), }, - [372] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1354), - [sym_yield_expression] = STATE(1354), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1354), - [sym_jsx_fragment] = STATE(1354), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1354), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1354), - [sym_await_expression] = STATE(1354), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1354), - [sym_augmented_assignment_expression] = STATE(1354), - [sym_ternary_expression] = STATE(1354), - [sym_binary_expression] = STATE(1354), - [sym_unary_expression] = STATE(1354), - [sym_update_expression] = STATE(1354), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1354), - [sym_as_expression] = STATE(1354), - [sym_internal_module] = STATE(1354), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(1399), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [369] = { + [sym__call_signature] = STATE(3149), + [sym_string] = STATE(2204), + [sym_formal_parameters] = STATE(2340), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [sym_type_parameters] = STATE(2923), + [aux_sym_object_repeat1] = STATE(2742), + [sym_identifier] = ACTIONS(1358), + [anon_sym_export] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_as] = ACTIONS(1133), + [anon_sym_namespace] = ACTIONS(1360), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_type] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_in] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1360), + [anon_sym_function] = ACTIONS(1377), + [anon_sym_EQ_GT] = ACTIONS(1154), + [anon_sym_QMARK_DOT] = ACTIONS(1156), + [anon_sym_PLUS_EQ] = ACTIONS(1158), + [anon_sym_DASH_EQ] = ACTIONS(1158), + [anon_sym_STAR_EQ] = ACTIONS(1158), + [anon_sym_SLASH_EQ] = ACTIONS(1158), + [anon_sym_PERCENT_EQ] = ACTIONS(1158), + [anon_sym_CARET_EQ] = ACTIONS(1158), + [anon_sym_AMP_EQ] = ACTIONS(1158), + [anon_sym_PIPE_EQ] = ACTIONS(1158), + [anon_sym_GT_GT_EQ] = ACTIONS(1158), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1158), + [anon_sym_LT_LT_EQ] = ACTIONS(1158), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1158), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), + [anon_sym_QMARK] = ACTIONS(1143), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_GT_GT_GT] = ACTIONS(1133), + [anon_sym_LT_LT] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_STAR_STAR] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(1119), + [anon_sym_EQ_EQ] = ACTIONS(1133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1119), + [anon_sym_BANG_EQ] = ACTIONS(1133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1119), + [anon_sym_GT_EQ] = ACTIONS(1119), + [anon_sym_QMARK_QMARK] = ACTIONS(1133), + [anon_sym_instanceof] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1381), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_BQUOTE] = ACTIONS(1119), + [sym_number] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_get] = ACTIONS(1385), + [anon_sym_set] = ACTIONS(1385), + [anon_sym_declare] = ACTIONS(1360), + [anon_sym_public] = ACTIONS(1360), + [anon_sym_private] = ACTIONS(1360), + [anon_sym_protected] = ACTIONS(1360), + [anon_sym_module] = ACTIONS(1360), + [anon_sym_any] = ACTIONS(1360), + [anon_sym_number] = ACTIONS(1360), + [anon_sym_boolean] = ACTIONS(1360), + [anon_sym_string] = ACTIONS(1360), + [anon_sym_symbol] = ACTIONS(1360), + [sym_readonly] = ACTIONS(1360), + [sym__automatic_semicolon] = ACTIONS(1119), }, - [373] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(968), - [sym_yield_expression] = STATE(968), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(968), - [sym_jsx_fragment] = STATE(968), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(968), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(968), - [sym_await_expression] = STATE(968), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(968), - [sym_augmented_assignment_expression] = STATE(968), - [sym_ternary_expression] = STATE(968), - [sym_binary_expression] = STATE(968), - [sym_unary_expression] = STATE(968), - [sym_update_expression] = STATE(968), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [370] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1254), + [sym_yield_expression] = STATE(1254), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1254), + [sym_jsx_fragment] = STATE(1254), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1254), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1254), + [sym_await_expression] = STATE(1254), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1254), + [sym_augmented_assignment_expression] = STATE(1254), + [sym_ternary_expression] = STATE(1254), + [sym_binary_expression] = STATE(1254), + [sym_unary_expression] = STATE(1254), + [sym_update_expression] = STATE(1254), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(968), - [sym_as_expression] = STATE(968), - [sym_internal_module] = STATE(968), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1254), + [sym_as_expression] = STATE(1254), + [sym_internal_module] = STATE(1254), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [371] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1266), + [sym_yield_expression] = STATE(1266), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1266), + [sym_jsx_fragment] = STATE(1266), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1266), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1266), + [sym_await_expression] = STATE(1266), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1266), + [sym_augmented_assignment_expression] = STATE(1266), + [sym_ternary_expression] = STATE(1266), + [sym_binary_expression] = STATE(1266), + [sym_unary_expression] = STATE(1266), + [sym_update_expression] = STATE(1266), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1266), + [sym_as_expression] = STATE(1266), + [sym_internal_module] = STATE(1266), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [372] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1167), + [sym_yield_expression] = STATE(1167), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1167), + [sym_jsx_fragment] = STATE(1167), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1167), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1167), + [sym_await_expression] = STATE(1167), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1167), + [sym_augmented_assignment_expression] = STATE(1167), + [sym_ternary_expression] = STATE(1167), + [sym_binary_expression] = STATE(1167), + [sym_unary_expression] = STATE(1167), + [sym_update_expression] = STATE(1167), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1167), + [sym_as_expression] = STATE(1167), + [sym_internal_module] = STATE(1167), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [373] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1311), + [sym_yield_expression] = STATE(1311), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1311), + [sym_jsx_fragment] = STATE(1311), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1311), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1311), + [sym_await_expression] = STATE(1311), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1311), + [sym_augmented_assignment_expression] = STATE(1311), + [sym_ternary_expression] = STATE(1311), + [sym_binary_expression] = STATE(1311), + [sym_unary_expression] = STATE(1311), + [sym_update_expression] = STATE(1311), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1311), + [sym_as_expression] = STATE(1311), + [sym_internal_module] = STATE(1311), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(693), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(699), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(701), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(1389), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, [374] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1008), - [sym_yield_expression] = STATE(1008), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1008), - [sym_jsx_fragment] = STATE(1008), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1008), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1008), - [sym_await_expression] = STATE(1008), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1008), - [sym_augmented_assignment_expression] = STATE(1008), - [sym_ternary_expression] = STATE(1008), - [sym_binary_expression] = STATE(1008), - [sym_unary_expression] = STATE(1008), - [sym_update_expression] = STATE(1008), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1217), + [sym_yield_expression] = STATE(1217), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1217), + [sym_jsx_fragment] = STATE(1217), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1217), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1217), + [sym_await_expression] = STATE(1217), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1217), + [sym_augmented_assignment_expression] = STATE(1217), + [sym_ternary_expression] = STATE(1217), + [sym_binary_expression] = STATE(1217), + [sym_unary_expression] = STATE(1217), + [sym_update_expression] = STATE(1217), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1008), - [sym_as_expression] = STATE(1008), - [sym_internal_module] = STATE(1008), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1217), + [sym_as_expression] = STATE(1217), + [sym_internal_module] = STATE(1217), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [375] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(992), + [sym_yield_expression] = STATE(992), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(992), + [sym_jsx_fragment] = STATE(992), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(992), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(992), + [sym_await_expression] = STATE(992), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(992), + [sym_augmented_assignment_expression] = STATE(992), + [sym_ternary_expression] = STATE(992), + [sym_binary_expression] = STATE(992), + [sym_unary_expression] = STATE(992), + [sym_update_expression] = STATE(992), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(992), + [sym_as_expression] = STATE(992), + [sym_internal_module] = STATE(992), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -47654,69 +47965,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [375] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1308), - [sym_yield_expression] = STATE(1308), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1308), - [sym_jsx_fragment] = STATE(1308), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1308), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1308), - [sym_await_expression] = STATE(1308), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1308), - [sym_augmented_assignment_expression] = STATE(1308), - [sym_ternary_expression] = STATE(1308), - [sym_binary_expression] = STATE(1308), - [sym_unary_expression] = STATE(1308), - [sym_update_expression] = STATE(1308), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [376] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1512), + [sym_yield_expression] = STATE(1512), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1512), + [sym_jsx_fragment] = STATE(1512), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1512), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1512), + [sym_await_expression] = STATE(1512), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1512), + [sym_augmented_assignment_expression] = STATE(1512), + [sym_ternary_expression] = STATE(1512), + [sym_binary_expression] = STATE(1512), + [sym_unary_expression] = STATE(1512), + [sym_update_expression] = STATE(1512), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1308), - [sym_as_expression] = STATE(1308), - [sym_internal_module] = STATE(1308), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1512), + [sym_as_expression] = STATE(1512), + [sym_internal_module] = STATE(1512), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -47729,59 +48040,149 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [376] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1006), - [sym_yield_expression] = STATE(1006), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1006), - [sym_jsx_fragment] = STATE(1006), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1006), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1006), - [sym_await_expression] = STATE(1006), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1006), - [sym_augmented_assignment_expression] = STATE(1006), - [sym_ternary_expression] = STATE(1006), - [sym_binary_expression] = STATE(1006), - [sym_unary_expression] = STATE(1006), - [sym_update_expression] = STATE(1006), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [377] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1202), + [sym_yield_expression] = STATE(1202), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1202), + [sym_jsx_fragment] = STATE(1202), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1202), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1202), + [sym_await_expression] = STATE(1202), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1202), + [sym_augmented_assignment_expression] = STATE(1202), + [sym_ternary_expression] = STATE(1202), + [sym_binary_expression] = STATE(1202), + [sym_unary_expression] = STATE(1202), + [sym_update_expression] = STATE(1202), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1006), - [sym_as_expression] = STATE(1006), - [sym_internal_module] = STATE(1006), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1202), + [sym_as_expression] = STATE(1202), + [sym_internal_module] = STATE(1202), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [378] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(991), + [sym_yield_expression] = STATE(991), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(991), + [sym_jsx_fragment] = STATE(991), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(991), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(991), + [sym_await_expression] = STATE(991), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(991), + [sym_augmented_assignment_expression] = STATE(991), + [sym_ternary_expression] = STATE(991), + [sym_binary_expression] = STATE(991), + [sym_unary_expression] = STATE(991), + [sym_update_expression] = STATE(991), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(991), + [sym_as_expression] = STATE(991), + [sym_internal_module] = STATE(991), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -47834,74 +48235,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [377] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1307), - [sym_jsx_fragment] = STATE(1307), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1307), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1307), - [sym_augmented_assignment_expression] = STATE(1307), - [sym_ternary_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_unary_expression] = STATE(1307), - [sym_update_expression] = STATE(1307), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [379] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1202), + [sym_yield_expression] = STATE(1202), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1202), + [sym_jsx_fragment] = STATE(1202), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1202), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1202), + [sym_await_expression] = STATE(1202), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1202), + [sym_augmented_assignment_expression] = STATE(1202), + [sym_ternary_expression] = STATE(1202), + [sym_binary_expression] = STATE(1202), + [sym_unary_expression] = STATE(1202), + [sym_update_expression] = STATE(1202), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1307), - [sym_as_expression] = STATE(1307), - [sym_internal_module] = STATE(1307), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1202), + [sym_as_expression] = STATE(1202), + [sym_internal_module] = STATE(1202), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), + [sym_number] = ACTIONS(1389), [sym_this] = ACTIONS(511), [sym_super] = ACTIONS(511), [sym_true] = ACTIONS(511), @@ -47909,59 +48310,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [378] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1014), - [sym_yield_expression] = STATE(1014), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1014), - [sym_jsx_fragment] = STATE(1014), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1014), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1014), - [sym_await_expression] = STATE(1014), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1014), - [sym_augmented_assignment_expression] = STATE(1014), - [sym_ternary_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_unary_expression] = STATE(1014), - [sym_update_expression] = STATE(1014), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [380] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1007), + [sym_yield_expression] = STATE(1007), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1007), + [sym_jsx_fragment] = STATE(1007), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1007), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1007), + [sym_await_expression] = STATE(1007), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(1007), + [sym_ternary_expression] = STATE(1007), + [sym_binary_expression] = STATE(1007), + [sym_unary_expression] = STATE(1007), + [sym_update_expression] = STATE(1007), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1014), - [sym_as_expression] = STATE(1014), - [sym_internal_module] = STATE(1014), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1007), + [sym_as_expression] = STATE(1007), + [sym_internal_module] = STATE(1007), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -47991,7 +48392,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), + [sym_number] = ACTIONS(1399), [sym_this] = ACTIONS(511), [sym_super] = ACTIONS(511), [sym_true] = ACTIONS(511), @@ -48014,339 +48415,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [379] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1224), - [sym_yield_expression] = STATE(1224), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1224), - [sym_jsx_fragment] = STATE(1224), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1224), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1224), - [sym_await_expression] = STATE(1224), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1224), - [sym_augmented_assignment_expression] = STATE(1224), - [sym_ternary_expression] = STATE(1224), - [sym_binary_expression] = STATE(1224), - [sym_unary_expression] = STATE(1224), - [sym_update_expression] = STATE(1224), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1224), - [sym_as_expression] = STATE(1224), - [sym_internal_module] = STATE(1224), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [380] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1088), - [sym_yield_expression] = STATE(1088), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1088), - [sym_jsx_fragment] = STATE(1088), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1088), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1088), - [sym_await_expression] = STATE(1088), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1088), - [sym_augmented_assignment_expression] = STATE(1088), - [sym_ternary_expression] = STATE(1088), - [sym_binary_expression] = STATE(1088), - [sym_unary_expression] = STATE(1088), - [sym_update_expression] = STATE(1088), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1088), - [sym_as_expression] = STATE(1088), - [sym_internal_module] = STATE(1088), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), - }, [381] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1241), - [sym_yield_expression] = STATE(1241), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1241), - [sym_jsx_fragment] = STATE(1241), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1241), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1241), - [sym_await_expression] = STATE(1241), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1241), - [sym_augmented_assignment_expression] = STATE(1241), - [sym_ternary_expression] = STATE(1241), - [sym_binary_expression] = STATE(1241), - [sym_unary_expression] = STATE(1241), - [sym_update_expression] = STATE(1241), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1210), + [sym_yield_expression] = STATE(1210), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1210), + [sym_jsx_fragment] = STATE(1210), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1210), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1210), + [sym_await_expression] = STATE(1210), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1210), + [sym_augmented_assignment_expression] = STATE(1210), + [sym_ternary_expression] = STATE(1210), + [sym_binary_expression] = STATE(1210), + [sym_unary_expression] = STATE(1210), + [sym_update_expression] = STATE(1210), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1241), - [sym_as_expression] = STATE(1241), - [sym_internal_module] = STATE(1241), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1210), + [sym_as_expression] = STATE(1210), + [sym_internal_module] = STATE(1210), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), [anon_sym_new] = ACTIONS(887), [anon_sym_PLUS] = ACTIONS(889), [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(1401), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, [382] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1295), - [sym_yield_expression] = STATE(1295), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1295), - [sym_jsx_fragment] = STATE(1295), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1295), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1295), - [sym_await_expression] = STATE(1295), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1295), - [sym_augmented_assignment_expression] = STATE(1295), - [sym_ternary_expression] = STATE(1295), - [sym_binary_expression] = STATE(1295), - [sym_unary_expression] = STATE(1295), - [sym_update_expression] = STATE(1295), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1167), + [sym_yield_expression] = STATE(1167), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1167), + [sym_jsx_fragment] = STATE(1167), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1167), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1167), + [sym_await_expression] = STATE(1167), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1167), + [sym_augmented_assignment_expression] = STATE(1167), + [sym_ternary_expression] = STATE(1167), + [sym_binary_expression] = STATE(1167), + [sym_unary_expression] = STATE(1167), + [sym_update_expression] = STATE(1167), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1295), - [sym_as_expression] = STATE(1295), - [sym_internal_module] = STATE(1295), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1167), + [sym_as_expression] = STATE(1167), + [sym_internal_module] = STATE(1167), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -48359,264 +48580,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, [383] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1392), - [sym_yield_expression] = STATE(1392), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1392), - [sym_jsx_fragment] = STATE(1392), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1392), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1392), - [sym_await_expression] = STATE(1392), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1392), - [sym_augmented_assignment_expression] = STATE(1392), - [sym_ternary_expression] = STATE(1392), - [sym_binary_expression] = STATE(1392), - [sym_unary_expression] = STATE(1392), - [sym_update_expression] = STATE(1392), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1392), - [sym_as_expression] = STATE(1392), - [sym_internal_module] = STATE(1392), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), - }, - [384] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1093), - [sym_yield_expression] = STATE(1093), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1093), - [sym_jsx_fragment] = STATE(1093), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1093), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1093), - [sym_await_expression] = STATE(1093), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1093), - [sym_augmented_assignment_expression] = STATE(1093), - [sym_ternary_expression] = STATE(1093), - [sym_binary_expression] = STATE(1093), - [sym_unary_expression] = STATE(1093), - [sym_update_expression] = STATE(1093), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1093), - [sym_as_expression] = STATE(1093), - [sym_internal_module] = STATE(1093), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), - }, - [385] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1550), - [sym_yield_expression] = STATE(1550), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1550), - [sym_jsx_fragment] = STATE(1550), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1550), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1550), - [sym_await_expression] = STATE(1550), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1550), - [sym_augmented_assignment_expression] = STATE(1550), - [sym_ternary_expression] = STATE(1550), - [sym_binary_expression] = STATE(1550), - [sym_unary_expression] = STATE(1550), - [sym_update_expression] = STATE(1550), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1300), + [sym_yield_expression] = STATE(1300), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1300), + [sym_jsx_fragment] = STATE(1300), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1300), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1300), + [sym_await_expression] = STATE(1300), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1300), + [sym_augmented_assignment_expression] = STATE(1300), + [sym_ternary_expression] = STATE(1300), + [sym_binary_expression] = STATE(1300), + [sym_unary_expression] = STATE(1300), + [sym_update_expression] = STATE(1300), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1550), - [sym_as_expression] = STATE(1550), - [sym_internal_module] = STATE(1550), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1300), + [sym_as_expression] = STATE(1300), + [sym_internal_module] = STATE(1300), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -48629,264 +48670,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [386] = { - [sym__call_signature] = STATE(3120), - [sym_string] = STATE(2197), - [sym_formal_parameters] = STATE(2406), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [sym_type_parameters] = STATE(2899), - [aux_sym_object_repeat1] = STATE(2740), - [sym_identifier] = ACTIONS(1358), - [anon_sym_export] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1188), - [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_in] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1371), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_function] = ACTIONS(1377), - [anon_sym_EQ_GT] = ACTIONS(1154), - [anon_sym_QMARK_DOT] = ACTIONS(1156), - [anon_sym_PLUS_EQ] = ACTIONS(1158), - [anon_sym_DASH_EQ] = ACTIONS(1158), - [anon_sym_STAR_EQ] = ACTIONS(1158), - [anon_sym_SLASH_EQ] = ACTIONS(1158), - [anon_sym_PERCENT_EQ] = ACTIONS(1158), - [anon_sym_CARET_EQ] = ACTIONS(1158), - [anon_sym_AMP_EQ] = ACTIONS(1158), - [anon_sym_PIPE_EQ] = ACTIONS(1158), - [anon_sym_GT_GT_EQ] = ACTIONS(1158), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1158), - [anon_sym_LT_LT_EQ] = ACTIONS(1158), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1158), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1143), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_GT_GT_GT] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_STAR_STAR] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_QMARK_QMARK] = ACTIONS(1133), - [anon_sym_instanceof] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1381), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_get] = ACTIONS(1385), - [anon_sym_set] = ACTIONS(1385), - [anon_sym_declare] = ACTIONS(1360), - [anon_sym_public] = ACTIONS(1360), - [anon_sym_private] = ACTIONS(1360), - [anon_sym_protected] = ACTIONS(1360), - [anon_sym_module] = ACTIONS(1360), - [anon_sym_any] = ACTIONS(1360), - [anon_sym_number] = ACTIONS(1360), - [anon_sym_boolean] = ACTIONS(1360), - [anon_sym_string] = ACTIONS(1360), - [anon_sym_symbol] = ACTIONS(1360), - [sym_readonly] = ACTIONS(1360), - [sym__automatic_semicolon] = ACTIONS(1119), - }, - [387] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1297), - [sym_yield_expression] = STATE(1297), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1297), - [sym_jsx_fragment] = STATE(1297), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1297), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1297), - [sym_await_expression] = STATE(1297), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1297), - [sym_augmented_assignment_expression] = STATE(1297), - [sym_ternary_expression] = STATE(1297), - [sym_binary_expression] = STATE(1297), - [sym_unary_expression] = STATE(1297), - [sym_update_expression] = STATE(1297), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1297), - [sym_as_expression] = STATE(1297), - [sym_internal_module] = STATE(1297), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), - }, - [388] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1306), - [sym_yield_expression] = STATE(1306), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1306), - [sym_jsx_fragment] = STATE(1306), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1306), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1306), - [sym_await_expression] = STATE(1306), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1306), - [sym_augmented_assignment_expression] = STATE(1306), - [sym_ternary_expression] = STATE(1306), - [sym_binary_expression] = STATE(1306), - [sym_unary_expression] = STATE(1306), - [sym_update_expression] = STATE(1306), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [384] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(989), + [sym_yield_expression] = STATE(989), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(989), + [sym_jsx_fragment] = STATE(989), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(989), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(989), + [sym_await_expression] = STATE(989), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(989), + [sym_augmented_assignment_expression] = STATE(989), + [sym_ternary_expression] = STATE(989), + [sym_binary_expression] = STATE(989), + [sym_unary_expression] = STATE(989), + [sym_update_expression] = STATE(989), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1306), - [sym_as_expression] = STATE(1306), - [sym_internal_module] = STATE(1306), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(989), + [sym_as_expression] = STATE(989), + [sym_internal_module] = STATE(989), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -48899,84 +48760,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [389] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(968), - [sym_yield_expression] = STATE(968), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(968), - [sym_jsx_fragment] = STATE(968), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(968), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(968), - [sym_await_expression] = STATE(968), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(968), - [sym_augmented_assignment_expression] = STATE(968), - [sym_ternary_expression] = STATE(968), - [sym_binary_expression] = STATE(968), - [sym_unary_expression] = STATE(968), - [sym_update_expression] = STATE(968), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [385] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1365), + [sym_yield_expression] = STATE(1365), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1365), + [sym_jsx_fragment] = STATE(1365), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1365), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1365), + [sym_await_expression] = STATE(1365), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1365), + [sym_augmented_assignment_expression] = STATE(1365), + [sym_ternary_expression] = STATE(1365), + [sym_binary_expression] = STATE(1365), + [sym_unary_expression] = STATE(1365), + [sym_update_expression] = STATE(1365), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(968), - [sym_as_expression] = STATE(968), - [sym_internal_module] = STATE(968), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1365), + [sym_as_expression] = STATE(1365), + [sym_internal_module] = STATE(1365), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(1401), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -48989,174 +48850,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [390] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1390), - [sym_yield_expression] = STATE(1390), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1390), - [sym_jsx_fragment] = STATE(1390), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1390), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1390), - [sym_await_expression] = STATE(1390), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1390), - [sym_augmented_assignment_expression] = STATE(1390), - [sym_ternary_expression] = STATE(1390), - [sym_binary_expression] = STATE(1390), - [sym_unary_expression] = STATE(1390), - [sym_update_expression] = STATE(1390), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [386] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1192), + [sym_jsx_fragment] = STATE(1192), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1192), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1192), + [sym_augmented_assignment_expression] = STATE(1192), + [sym_ternary_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_unary_expression] = STATE(1192), + [sym_update_expression] = STATE(1192), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1390), - [sym_as_expression] = STATE(1390), - [sym_internal_module] = STATE(1390), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), - [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), - [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1192), + [sym_as_expression] = STATE(1192), + [sym_internal_module] = STATE(1192), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, - [391] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1388), - [sym_yield_expression] = STATE(1388), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1388), - [sym_jsx_fragment] = STATE(1388), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1388), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1388), - [sym_await_expression] = STATE(1388), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1388), - [sym_augmented_assignment_expression] = STATE(1388), - [sym_ternary_expression] = STATE(1388), - [sym_binary_expression] = STATE(1388), - [sym_unary_expression] = STATE(1388), - [sym_update_expression] = STATE(1388), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [387] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1342), + [sym_yield_expression] = STATE(1342), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1342), + [sym_jsx_fragment] = STATE(1342), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1342), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1342), + [sym_await_expression] = STATE(1342), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1342), + [sym_augmented_assignment_expression] = STATE(1342), + [sym_ternary_expression] = STATE(1342), + [sym_binary_expression] = STATE(1342), + [sym_unary_expression] = STATE(1342), + [sym_update_expression] = STATE(1342), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1388), - [sym_as_expression] = STATE(1388), - [sym_internal_module] = STATE(1388), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1342), + [sym_as_expression] = STATE(1342), + [sym_internal_module] = STATE(1342), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -49169,174 +49030,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [392] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1303), - [sym_yield_expression] = STATE(1303), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1303), - [sym_jsx_fragment] = STATE(1303), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1303), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1303), - [sym_await_expression] = STATE(1303), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1303), - [sym_augmented_assignment_expression] = STATE(1303), - [sym_ternary_expression] = STATE(1303), - [sym_binary_expression] = STATE(1303), - [sym_unary_expression] = STATE(1303), - [sym_update_expression] = STATE(1303), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [388] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1339), + [sym_yield_expression] = STATE(1339), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1339), + [sym_jsx_fragment] = STATE(1339), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1339), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1339), + [sym_await_expression] = STATE(1339), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1339), + [sym_augmented_assignment_expression] = STATE(1339), + [sym_ternary_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_unary_expression] = STATE(1339), + [sym_update_expression] = STATE(1339), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1303), - [sym_as_expression] = STATE(1303), - [sym_internal_module] = STATE(1303), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1339), + [sym_as_expression] = STATE(1339), + [sym_internal_module] = STATE(1339), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), - [anon_sym_function] = ACTIONS(481), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(787), + [anon_sym_function] = ACTIONS(601), [anon_sym_new] = ACTIONS(869), [anon_sym_PLUS] = ACTIONS(871), [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [393] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(815), - [sym__expression] = STATE(1126), - [sym_yield_expression] = STATE(1126), - [sym_object] = STATE(1599), - [sym_array] = STATE(1596), - [sym_jsx_element] = STATE(1126), - [sym_jsx_fragment] = STATE(1126), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1126), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3129), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1126), - [sym_await_expression] = STATE(1126), - [sym_member_expression] = STATE(815), - [sym_subscript_expression] = STATE(815), - [sym_assignment_expression] = STATE(1126), - [sym_augmented_assignment_expression] = STATE(1126), - [sym_ternary_expression] = STATE(1126), - [sym_binary_expression] = STATE(1126), - [sym_unary_expression] = STATE(1126), - [sym_update_expression] = STATE(1126), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [389] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1336), + [sym_yield_expression] = STATE(1336), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1336), + [sym_jsx_fragment] = STATE(1336), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1336), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1336), + [sym_await_expression] = STATE(1336), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1336), + [sym_augmented_assignment_expression] = STATE(1336), + [sym_ternary_expression] = STATE(1336), + [sym_binary_expression] = STATE(1336), + [sym_unary_expression] = STATE(1336), + [sym_update_expression] = STATE(1336), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1126), - [sym_as_expression] = STATE(1126), - [sym_internal_module] = STATE(1126), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1336), + [sym_as_expression] = STATE(1336), + [sym_internal_module] = STATE(1336), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(853), - [anon_sym_export] = ACTIONS(793), - [anon_sym_namespace] = ACTIONS(795), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(793), - [anon_sym_typeof] = ACTIONS(813), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(799), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(801), - [anon_sym_yield] = ACTIONS(803), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(805), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(859), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_TILDE] = ACTIONS(799), - [anon_sym_void] = ACTIONS(813), - [anon_sym_delete] = ACTIONS(813), - [anon_sym_PLUS_PLUS] = ACTIONS(815), - [anon_sym_DASH_DASH] = ACTIONS(815), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -49349,84 +49210,174 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(793), - [anon_sym_get] = ACTIONS(793), - [anon_sym_set] = ACTIONS(793), - [anon_sym_declare] = ACTIONS(793), - [anon_sym_public] = ACTIONS(793), - [anon_sym_private] = ACTIONS(793), - [anon_sym_protected] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_any] = ACTIONS(793), - [anon_sym_number] = ACTIONS(793), - [anon_sym_boolean] = ACTIONS(793), - [anon_sym_string] = ACTIONS(793), - [anon_sym_symbol] = ACTIONS(793), - [sym_readonly] = ACTIONS(793), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [394] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1302), - [sym_yield_expression] = STATE(1302), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1302), - [sym_jsx_fragment] = STATE(1302), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1302), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1302), - [sym_await_expression] = STATE(1302), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1302), - [sym_augmented_assignment_expression] = STATE(1302), - [sym_ternary_expression] = STATE(1302), - [sym_binary_expression] = STATE(1302), - [sym_unary_expression] = STATE(1302), - [sym_update_expression] = STATE(1302), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [390] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1197), + [sym_yield_expression] = STATE(1197), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1197), + [sym_jsx_fragment] = STATE(1197), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1197), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1197), + [sym_await_expression] = STATE(1197), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1197), + [sym_augmented_assignment_expression] = STATE(1197), + [sym_ternary_expression] = STATE(1197), + [sym_binary_expression] = STATE(1197), + [sym_unary_expression] = STATE(1197), + [sym_update_expression] = STATE(1197), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1302), - [sym_as_expression] = STATE(1302), - [sym_internal_module] = STATE(1302), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1197), + [sym_as_expression] = STATE(1197), + [sym_internal_module] = STATE(1197), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [391] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1189), + [sym_yield_expression] = STATE(1189), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1189), + [sym_jsx_fragment] = STATE(1189), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1189), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1189), + [sym_await_expression] = STATE(1189), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1189), + [sym_augmented_assignment_expression] = STATE(1189), + [sym_ternary_expression] = STATE(1189), + [sym_binary_expression] = STATE(1189), + [sym_unary_expression] = STATE(1189), + [sym_update_expression] = STATE(1189), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1189), + [sym_as_expression] = STATE(1189), + [sym_internal_module] = STATE(1189), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -49439,84 +49390,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [395] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1301), - [sym_yield_expression] = STATE(1301), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1301), - [sym_jsx_fragment] = STATE(1301), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1301), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1301), - [sym_await_expression] = STATE(1301), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1301), - [sym_augmented_assignment_expression] = STATE(1301), - [sym_ternary_expression] = STATE(1301), - [sym_binary_expression] = STATE(1301), - [sym_unary_expression] = STATE(1301), - [sym_update_expression] = STATE(1301), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [392] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(823), + [sym__expression] = STATE(1334), + [sym_yield_expression] = STATE(1334), + [sym_object] = STATE(1666), + [sym_array] = STATE(1670), + [sym_jsx_element] = STATE(1334), + [sym_jsx_fragment] = STATE(1334), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1334), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3131), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1334), + [sym_await_expression] = STATE(1334), + [sym_member_expression] = STATE(823), + [sym_subscript_expression] = STATE(823), + [sym_assignment_expression] = STATE(1334), + [sym_augmented_assignment_expression] = STATE(1334), + [sym_ternary_expression] = STATE(1334), + [sym_binary_expression] = STATE(1334), + [sym_unary_expression] = STATE(1334), + [sym_update_expression] = STATE(1334), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1301), - [sym_as_expression] = STATE(1301), - [sym_internal_module] = STATE(1301), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1334), + [sym_as_expression] = STATE(1334), + [sym_internal_module] = STATE(1334), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), - [sym_identifier] = ACTIONS(581), - [anon_sym_export] = ACTIONS(583), - [anon_sym_namespace] = ACTIONS(587), + [sym_identifier] = ACTIONS(863), + [anon_sym_export] = ACTIONS(775), + [anon_sym_namespace] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_type] = ACTIONS(583), - [anon_sym_typeof] = ACTIONS(19), + [anon_sym_type] = ACTIONS(775), + [anon_sym_typeof] = ACTIONS(795), [anon_sym_import] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(781), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(783), + [anon_sym_yield] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(597), - [anon_sym_async] = ACTIONS(599), + [anon_sym_async] = ACTIONS(787), [anon_sym_function] = ACTIONS(601), - [anon_sym_new] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(19), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_new] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(781), + [anon_sym_void] = ACTIONS(795), + [anon_sym_delete] = ACTIONS(795), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -49529,58 +49480,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(89), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [anon_sym_declare] = ACTIONS(583), - [anon_sym_public] = ACTIONS(583), - [anon_sym_private] = ACTIONS(583), - [anon_sym_protected] = ACTIONS(583), - [anon_sym_module] = ACTIONS(583), - [anon_sym_any] = ACTIONS(583), - [anon_sym_number] = ACTIONS(583), - [anon_sym_boolean] = ACTIONS(583), - [anon_sym_string] = ACTIONS(583), - [anon_sym_symbol] = ACTIONS(583), - [sym_readonly] = ACTIONS(583), + [anon_sym_static] = ACTIONS(775), + [anon_sym_get] = ACTIONS(775), + [anon_sym_set] = ACTIONS(775), + [anon_sym_declare] = ACTIONS(775), + [anon_sym_public] = ACTIONS(775), + [anon_sym_private] = ACTIONS(775), + [anon_sym_protected] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_any] = ACTIONS(775), + [anon_sym_number] = ACTIONS(775), + [anon_sym_boolean] = ACTIONS(775), + [anon_sym_string] = ACTIONS(775), + [anon_sym_symbol] = ACTIONS(775), + [sym_readonly] = ACTIONS(775), }, - [396] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1127), - [sym_yield_expression] = STATE(1127), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1127), - [sym_jsx_fragment] = STATE(1127), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1127), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1127), - [sym_await_expression] = STATE(1127), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1127), - [sym_augmented_assignment_expression] = STATE(1127), - [sym_ternary_expression] = STATE(1127), - [sym_binary_expression] = STATE(1127), - [sym_unary_expression] = STATE(1127), - [sym_update_expression] = STATE(1127), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [393] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1166), + [sym_yield_expression] = STATE(1166), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1166), + [sym_jsx_fragment] = STATE(1166), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1166), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1166), + [sym_await_expression] = STATE(1166), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1166), + [sym_augmented_assignment_expression] = STATE(1166), + [sym_ternary_expression] = STATE(1166), + [sym_binary_expression] = STATE(1166), + [sym_unary_expression] = STATE(1166), + [sym_update_expression] = STATE(1166), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1127), - [sym_as_expression] = STATE(1127), - [sym_internal_module] = STATE(1127), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1166), + [sym_as_expression] = STATE(1166), + [sym_internal_module] = STATE(1166), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -49611,7 +49562,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1389), + [sym_number] = ACTIONS(87), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -49634,69 +49585,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [397] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1300), - [sym_yield_expression] = STATE(1300), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1300), - [sym_jsx_fragment] = STATE(1300), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1300), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1300), - [sym_await_expression] = STATE(1300), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1300), - [sym_augmented_assignment_expression] = STATE(1300), - [sym_ternary_expression] = STATE(1300), - [sym_binary_expression] = STATE(1300), - [sym_unary_expression] = STATE(1300), - [sym_update_expression] = STATE(1300), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [394] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1191), + [sym_yield_expression] = STATE(1191), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1191), + [sym_jsx_fragment] = STATE(1191), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1191), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1191), + [sym_await_expression] = STATE(1191), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1191), + [sym_augmented_assignment_expression] = STATE(1191), + [sym_ternary_expression] = STATE(1191), + [sym_binary_expression] = STATE(1191), + [sym_unary_expression] = STATE(1191), + [sym_update_expression] = STATE(1191), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1300), - [sym_as_expression] = STATE(1300), - [sym_internal_module] = STATE(1300), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1191), + [sym_as_expression] = STATE(1191), + [sym_internal_module] = STATE(1191), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -49709,58 +49660,148 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, - [398] = { - [sym_import] = STATE(1420), - [sym_parenthesized_expression] = STATE(763), - [sym__expression] = STATE(1113), - [sym_yield_expression] = STATE(1113), - [sym_object] = STATE(1401), - [sym_array] = STATE(1363), - [sym_jsx_element] = STATE(1113), - [sym_jsx_fragment] = STATE(1113), - [sym_jsx_opening_element] = STATE(2057), - [sym_jsx_self_closing_element] = STATE(1113), - [sym_class] = STATE(1420), - [sym_function] = STATE(1420), - [sym_generator_function] = STATE(1420), - [sym_arrow_function] = STATE(1420), - [sym__call_signature] = STATE(3251), - [sym_call_expression] = STATE(1420), - [sym_new_expression] = STATE(1113), - [sym_await_expression] = STATE(1113), - [sym_member_expression] = STATE(763), - [sym_subscript_expression] = STATE(763), - [sym_assignment_expression] = STATE(1113), - [sym_augmented_assignment_expression] = STATE(1113), - [sym_ternary_expression] = STATE(1113), - [sym_binary_expression] = STATE(1113), - [sym_unary_expression] = STATE(1113), - [sym_update_expression] = STATE(1113), - [sym_string] = STATE(1420), - [sym_template_string] = STATE(1420), - [sym_regex] = STATE(1420), - [sym_meta_property] = STATE(1420), + [395] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(986), + [sym_yield_expression] = STATE(986), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(986), + [sym_jsx_fragment] = STATE(986), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(986), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(986), + [sym_await_expression] = STATE(986), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(986), + [sym_augmented_assignment_expression] = STATE(986), + [sym_ternary_expression] = STATE(986), + [sym_binary_expression] = STATE(986), + [sym_unary_expression] = STATE(986), + [sym_update_expression] = STATE(986), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1113), - [sym_as_expression] = STATE(1113), - [sym_internal_module] = STATE(1113), - [sym_type_parameters] = STATE(2899), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(986), + [sym_as_expression] = STATE(986), + [sym_internal_module] = STATE(986), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(539), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), + }, + [396] = { + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1062), + [sym_yield_expression] = STATE(1062), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1062), + [sym_jsx_fragment] = STATE(1062), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1062), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1062), + [sym_await_expression] = STATE(1062), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1062), + [sym_augmented_assignment_expression] = STATE(1062), + [sym_ternary_expression] = STATE(1062), + [sym_binary_expression] = STATE(1062), + [sym_unary_expression] = STATE(1062), + [sym_update_expression] = STATE(1062), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1062), + [sym_as_expression] = STATE(1062), + [sym_internal_module] = STATE(1062), + [sym_type_parameters] = STATE(2923), [aux_sym_export_statement_repeat1] = STATE(2587), [sym_identifier] = ACTIONS(581), [anon_sym_export] = ACTIONS(583), @@ -49814,74 +49855,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(583), [sym_readonly] = ACTIONS(583), }, - [399] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1528), - [sym_yield_expression] = STATE(1528), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1528), - [sym_jsx_fragment] = STATE(1528), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1528), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1528), - [sym_await_expression] = STATE(1528), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1528), - [sym_augmented_assignment_expression] = STATE(1528), - [sym_ternary_expression] = STATE(1528), - [sym_binary_expression] = STATE(1528), - [sym_unary_expression] = STATE(1528), - [sym_update_expression] = STATE(1528), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [397] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1007), + [sym_yield_expression] = STATE(1007), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1007), + [sym_jsx_fragment] = STATE(1007), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1007), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1007), + [sym_await_expression] = STATE(1007), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(1007), + [sym_ternary_expression] = STATE(1007), + [sym_binary_expression] = STATE(1007), + [sym_unary_expression] = STATE(1007), + [sym_update_expression] = STATE(1007), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1528), - [sym_as_expression] = STATE(1528), - [sym_internal_module] = STATE(1528), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1007), + [sym_as_expression] = STATE(1007), + [sym_internal_module] = STATE(1007), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), + [sym_number] = ACTIONS(1403), [sym_this] = ACTIONS(511), [sym_super] = ACTIONS(511), [sym_true] = ACTIONS(511), @@ -49889,84 +49930,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, - [400] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1296), - [sym_yield_expression] = STATE(1296), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1296), - [sym_jsx_fragment] = STATE(1296), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1296), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1296), - [sym_await_expression] = STATE(1296), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1296), - [sym_augmented_assignment_expression] = STATE(1296), - [sym_ternary_expression] = STATE(1296), - [sym_binary_expression] = STATE(1296), - [sym_unary_expression] = STATE(1296), - [sym_update_expression] = STATE(1296), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [398] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1196), + [sym_yield_expression] = STATE(1196), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1196), + [sym_jsx_fragment] = STATE(1196), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1196), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1196), + [sym_await_expression] = STATE(1196), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1196), + [sym_augmented_assignment_expression] = STATE(1196), + [sym_ternary_expression] = STATE(1196), + [sym_binary_expression] = STATE(1196), + [sym_unary_expression] = STATE(1196), + [sym_update_expression] = STATE(1196), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1296), - [sym_as_expression] = STATE(1296), - [sym_internal_module] = STATE(1296), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1196), + [sym_as_expression] = STATE(1196), + [sym_internal_module] = STATE(1196), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -49979,37 +50020,307 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [399] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1221), + [sym_yield_expression] = STATE(1221), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1221), + [sym_jsx_fragment] = STATE(1221), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1221), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1221), + [sym_await_expression] = STATE(1221), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1221), + [sym_augmented_assignment_expression] = STATE(1221), + [sym_ternary_expression] = STATE(1221), + [sym_binary_expression] = STATE(1221), + [sym_unary_expression] = STATE(1221), + [sym_update_expression] = STATE(1221), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1221), + [sym_as_expression] = STATE(1221), + [sym_internal_module] = STATE(1221), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [400] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1208), + [sym_yield_expression] = STATE(1208), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1208), + [sym_jsx_fragment] = STATE(1208), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1208), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1208), + [sym_await_expression] = STATE(1208), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1208), + [sym_augmented_assignment_expression] = STATE(1208), + [sym_ternary_expression] = STATE(1208), + [sym_binary_expression] = STATE(1208), + [sym_unary_expression] = STATE(1208), + [sym_update_expression] = STATE(1208), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1208), + [sym_as_expression] = STATE(1208), + [sym_internal_module] = STATE(1208), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, [401] = { - [sym__call_signature] = STATE(3120), - [sym_string] = STATE(2197), - [sym_formal_parameters] = STATE(2406), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [sym_type_parameters] = STATE(2899), - [aux_sym_object_repeat1] = STATE(2782), + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1184), + [sym_yield_expression] = STATE(1184), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1184), + [sym_jsx_fragment] = STATE(1184), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1184), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1184), + [sym_await_expression] = STATE(1184), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1184), + [sym_augmented_assignment_expression] = STATE(1184), + [sym_ternary_expression] = STATE(1184), + [sym_binary_expression] = STATE(1184), + [sym_unary_expression] = STATE(1184), + [sym_update_expression] = STATE(1184), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1184), + [sym_as_expression] = STATE(1184), + [sym_internal_module] = STATE(1184), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [402] = { + [sym__call_signature] = STATE(3149), + [sym_string] = STATE(2204), + [sym_formal_parameters] = STATE(2340), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [sym_type_parameters] = STATE(2923), + [aux_sym_object_repeat1] = STATE(2746), [sym_identifier] = ACTIONS(1358), [anon_sym_export] = ACTIONS(1360), [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), [anon_sym_namespace] = ACTIONS(1360), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_RBRACE] = ACTIONS(1170), [anon_sym_type] = ACTIONS(1360), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1365), @@ -50066,62 +50377,242 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1379), [anon_sym_SQUOTE] = ACTIONS(1381), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_get] = ACTIONS(1385), - [anon_sym_set] = ACTIONS(1385), - [anon_sym_declare] = ACTIONS(1360), - [anon_sym_public] = ACTIONS(1360), - [anon_sym_private] = ACTIONS(1360), - [anon_sym_protected] = ACTIONS(1360), - [anon_sym_module] = ACTIONS(1360), - [anon_sym_any] = ACTIONS(1360), - [anon_sym_number] = ACTIONS(1360), - [anon_sym_boolean] = ACTIONS(1360), - [anon_sym_string] = ACTIONS(1360), - [anon_sym_symbol] = ACTIONS(1360), - [sym_readonly] = ACTIONS(1360), - [sym__automatic_semicolon] = ACTIONS(1119), + [anon_sym_BQUOTE] = ACTIONS(1119), + [sym_number] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1360), + [anon_sym_get] = ACTIONS(1385), + [anon_sym_set] = ACTIONS(1385), + [anon_sym_declare] = ACTIONS(1360), + [anon_sym_public] = ACTIONS(1360), + [anon_sym_private] = ACTIONS(1360), + [anon_sym_protected] = ACTIONS(1360), + [anon_sym_module] = ACTIONS(1360), + [anon_sym_any] = ACTIONS(1360), + [anon_sym_number] = ACTIONS(1360), + [anon_sym_boolean] = ACTIONS(1360), + [anon_sym_string] = ACTIONS(1360), + [anon_sym_symbol] = ACTIONS(1360), + [sym_readonly] = ACTIONS(1360), + [sym__automatic_semicolon] = ACTIONS(1119), + }, + [403] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1185), + [sym_yield_expression] = STATE(1185), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1185), + [sym_jsx_fragment] = STATE(1185), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1185), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1185), + [sym_await_expression] = STATE(1185), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1185), + [sym_augmented_assignment_expression] = STATE(1185), + [sym_ternary_expression] = STATE(1185), + [sym_binary_expression] = STATE(1185), + [sym_unary_expression] = STATE(1185), + [sym_update_expression] = STATE(1185), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1185), + [sym_as_expression] = STATE(1185), + [sym_internal_module] = STATE(1185), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), + }, + [404] = { + [sym_import] = STATE(1692), + [sym_parenthesized_expression] = STATE(796), + [sym__expression] = STATE(1188), + [sym_yield_expression] = STATE(1188), + [sym_object] = STATE(1433), + [sym_array] = STATE(1432), + [sym_jsx_element] = STATE(1188), + [sym_jsx_fragment] = STATE(1188), + [sym_jsx_opening_element] = STATE(2029), + [sym_jsx_self_closing_element] = STATE(1188), + [sym_class] = STATE(1692), + [sym_function] = STATE(1692), + [sym_generator_function] = STATE(1692), + [sym_arrow_function] = STATE(1692), + [sym__call_signature] = STATE(3229), + [sym_call_expression] = STATE(1692), + [sym_new_expression] = STATE(1188), + [sym_await_expression] = STATE(1188), + [sym_member_expression] = STATE(796), + [sym_subscript_expression] = STATE(796), + [sym_assignment_expression] = STATE(1188), + [sym_augmented_assignment_expression] = STATE(1188), + [sym_ternary_expression] = STATE(1188), + [sym_binary_expression] = STATE(1188), + [sym_unary_expression] = STATE(1188), + [sym_update_expression] = STATE(1188), + [sym_string] = STATE(1692), + [sym_template_string] = STATE(1692), + [sym_regex] = STATE(1692), + [sym_meta_property] = STATE(1692), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1188), + [sym_as_expression] = STATE(1188), + [sym_internal_module] = STATE(1188), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2554), + [sym_identifier] = ACTIONS(873), + [anon_sym_export] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_type] = ACTIONS(717), + [anon_sym_typeof] = ACTIONS(753), + [anon_sym_import] = ACTIONS(725), + [anon_sym_BANG] = ACTIONS(727), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_await] = ACTIONS(731), + [anon_sym_yield] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(739), + [anon_sym_class] = ACTIONS(741), + [anon_sym_async] = ACTIONS(743), + [anon_sym_function] = ACTIONS(745), + [anon_sym_new] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_TILDE] = ACTIONS(727), + [anon_sym_void] = ACTIONS(753), + [anon_sym_delete] = ACTIONS(753), + [anon_sym_PLUS_PLUS] = ACTIONS(755), + [anon_sym_DASH_DASH] = ACTIONS(755), + [anon_sym_DQUOTE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(759), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(761), + [sym_number] = ACTIONS(891), + [sym_this] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_true] = ACTIONS(767), + [sym_false] = ACTIONS(767), + [sym_null] = ACTIONS(767), + [sym_undefined] = ACTIONS(767), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(717), + [anon_sym_get] = ACTIONS(717), + [anon_sym_set] = ACTIONS(717), + [anon_sym_declare] = ACTIONS(717), + [anon_sym_public] = ACTIONS(717), + [anon_sym_private] = ACTIONS(717), + [anon_sym_protected] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_any] = ACTIONS(717), + [anon_sym_number] = ACTIONS(717), + [anon_sym_boolean] = ACTIONS(717), + [anon_sym_string] = ACTIONS(717), + [anon_sym_symbol] = ACTIONS(717), + [sym_readonly] = ACTIONS(717), }, - [402] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1085), - [sym_yield_expression] = STATE(1085), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1085), - [sym_jsx_fragment] = STATE(1085), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1085), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1085), - [sym_await_expression] = STATE(1085), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1085), - [sym_augmented_assignment_expression] = STATE(1085), - [sym_ternary_expression] = STATE(1085), - [sym_binary_expression] = STATE(1085), - [sym_unary_expression] = STATE(1085), - [sym_update_expression] = STATE(1085), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [405] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1008), + [sym_yield_expression] = STATE(1008), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1008), + [sym_jsx_fragment] = STATE(1008), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1008), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1008), + [sym_await_expression] = STATE(1008), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1008), + [sym_augmented_assignment_expression] = STATE(1008), + [sym_ternary_expression] = STATE(1008), + [sym_binary_expression] = STATE(1008), + [sym_unary_expression] = STATE(1008), + [sym_update_expression] = STATE(1008), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1085), - [sym_as_expression] = STATE(1085), - [sym_internal_module] = STATE(1085), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1008), + [sym_as_expression] = STATE(1008), + [sym_internal_module] = STATE(1008), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -50174,69 +50665,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [403] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1294), - [sym_yield_expression] = STATE(1294), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1294), - [sym_jsx_fragment] = STATE(1294), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1294), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1294), - [sym_await_expression] = STATE(1294), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1294), - [sym_augmented_assignment_expression] = STATE(1294), - [sym_ternary_expression] = STATE(1294), - [sym_binary_expression] = STATE(1294), - [sym_unary_expression] = STATE(1294), - [sym_update_expression] = STATE(1294), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [406] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1201), + [sym_yield_expression] = STATE(1201), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1201), + [sym_jsx_fragment] = STATE(1201), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1201), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1201), + [sym_await_expression] = STATE(1201), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1201), + [sym_augmented_assignment_expression] = STATE(1201), + [sym_ternary_expression] = STATE(1201), + [sym_binary_expression] = STATE(1201), + [sym_unary_expression] = STATE(1201), + [sym_update_expression] = STATE(1201), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1294), - [sym_as_expression] = STATE(1294), - [sym_internal_module] = STATE(1294), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1201), + [sym_as_expression] = STATE(1201), + [sym_internal_module] = STATE(1201), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -50249,89 +50740,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [404] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1014), - [sym_yield_expression] = STATE(1014), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1014), - [sym_jsx_fragment] = STATE(1014), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1014), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1014), - [sym_await_expression] = STATE(1014), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1014), - [sym_augmented_assignment_expression] = STATE(1014), - [sym_ternary_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_unary_expression] = STATE(1014), - [sym_update_expression] = STATE(1014), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [407] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1205), + [sym_yield_expression] = STATE(1205), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1205), + [sym_jsx_fragment] = STATE(1205), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1205), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1205), + [sym_await_expression] = STATE(1205), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1205), + [sym_augmented_assignment_expression] = STATE(1205), + [sym_ternary_expression] = STATE(1205), + [sym_binary_expression] = STATE(1205), + [sym_unary_expression] = STATE(1205), + [sym_update_expression] = STATE(1205), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1014), - [sym_as_expression] = STATE(1014), - [sym_internal_module] = STATE(1014), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(557), - [anon_sym_export] = ACTIONS(527), - [anon_sym_namespace] = ACTIONS(529), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1205), + [sym_as_expression] = STATE(1205), + [sym_internal_module] = STATE(1205), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(497), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(467), - [anon_sym_yield] = ACTIONS(469), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(539), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(461), - [anon_sym_void] = ACTIONS(497), - [anon_sym_delete] = ACTIONS(497), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1393), + [sym_number] = ACTIONS(579), [sym_this] = ACTIONS(511), [sym_super] = ACTIONS(511), [sym_true] = ACTIONS(511), @@ -50339,84 +50830,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [anon_sym_declare] = ACTIONS(527), - [anon_sym_public] = ACTIONS(527), - [anon_sym_private] = ACTIONS(527), - [anon_sym_protected] = ACTIONS(527), - [anon_sym_module] = ACTIONS(527), - [anon_sym_any] = ACTIONS(527), - [anon_sym_number] = ACTIONS(527), - [anon_sym_boolean] = ACTIONS(527), - [anon_sym_string] = ACTIONS(527), - [anon_sym_symbol] = ACTIONS(527), - [sym_readonly] = ACTIONS(527), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [405] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1293), - [sym_yield_expression] = STATE(1293), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1293), - [sym_jsx_fragment] = STATE(1293), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1293), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1293), - [sym_await_expression] = STATE(1293), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1293), - [sym_augmented_assignment_expression] = STATE(1293), - [sym_ternary_expression] = STATE(1293), - [sym_binary_expression] = STATE(1293), - [sym_unary_expression] = STATE(1293), - [sym_update_expression] = STATE(1293), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [408] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(785), + [sym__expression] = STATE(1206), + [sym_yield_expression] = STATE(1206), + [sym_object] = STATE(1533), + [sym_array] = STATE(1534), + [sym_jsx_element] = STATE(1206), + [sym_jsx_fragment] = STATE(1206), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1206), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3254), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1206), + [sym_await_expression] = STATE(1206), + [sym_member_expression] = STATE(785), + [sym_subscript_expression] = STATE(785), + [sym_assignment_expression] = STATE(1206), + [sym_augmented_assignment_expression] = STATE(1206), + [sym_ternary_expression] = STATE(1206), + [sym_binary_expression] = STATE(1206), + [sym_unary_expression] = STATE(1206), + [sym_update_expression] = STATE(1206), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1293), - [sym_as_expression] = STATE(1293), - [sym_internal_module] = STATE(1293), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1206), + [sym_as_expression] = STATE(1206), + [sym_internal_module] = STATE(1206), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(853), + [anon_sym_export] = ACTIONS(687), + [anon_sym_namespace] = ACTIONS(689), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(687), + [anon_sym_typeof] = ACTIONS(709), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(693), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(699), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(701), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_TILDE] = ACTIONS(693), + [anon_sym_void] = ACTIONS(709), + [anon_sym_delete] = ACTIONS(709), + [anon_sym_PLUS_PLUS] = ACTIONS(711), + [anon_sym_DASH_DASH] = ACTIONS(711), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -50429,59 +50920,149 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(687), + [anon_sym_get] = ACTIONS(687), + [anon_sym_set] = ACTIONS(687), + [anon_sym_declare] = ACTIONS(687), + [anon_sym_public] = ACTIONS(687), + [anon_sym_private] = ACTIONS(687), + [anon_sym_protected] = ACTIONS(687), + [anon_sym_module] = ACTIONS(687), + [anon_sym_any] = ACTIONS(687), + [anon_sym_number] = ACTIONS(687), + [anon_sym_boolean] = ACTIONS(687), + [anon_sym_string] = ACTIONS(687), + [anon_sym_symbol] = ACTIONS(687), + [sym_readonly] = ACTIONS(687), }, - [406] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1270), - [sym_yield_expression] = STATE(1270), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1270), - [sym_jsx_fragment] = STATE(1270), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1270), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1270), - [sym_await_expression] = STATE(1270), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1270), - [sym_augmented_assignment_expression] = STATE(1270), - [sym_ternary_expression] = STATE(1270), - [sym_binary_expression] = STATE(1270), - [sym_unary_expression] = STATE(1270), - [sym_update_expression] = STATE(1270), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [409] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1520), + [sym_yield_expression] = STATE(1520), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1520), + [sym_jsx_fragment] = STATE(1520), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1520), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1520), + [sym_await_expression] = STATE(1520), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1520), + [sym_augmented_assignment_expression] = STATE(1520), + [sym_ternary_expression] = STATE(1520), + [sym_binary_expression] = STATE(1520), + [sym_unary_expression] = STATE(1520), + [sym_update_expression] = STATE(1520), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1270), - [sym_as_expression] = STATE(1270), - [sym_internal_module] = STATE(1270), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1520), + [sym_as_expression] = STATE(1520), + [sym_internal_module] = STATE(1520), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), + [anon_sym_import] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(473), + [anon_sym_SLASH] = ACTIONS(475), + [anon_sym_class] = ACTIONS(477), + [anon_sym_async] = ACTIONS(665), + [anon_sym_function] = ACTIONS(481), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(505), + [sym_number] = ACTIONS(579), + [sym_this] = ACTIONS(511), + [sym_super] = ACTIONS(511), + [sym_true] = ACTIONS(511), + [sym_false] = ACTIONS(511), + [sym_null] = ACTIONS(511), + [sym_undefined] = ACTIONS(511), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), + }, + [410] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1005), + [sym_yield_expression] = STATE(1005), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1005), + [sym_jsx_fragment] = STATE(1005), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1005), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1005), + [sym_await_expression] = STATE(1005), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1005), + [sym_augmented_assignment_expression] = STATE(1005), + [sym_ternary_expression] = STATE(1005), + [sym_binary_expression] = STATE(1005), + [sym_unary_expression] = STATE(1005), + [sym_update_expression] = STATE(1005), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1005), + [sym_as_expression] = STATE(1005), + [sym_internal_module] = STATE(1005), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -50534,134 +51115,44 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [407] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1292), - [sym_yield_expression] = STATE(1292), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1292), - [sym_jsx_fragment] = STATE(1292), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1292), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1292), - [sym_await_expression] = STATE(1292), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1292), - [sym_augmented_assignment_expression] = STATE(1292), - [sym_ternary_expression] = STATE(1292), - [sym_binary_expression] = STATE(1292), - [sym_unary_expression] = STATE(1292), - [sym_update_expression] = STATE(1292), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1292), - [sym_as_expression] = STATE(1292), - [sym_internal_module] = STATE(1292), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), - }, - [408] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1014), - [sym_yield_expression] = STATE(1014), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1014), - [sym_jsx_fragment] = STATE(1014), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1014), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1014), - [sym_await_expression] = STATE(1014), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1014), - [sym_augmented_assignment_expression] = STATE(1014), - [sym_ternary_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_unary_expression] = STATE(1014), - [sym_update_expression] = STATE(1014), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [411] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(985), + [sym_yield_expression] = STATE(985), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(985), + [sym_jsx_fragment] = STATE(985), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(985), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(985), + [sym_await_expression] = STATE(985), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(985), + [sym_augmented_assignment_expression] = STATE(985), + [sym_ternary_expression] = STATE(985), + [sym_binary_expression] = STATE(985), + [sym_unary_expression] = STATE(985), + [sym_update_expression] = STATE(985), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1014), - [sym_as_expression] = STATE(1014), - [sym_internal_module] = STATE(1014), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(985), + [sym_as_expression] = STATE(985), + [sym_internal_module] = STATE(985), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -50691,7 +51182,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(1403), + [sym_number] = ACTIONS(579), [sym_this] = ACTIONS(511), [sym_super] = ACTIONS(511), [sym_true] = ACTIONS(511), @@ -50714,249 +51205,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(527), [sym_readonly] = ACTIONS(527), }, - [409] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1290), - [sym_yield_expression] = STATE(1290), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1290), - [sym_jsx_fragment] = STATE(1290), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1290), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1290), - [sym_await_expression] = STATE(1290), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1290), - [sym_augmented_assignment_expression] = STATE(1290), - [sym_ternary_expression] = STATE(1290), - [sym_binary_expression] = STATE(1290), - [sym_unary_expression] = STATE(1290), - [sym_update_expression] = STATE(1290), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1290), - [sym_as_expression] = STATE(1290), - [sym_internal_module] = STATE(1290), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), - [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), - [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(511), - [sym_super] = ACTIONS(511), - [sym_true] = ACTIONS(511), - [sym_false] = ACTIONS(511), - [sym_null] = ACTIONS(511), - [sym_undefined] = ACTIONS(511), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), - }, - [410] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1191), - [sym_yield_expression] = STATE(1191), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1191), - [sym_jsx_fragment] = STATE(1191), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1191), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1191), - [sym_await_expression] = STATE(1191), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1191), - [sym_augmented_assignment_expression] = STATE(1191), - [sym_ternary_expression] = STATE(1191), - [sym_binary_expression] = STATE(1191), - [sym_unary_expression] = STATE(1191), - [sym_update_expression] = STATE(1191), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1191), - [sym_as_expression] = STATE(1191), - [sym_internal_module] = STATE(1191), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), - }, - [411] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1289), - [sym_yield_expression] = STATE(1289), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1289), - [sym_jsx_fragment] = STATE(1289), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1289), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1289), - [sym_await_expression] = STATE(1289), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1289), - [sym_augmented_assignment_expression] = STATE(1289), - [sym_ternary_expression] = STATE(1289), - [sym_binary_expression] = STATE(1289), - [sym_unary_expression] = STATE(1289), - [sym_update_expression] = STATE(1289), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [412] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(963), + [sym_yield_expression] = STATE(963), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(963), + [sym_jsx_fragment] = STATE(963), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(963), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(963), + [sym_await_expression] = STATE(963), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(963), + [sym_augmented_assignment_expression] = STATE(963), + [sym_ternary_expression] = STATE(963), + [sym_binary_expression] = STATE(963), + [sym_unary_expression] = STATE(963), + [sym_update_expression] = STATE(963), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1289), - [sym_as_expression] = STATE(1289), - [sym_internal_module] = STATE(1289), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(963), + [sym_as_expression] = STATE(963), + [sym_internal_module] = STATE(963), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -50969,174 +51280,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), - }, - [412] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1233), - [sym_yield_expression] = STATE(1233), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1233), - [sym_jsx_fragment] = STATE(1233), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1233), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1233), - [sym_await_expression] = STATE(1233), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1233), - [sym_augmented_assignment_expression] = STATE(1233), - [sym_ternary_expression] = STATE(1233), - [sym_binary_expression] = STATE(1233), - [sym_unary_expression] = STATE(1233), - [sym_update_expression] = STATE(1233), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1233), - [sym_as_expression] = STATE(1233), - [sym_internal_module] = STATE(1233), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, [413] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(789), - [sym__expression] = STATE(1286), - [sym_yield_expression] = STATE(1286), - [sym_object] = STATE(1428), - [sym_array] = STATE(1450), - [sym_jsx_element] = STATE(1286), - [sym_jsx_fragment] = STATE(1286), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1286), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3252), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1286), - [sym_await_expression] = STATE(1286), - [sym_member_expression] = STATE(789), - [sym_subscript_expression] = STATE(789), - [sym_assignment_expression] = STATE(1286), - [sym_augmented_assignment_expression] = STATE(1286), - [sym_ternary_expression] = STATE(1286), - [sym_binary_expression] = STATE(1286), - [sym_unary_expression] = STATE(1286), - [sym_update_expression] = STATE(1286), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1007), + [sym_yield_expression] = STATE(1007), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1007), + [sym_jsx_fragment] = STATE(1007), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1007), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1007), + [sym_await_expression] = STATE(1007), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(1007), + [sym_ternary_expression] = STATE(1007), + [sym_binary_expression] = STATE(1007), + [sym_unary_expression] = STATE(1007), + [sym_update_expression] = STATE(1007), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1286), - [sym_as_expression] = STATE(1286), - [sym_internal_module] = STATE(1286), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(863), - [anon_sym_export] = ACTIONS(631), - [anon_sym_namespace] = ACTIONS(633), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1007), + [sym_as_expression] = STATE(1007), + [sym_internal_module] = STATE(1007), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(557), + [anon_sym_export] = ACTIONS(527), + [anon_sym_namespace] = ACTIONS(529), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(631), - [anon_sym_typeof] = ACTIONS(661), + [anon_sym_type] = ACTIONS(527), + [anon_sym_typeof] = ACTIONS(497), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(461), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(643), + [anon_sym_await] = ACTIONS(467), + [anon_sym_yield] = ACTIONS(469), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), - [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(647), + [anon_sym_async] = ACTIONS(539), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_void] = ACTIONS(661), - [anon_sym_delete] = ACTIONS(661), - [anon_sym_PLUS_PLUS] = ACTIONS(663), - [anon_sym_DASH_DASH] = ACTIONS(663), + [anon_sym_new] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_TILDE] = ACTIONS(461), + [anon_sym_void] = ACTIONS(497), + [anon_sym_delete] = ACTIONS(497), + [anon_sym_PLUS_PLUS] = ACTIONS(499), + [anon_sym_DASH_DASH] = ACTIONS(499), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -51149,59 +51370,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [anon_sym_declare] = ACTIONS(631), - [anon_sym_public] = ACTIONS(631), - [anon_sym_private] = ACTIONS(631), - [anon_sym_protected] = ACTIONS(631), - [anon_sym_module] = ACTIONS(631), - [anon_sym_any] = ACTIONS(631), - [anon_sym_number] = ACTIONS(631), - [anon_sym_boolean] = ACTIONS(631), - [anon_sym_string] = ACTIONS(631), - [anon_sym_symbol] = ACTIONS(631), - [sym_readonly] = ACTIONS(631), + [anon_sym_static] = ACTIONS(527), + [anon_sym_get] = ACTIONS(527), + [anon_sym_set] = ACTIONS(527), + [anon_sym_declare] = ACTIONS(527), + [anon_sym_public] = ACTIONS(527), + [anon_sym_private] = ACTIONS(527), + [anon_sym_protected] = ACTIONS(527), + [anon_sym_module] = ACTIONS(527), + [anon_sym_any] = ACTIONS(527), + [anon_sym_number] = ACTIONS(527), + [anon_sym_boolean] = ACTIONS(527), + [anon_sym_string] = ACTIONS(527), + [anon_sym_symbol] = ACTIONS(527), + [sym_readonly] = ACTIONS(527), }, [414] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(723), - [sym__expression] = STATE(1014), - [sym_yield_expression] = STATE(1014), - [sym_object] = STATE(1305), - [sym_array] = STATE(1304), - [sym_jsx_element] = STATE(1014), - [sym_jsx_fragment] = STATE(1014), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1014), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3233), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1014), - [sym_await_expression] = STATE(1014), - [sym_member_expression] = STATE(723), - [sym_subscript_expression] = STATE(723), - [sym_assignment_expression] = STATE(1014), - [sym_augmented_assignment_expression] = STATE(1014), - [sym_ternary_expression] = STATE(1014), - [sym_binary_expression] = STATE(1014), - [sym_unary_expression] = STATE(1014), - [sym_update_expression] = STATE(1014), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(730), + [sym__expression] = STATE(1007), + [sym_yield_expression] = STATE(1007), + [sym_object] = STATE(1275), + [sym_array] = STATE(1274), + [sym_jsx_element] = STATE(1007), + [sym_jsx_fragment] = STATE(1007), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1007), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3168), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1007), + [sym_await_expression] = STATE(1007), + [sym_member_expression] = STATE(730), + [sym_subscript_expression] = STATE(730), + [sym_assignment_expression] = STATE(1007), + [sym_augmented_assignment_expression] = STATE(1007), + [sym_ternary_expression] = STATE(1007), + [sym_binary_expression] = STATE(1007), + [sym_unary_expression] = STATE(1007), + [sym_update_expression] = STATE(1007), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1014), - [sym_as_expression] = STATE(1014), - [sym_internal_module] = STATE(1014), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1007), + [sym_as_expression] = STATE(1007), + [sym_internal_module] = STATE(1007), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), [sym_identifier] = ACTIONS(557), [anon_sym_export] = ACTIONS(527), [anon_sym_namespace] = ACTIONS(529), @@ -51255,68 +51476,158 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(527), }, [415] = { - [sym_import] = STATE(1147), - [sym_parenthesized_expression] = STATE(793), - [sym__expression] = STATE(1188), - [sym_yield_expression] = STATE(1188), - [sym_object] = STATE(1456), - [sym_array] = STATE(1441), - [sym_jsx_element] = STATE(1188), - [sym_jsx_fragment] = STATE(1188), - [sym_jsx_opening_element] = STATE(2064), - [sym_jsx_self_closing_element] = STATE(1188), - [sym_class] = STATE(1147), - [sym_function] = STATE(1147), - [sym_generator_function] = STATE(1147), - [sym_arrow_function] = STATE(1147), - [sym__call_signature] = STATE(3118), - [sym_call_expression] = STATE(1147), - [sym_new_expression] = STATE(1188), - [sym_await_expression] = STATE(1188), - [sym_member_expression] = STATE(793), - [sym_subscript_expression] = STATE(793), - [sym_assignment_expression] = STATE(1188), - [sym_augmented_assignment_expression] = STATE(1188), - [sym_ternary_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_unary_expression] = STATE(1188), - [sym_update_expression] = STATE(1188), - [sym_string] = STATE(1147), - [sym_template_string] = STATE(1147), - [sym_regex] = STATE(1147), - [sym_meta_property] = STATE(1147), + [sym_import] = STATE(1473), + [sym_parenthesized_expression] = STATE(765), + [sym__expression] = STATE(1037), + [sym_yield_expression] = STATE(1037), + [sym_object] = STATE(1379), + [sym_array] = STATE(1380), + [sym_jsx_element] = STATE(1037), + [sym_jsx_fragment] = STATE(1037), + [sym_jsx_opening_element] = STATE(2038), + [sym_jsx_self_closing_element] = STATE(1037), + [sym_class] = STATE(1473), + [sym_function] = STATE(1473), + [sym_generator_function] = STATE(1473), + [sym_arrow_function] = STATE(1473), + [sym__call_signature] = STATE(3253), + [sym_call_expression] = STATE(1473), + [sym_new_expression] = STATE(1037), + [sym_await_expression] = STATE(1037), + [sym_member_expression] = STATE(765), + [sym_subscript_expression] = STATE(765), + [sym_assignment_expression] = STATE(1037), + [sym_augmented_assignment_expression] = STATE(1037), + [sym_ternary_expression] = STATE(1037), + [sym_binary_expression] = STATE(1037), + [sym_unary_expression] = STATE(1037), + [sym_update_expression] = STATE(1037), + [sym_string] = STATE(1473), + [sym_template_string] = STATE(1473), + [sym_regex] = STATE(1473), + [sym_meta_property] = STATE(1473), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1188), - [sym_as_expression] = STATE(1188), - [sym_internal_module] = STATE(1188), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2527), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(605), - [anon_sym_namespace] = ACTIONS(609), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1037), + [sym_as_expression] = STATE(1037), + [sym_internal_module] = STATE(1037), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(581), + [anon_sym_export] = ACTIONS(583), + [anon_sym_namespace] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(589), + [anon_sym_type] = ACTIONS(583), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(599), + [anon_sym_function] = ACTIONS(601), + [anon_sym_new] = ACTIONS(75), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(19), + [anon_sym_delete] = ACTIONS(19), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_static] = ACTIONS(583), + [anon_sym_get] = ACTIONS(583), + [anon_sym_set] = ACTIONS(583), + [anon_sym_declare] = ACTIONS(583), + [anon_sym_public] = ACTIONS(583), + [anon_sym_private] = ACTIONS(583), + [anon_sym_protected] = ACTIONS(583), + [anon_sym_module] = ACTIONS(583), + [anon_sym_any] = ACTIONS(583), + [anon_sym_number] = ACTIONS(583), + [anon_sym_boolean] = ACTIONS(583), + [anon_sym_string] = ACTIONS(583), + [anon_sym_symbol] = ACTIONS(583), + [sym_readonly] = ACTIONS(583), + }, + [416] = { + [sym_import] = STATE(1088), + [sym_parenthesized_expression] = STATE(770), + [sym__expression] = STATE(1557), + [sym_yield_expression] = STATE(1557), + [sym_object] = STATE(1558), + [sym_array] = STATE(1554), + [sym_jsx_element] = STATE(1557), + [sym_jsx_fragment] = STATE(1557), + [sym_jsx_opening_element] = STATE(2056), + [sym_jsx_self_closing_element] = STATE(1557), + [sym_class] = STATE(1088), + [sym_function] = STATE(1088), + [sym_generator_function] = STATE(1088), + [sym_arrow_function] = STATE(1088), + [sym__call_signature] = STATE(3134), + [sym_call_expression] = STATE(1088), + [sym_new_expression] = STATE(1557), + [sym_await_expression] = STATE(1557), + [sym_member_expression] = STATE(770), + [sym_subscript_expression] = STATE(770), + [sym_assignment_expression] = STATE(1557), + [sym_augmented_assignment_expression] = STATE(1557), + [sym_ternary_expression] = STATE(1557), + [sym_binary_expression] = STATE(1557), + [sym_unary_expression] = STATE(1557), + [sym_update_expression] = STATE(1557), + [sym_string] = STATE(1088), + [sym_template_string] = STATE(1088), + [sym_regex] = STATE(1088), + [sym_meta_property] = STATE(1088), + [sym_decorator] = STATE(1901), + [sym_formal_parameters] = STATE(2340), + [sym_non_null_expression] = STATE(1557), + [sym_as_expression] = STATE(1557), + [sym_internal_module] = STATE(1557), + [sym_type_parameters] = STATE(2923), + [aux_sym_export_statement_repeat1] = STATE(2562), + [sym_identifier] = ACTIONS(843), + [anon_sym_export] = ACTIONS(653), + [anon_sym_namespace] = ACTIONS(655), [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_type] = ACTIONS(605), - [anon_sym_typeof] = ACTIONS(611), + [anon_sym_type] = ACTIONS(653), + [anon_sym_typeof] = ACTIONS(673), [anon_sym_import] = ACTIONS(459), - [anon_sym_BANG] = ACTIONS(625), + [anon_sym_BANG] = ACTIONS(659), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_await] = ACTIONS(615), - [anon_sym_yield] = ACTIONS(617), + [anon_sym_await] = ACTIONS(661), + [anon_sym_yield] = ACTIONS(663), [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LT] = ACTIONS(473), [anon_sym_SLASH] = ACTIONS(475), [anon_sym_class] = ACTIONS(477), - [anon_sym_async] = ACTIONS(619), + [anon_sym_async] = ACTIONS(665), [anon_sym_function] = ACTIONS(481), - [anon_sym_new] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_void] = ACTIONS(611), - [anon_sym_delete] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_new] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_DASH] = ACTIONS(851), + [anon_sym_TILDE] = ACTIONS(659), + [anon_sym_void] = ACTIONS(673), + [anon_sym_delete] = ACTIONS(673), + [anon_sym_PLUS_PLUS] = ACTIONS(675), + [anon_sym_DASH_DASH] = ACTIONS(675), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), @@ -51329,286 +51640,109 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(511), [sym_undefined] = ACTIONS(511), [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(605), - [anon_sym_get] = ACTIONS(605), - [anon_sym_set] = ACTIONS(605), - [anon_sym_declare] = ACTIONS(605), - [anon_sym_public] = ACTIONS(605), - [anon_sym_private] = ACTIONS(605), - [anon_sym_protected] = ACTIONS(605), - [anon_sym_module] = ACTIONS(605), - [anon_sym_any] = ACTIONS(605), - [anon_sym_number] = ACTIONS(605), - [anon_sym_boolean] = ACTIONS(605), - [anon_sym_string] = ACTIONS(605), - [anon_sym_symbol] = ACTIONS(605), - [sym_readonly] = ACTIONS(605), - }, - [416] = { - [sym_import] = STATE(1696), - [sym_parenthesized_expression] = STATE(785), - [sym__expression] = STATE(1239), - [sym_yield_expression] = STATE(1239), - [sym_object] = STATE(1462), - [sym_array] = STATE(1460), - [sym_jsx_element] = STATE(1239), - [sym_jsx_fragment] = STATE(1239), - [sym_jsx_opening_element] = STATE(2054), - [sym_jsx_self_closing_element] = STATE(1239), - [sym_class] = STATE(1696), - [sym_function] = STATE(1696), - [sym_generator_function] = STATE(1696), - [sym_arrow_function] = STATE(1696), - [sym__call_signature] = STATE(3313), - [sym_call_expression] = STATE(1696), - [sym_new_expression] = STATE(1239), - [sym_await_expression] = STATE(1239), - [sym_member_expression] = STATE(785), - [sym_subscript_expression] = STATE(785), - [sym_assignment_expression] = STATE(1239), - [sym_augmented_assignment_expression] = STATE(1239), - [sym_ternary_expression] = STATE(1239), - [sym_binary_expression] = STATE(1239), - [sym_unary_expression] = STATE(1239), - [sym_update_expression] = STATE(1239), - [sym_string] = STATE(1696), - [sym_template_string] = STATE(1696), - [sym_regex] = STATE(1696), - [sym_meta_property] = STATE(1696), - [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(2406), - [sym_non_null_expression] = STATE(1239), - [sym_as_expression] = STATE(1239), - [sym_internal_module] = STATE(1239), - [sym_type_parameters] = STATE(2899), - [aux_sym_export_statement_repeat1] = STATE(2601), - [sym_identifier] = ACTIONS(873), - [anon_sym_export] = ACTIONS(675), - [anon_sym_namespace] = ACTIONS(677), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_type] = ACTIONS(675), - [anon_sym_typeof] = ACTIONS(711), - [anon_sym_import] = ACTIONS(683), - [anon_sym_BANG] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_await] = ACTIONS(689), - [anon_sym_yield] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(697), - [anon_sym_class] = ACTIONS(699), - [anon_sym_async] = ACTIONS(701), - [anon_sym_function] = ACTIONS(703), - [anon_sym_new] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(889), - [anon_sym_DASH] = ACTIONS(889), - [anon_sym_TILDE] = ACTIONS(685), - [anon_sym_void] = ACTIONS(711), - [anon_sym_delete] = ACTIONS(711), - [anon_sym_PLUS_PLUS] = ACTIONS(713), - [anon_sym_DASH_DASH] = ACTIONS(713), - [anon_sym_DQUOTE] = ACTIONS(715), - [anon_sym_SQUOTE] = ACTIONS(717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(719), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(725), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(675), - [anon_sym_get] = ACTIONS(675), - [anon_sym_set] = ACTIONS(675), - [anon_sym_declare] = ACTIONS(675), - [anon_sym_public] = ACTIONS(675), - [anon_sym_private] = ACTIONS(675), - [anon_sym_protected] = ACTIONS(675), - [anon_sym_module] = ACTIONS(675), - [anon_sym_any] = ACTIONS(675), - [anon_sym_number] = ACTIONS(675), - [anon_sym_boolean] = ACTIONS(675), - [anon_sym_string] = ACTIONS(675), - [anon_sym_symbol] = ACTIONS(675), - [sym_readonly] = ACTIONS(675), + [anon_sym_static] = ACTIONS(653), + [anon_sym_get] = ACTIONS(653), + [anon_sym_set] = ACTIONS(653), + [anon_sym_declare] = ACTIONS(653), + [anon_sym_public] = ACTIONS(653), + [anon_sym_private] = ACTIONS(653), + [anon_sym_protected] = ACTIONS(653), + [anon_sym_module] = ACTIONS(653), + [anon_sym_any] = ACTIONS(653), + [anon_sym_number] = ACTIONS(653), + [anon_sym_boolean] = ACTIONS(653), + [anon_sym_string] = ACTIONS(653), + [anon_sym_symbol] = ACTIONS(653), + [sym_readonly] = ACTIONS(653), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(921), - [sym_identifier] = ACTIONS(923), - [anon_sym_export] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_namespace] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(921), - [anon_sym_COMMA] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_type] = ACTIONS(923), - [anon_sym_typeof] = ACTIONS(923), - [anon_sym_import] = ACTIONS(923), - [anon_sym_var] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(921), - [anon_sym_if] = ACTIONS(923), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_await] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_with] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_debugger] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_throw] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(921), - [anon_sym_case] = ACTIONS(923), - [anon_sym_yield] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(921), - [anon_sym_LT] = ACTIONS(921), - [anon_sym_GT] = ACTIONS(921), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_class] = ACTIONS(923), - [anon_sym_async] = ACTIONS(923), - [anon_sym_function] = ACTIONS(923), - [anon_sym_EQ_GT] = ACTIONS(921), - [anon_sym_new] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(921), - [anon_sym_AMP] = ACTIONS(921), - [anon_sym_PIPE] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_TILDE] = ACTIONS(921), - [anon_sym_void] = ACTIONS(923), - [anon_sym_delete] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(921), - [anon_sym_DASH_DASH] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(921), - [anon_sym_SQUOTE] = ACTIONS(921), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(921), - [sym_number] = ACTIONS(921), - [sym_this] = ACTIONS(923), - [sym_super] = ACTIONS(923), - [sym_true] = ACTIONS(923), - [sym_false] = ACTIONS(923), - [sym_null] = ACTIONS(923), - [sym_undefined] = ACTIONS(923), - [anon_sym_AT] = ACTIONS(921), - [anon_sym_static] = ACTIONS(923), - [anon_sym_abstract] = ACTIONS(923), - [anon_sym_get] = ACTIONS(923), - [anon_sym_set] = ACTIONS(923), - [anon_sym_declare] = ACTIONS(923), - [anon_sym_public] = ACTIONS(923), - [anon_sym_private] = ACTIONS(923), - [anon_sym_protected] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_any] = ACTIONS(923), - [anon_sym_number] = ACTIONS(923), - [anon_sym_boolean] = ACTIONS(923), - [anon_sym_string] = ACTIONS(923), - [anon_sym_symbol] = ACTIONS(923), - [anon_sym_interface] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [sym_readonly] = ACTIONS(923), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_identifier] = ACTIONS(1009), + [anon_sym_export] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_EQ] = ACTIONS(1009), + [anon_sym_namespace] = ACTIONS(1009), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_typeof] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(1009), + [anon_sym_var] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1007), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1009), + [anon_sym_switch] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(1009), + [anon_sym_try] = ACTIONS(1009), + [anon_sym_with] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_debugger] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_throw] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_COLON] = ACTIONS(1007), + [anon_sym_case] = ACTIONS(1009), + [anon_sym_yield] = ACTIONS(1009), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_RBRACK] = ACTIONS(1007), + [anon_sym_LT] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1007), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_class] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_function] = ACTIONS(1009), + [anon_sym_EQ_GT] = ACTIONS(1007), + [anon_sym_new] = ACTIONS(1009), + [anon_sym_QMARK] = ACTIONS(1007), + [anon_sym_AMP] = ACTIONS(1007), + [anon_sym_PIPE] = ACTIONS(1007), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_TILDE] = ACTIONS(1007), + [anon_sym_void] = ACTIONS(1009), + [anon_sym_delete] = ACTIONS(1009), + [anon_sym_PLUS_PLUS] = ACTIONS(1007), + [anon_sym_DASH_DASH] = ACTIONS(1007), + [anon_sym_DQUOTE] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1007), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1007), + [sym_number] = ACTIONS(1007), + [sym_this] = ACTIONS(1009), + [sym_super] = ACTIONS(1009), + [sym_true] = ACTIONS(1009), + [sym_false] = ACTIONS(1009), + [sym_null] = ACTIONS(1009), + [sym_undefined] = ACTIONS(1009), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_abstract] = ACTIONS(1009), + [anon_sym_get] = ACTIONS(1009), + [anon_sym_set] = ACTIONS(1009), + [anon_sym_declare] = ACTIONS(1009), + [anon_sym_public] = ACTIONS(1009), + [anon_sym_private] = ACTIONS(1009), + [anon_sym_protected] = ACTIONS(1009), + [anon_sym_module] = ACTIONS(1009), + [anon_sym_any] = ACTIONS(1009), + [anon_sym_number] = ACTIONS(1009), + [anon_sym_boolean] = ACTIONS(1009), + [anon_sym_string] = ACTIONS(1009), + [anon_sym_symbol] = ACTIONS(1009), + [anon_sym_interface] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [sym_readonly] = ACTIONS(1009), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(1013), - [sym_identifier] = ACTIONS(1015), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_default] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1015), - [anon_sym_namespace] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_type] = ACTIONS(1015), - [anon_sym_typeof] = ACTIONS(1015), - [anon_sym_import] = ACTIONS(1015), - [anon_sym_var] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1013), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_switch] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_await] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_with] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_debugger] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_throw] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_COLON] = ACTIONS(1013), - [anon_sym_case] = ACTIONS(1015), - [anon_sym_yield] = ACTIONS(1015), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1013), - [anon_sym_LT] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1013), - [anon_sym_SLASH] = ACTIONS(1015), - [anon_sym_class] = ACTIONS(1015), - [anon_sym_async] = ACTIONS(1015), - [anon_sym_function] = ACTIONS(1015), - [anon_sym_EQ_GT] = ACTIONS(1013), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_TILDE] = ACTIONS(1013), - [anon_sym_void] = ACTIONS(1015), - [anon_sym_delete] = ACTIONS(1015), - [anon_sym_PLUS_PLUS] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1013), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1013), - [sym_number] = ACTIONS(1013), - [sym_this] = ACTIONS(1015), - [sym_super] = ACTIONS(1015), - [sym_true] = ACTIONS(1015), - [sym_false] = ACTIONS(1015), - [sym_null] = ACTIONS(1015), - [sym_undefined] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym_static] = ACTIONS(1015), - [anon_sym_abstract] = ACTIONS(1015), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1015), - [anon_sym_declare] = ACTIONS(1015), - [anon_sym_public] = ACTIONS(1015), - [anon_sym_private] = ACTIONS(1015), - [anon_sym_protected] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_any] = ACTIONS(1015), - [anon_sym_number] = ACTIONS(1015), - [anon_sym_boolean] = ACTIONS(1015), - [anon_sym_string] = ACTIONS(1015), - [anon_sym_symbol] = ACTIONS(1015), - [anon_sym_interface] = ACTIONS(1015), - [anon_sym_enum] = ACTIONS(1015), - [sym_readonly] = ACTIONS(1015), - }, - [419] = { [ts_builtin_sym_end] = ACTIONS(1407), [sym_identifier] = ACTIONS(1409), [anon_sym_export] = ACTIONS(1409), @@ -51649,7 +51783,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(1407), [anon_sym_GT] = ACTIONS(1407), [anon_sym_SLASH] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1053), + [anon_sym_DOT] = ACTIONS(985), [anon_sym_class] = ACTIONS(1409), [anon_sym_async] = ACTIONS(1409), [anon_sym_function] = ACTIONS(1409), @@ -51695,106 +51829,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1409), [sym_readonly] = ACTIONS(1409), }, - [420] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1413), - [anon_sym_export] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_EQ] = ACTIONS(1413), - [anon_sym_namespace] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_COMMA] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_typeof] = ACTIONS(1413), - [anon_sym_import] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_await] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_try] = ACTIONS(1413), - [anon_sym_with] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_debugger] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_throw] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_RBRACK] = ACTIONS(1411), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_SLASH] = ACTIONS(1413), - [anon_sym_class] = ACTIONS(1413), - [anon_sym_async] = ACTIONS(1413), - [anon_sym_function] = ACTIONS(1413), - [anon_sym_EQ_GT] = ACTIONS(1411), - [anon_sym_new] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_delete] = ACTIONS(1413), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1411), - [sym_number] = ACTIONS(1411), - [sym_this] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_true] = ACTIONS(1413), - [sym_false] = ACTIONS(1413), - [sym_null] = ACTIONS(1413), - [sym_undefined] = ACTIONS(1413), - [anon_sym_AT] = ACTIONS(1411), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_abstract] = ACTIONS(1413), - [anon_sym_get] = ACTIONS(1413), - [anon_sym_set] = ACTIONS(1413), - [anon_sym_declare] = ACTIONS(1413), - [anon_sym_public] = ACTIONS(1413), - [anon_sym_private] = ACTIONS(1413), - [anon_sym_protected] = ACTIONS(1413), - [anon_sym_module] = ACTIONS(1413), - [anon_sym_any] = ACTIONS(1413), - [anon_sym_number] = ACTIONS(1413), - [anon_sym_boolean] = ACTIONS(1413), - [anon_sym_string] = ACTIONS(1413), - [anon_sym_symbol] = ACTIONS(1413), - [anon_sym_implements] = ACTIONS(1413), - [anon_sym_interface] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [sym_readonly] = ACTIONS(1413), + [419] = { + [ts_builtin_sym_end] = ACTIONS(1025), + [sym_identifier] = ACTIONS(1027), + [anon_sym_export] = ACTIONS(1027), + [anon_sym_default] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_namespace] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_type] = ACTIONS(1027), + [anon_sym_typeof] = ACTIONS(1027), + [anon_sym_import] = ACTIONS(1027), + [anon_sym_var] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_switch] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_await] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_try] = ACTIONS(1027), + [anon_sym_with] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_debugger] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_case] = ACTIONS(1027), + [anon_sym_yield] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1025), + [anon_sym_RBRACK] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1027), + [anon_sym_class] = ACTIONS(1027), + [anon_sym_async] = ACTIONS(1027), + [anon_sym_function] = ACTIONS(1027), + [anon_sym_EQ_GT] = ACTIONS(1025), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1025), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_TILDE] = ACTIONS(1025), + [anon_sym_void] = ACTIONS(1027), + [anon_sym_delete] = ACTIONS(1027), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1025), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1025), + [sym_number] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), + [sym_super] = ACTIONS(1027), + [sym_true] = ACTIONS(1027), + [sym_false] = ACTIONS(1027), + [sym_null] = ACTIONS(1027), + [sym_undefined] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_abstract] = ACTIONS(1027), + [anon_sym_get] = ACTIONS(1027), + [anon_sym_set] = ACTIONS(1027), + [anon_sym_declare] = ACTIONS(1027), + [anon_sym_public] = ACTIONS(1027), + [anon_sym_private] = ACTIONS(1027), + [anon_sym_protected] = ACTIONS(1027), + [anon_sym_module] = ACTIONS(1027), + [anon_sym_any] = ACTIONS(1027), + [anon_sym_number] = ACTIONS(1027), + [anon_sym_boolean] = ACTIONS(1027), + [anon_sym_string] = ACTIONS(1027), + [anon_sym_symbol] = ACTIONS(1027), + [anon_sym_interface] = ACTIONS(1027), + [anon_sym_enum] = ACTIONS(1027), + [sym_readonly] = ACTIONS(1027), }, - [421] = { - [sym_string] = STATE(2197), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [aux_sym_object_repeat1] = STATE(2740), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), + [420] = { + [sym_string] = STATE(2204), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [aux_sym_object_repeat1] = STATE(2742), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_namespace] = ACTIONS(1411), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_type] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_type] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -51805,7 +51940,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1415), + [anon_sym_async] = ACTIONS(1413), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -51851,36 +51986,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1411), [anon_sym_get] = ACTIONS(1415), [anon_sym_set] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_public] = ACTIONS(1415), - [anon_sym_private] = ACTIONS(1415), - [anon_sym_protected] = ACTIONS(1415), - [anon_sym_module] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_number] = ACTIONS(1415), - [anon_sym_boolean] = ACTIONS(1415), - [anon_sym_string] = ACTIONS(1415), - [anon_sym_symbol] = ACTIONS(1415), - [sym_readonly] = ACTIONS(1415), + [anon_sym_declare] = ACTIONS(1411), + [anon_sym_public] = ACTIONS(1411), + [anon_sym_private] = ACTIONS(1411), + [anon_sym_protected] = ACTIONS(1411), + [anon_sym_module] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_number] = ACTIONS(1411), + [anon_sym_boolean] = ACTIONS(1411), + [anon_sym_string] = ACTIONS(1411), + [anon_sym_symbol] = ACTIONS(1411), + [sym_readonly] = ACTIONS(1411), [sym__automatic_semicolon] = ACTIONS(1119), }, - [422] = { - [sym_string] = STATE(2197), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [aux_sym_object_repeat1] = STATE(2740), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1415), + [421] = { + [sym_string] = STATE(2204), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [aux_sym_object_repeat1] = STATE(2824), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1411), [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_namespace] = ACTIONS(1411), [anon_sym_COMMA] = ACTIONS(1119), [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_type] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -51891,7 +52026,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1413), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -51937,36 +52072,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_get] = ACTIONS(1419), - [anon_sym_set] = ACTIONS(1419), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_public] = ACTIONS(1415), - [anon_sym_private] = ACTIONS(1415), - [anon_sym_protected] = ACTIONS(1415), - [anon_sym_module] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_number] = ACTIONS(1415), - [anon_sym_boolean] = ACTIONS(1415), - [anon_sym_string] = ACTIONS(1415), - [anon_sym_symbol] = ACTIONS(1415), - [sym_readonly] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1415), + [anon_sym_set] = ACTIONS(1415), + [anon_sym_declare] = ACTIONS(1411), + [anon_sym_public] = ACTIONS(1411), + [anon_sym_private] = ACTIONS(1411), + [anon_sym_protected] = ACTIONS(1411), + [anon_sym_module] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_number] = ACTIONS(1411), + [anon_sym_boolean] = ACTIONS(1411), + [anon_sym_string] = ACTIONS(1411), + [anon_sym_symbol] = ACTIONS(1411), + [sym_readonly] = ACTIONS(1417), [sym__automatic_semicolon] = ACTIONS(1119), }, - [423] = { - [sym_string] = STATE(2197), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [aux_sym_object_repeat1] = STATE(2778), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1415), + [422] = { + [sym_string] = STATE(2204), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [aux_sym_object_repeat1] = STATE(2824), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1411), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_namespace] = ACTIONS(1411), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_type] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -51977,7 +52112,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1415), + [anon_sym_async] = ACTIONS(1411), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -52023,36 +52158,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_get] = ACTIONS(1415), - [anon_sym_set] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_public] = ACTIONS(1415), - [anon_sym_private] = ACTIONS(1415), - [anon_sym_protected] = ACTIONS(1415), - [anon_sym_module] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_number] = ACTIONS(1415), - [anon_sym_boolean] = ACTIONS(1415), - [anon_sym_string] = ACTIONS(1415), - [anon_sym_symbol] = ACTIONS(1415), - [sym_readonly] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1411), + [anon_sym_set] = ACTIONS(1411), + [anon_sym_declare] = ACTIONS(1411), + [anon_sym_public] = ACTIONS(1411), + [anon_sym_private] = ACTIONS(1411), + [anon_sym_protected] = ACTIONS(1411), + [anon_sym_module] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_number] = ACTIONS(1411), + [anon_sym_boolean] = ACTIONS(1411), + [anon_sym_string] = ACTIONS(1411), + [anon_sym_symbol] = ACTIONS(1411), + [sym_readonly] = ACTIONS(1411), [sym__automatic_semicolon] = ACTIONS(1119), }, - [424] = { - [sym_string] = STATE(2197), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [aux_sym_object_repeat1] = STATE(2778), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1415), + [423] = { + [sym_string] = STATE(2204), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [aux_sym_object_repeat1] = STATE(2746), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1411), [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_namespace] = ACTIONS(1411), [anon_sym_COMMA] = ACTIONS(1119), [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_type] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -52063,7 +52198,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1413), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -52109,36 +52244,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_get] = ACTIONS(1419), - [anon_sym_set] = ACTIONS(1419), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_public] = ACTIONS(1415), - [anon_sym_private] = ACTIONS(1415), - [anon_sym_protected] = ACTIONS(1415), - [anon_sym_module] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_number] = ACTIONS(1415), - [anon_sym_boolean] = ACTIONS(1415), - [anon_sym_string] = ACTIONS(1415), - [anon_sym_symbol] = ACTIONS(1415), - [sym_readonly] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1415), + [anon_sym_set] = ACTIONS(1415), + [anon_sym_declare] = ACTIONS(1411), + [anon_sym_public] = ACTIONS(1411), + [anon_sym_private] = ACTIONS(1411), + [anon_sym_protected] = ACTIONS(1411), + [anon_sym_module] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_number] = ACTIONS(1411), + [anon_sym_boolean] = ACTIONS(1411), + [anon_sym_string] = ACTIONS(1411), + [anon_sym_symbol] = ACTIONS(1411), + [sym_readonly] = ACTIONS(1417), [sym__automatic_semicolon] = ACTIONS(1119), }, - [425] = { - [sym_string] = STATE(2197), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [aux_sym_object_repeat1] = STATE(2782), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1415), + [424] = { + [sym_string] = STATE(2204), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [aux_sym_object_repeat1] = STATE(2824), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1411), [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_namespace] = ACTIONS(1411), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -52149,7 +52284,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1413), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -52195,36 +52330,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_get] = ACTIONS(1419), - [anon_sym_set] = ACTIONS(1419), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_public] = ACTIONS(1415), - [anon_sym_private] = ACTIONS(1415), - [anon_sym_protected] = ACTIONS(1415), - [anon_sym_module] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_number] = ACTIONS(1415), - [anon_sym_boolean] = ACTIONS(1415), - [anon_sym_string] = ACTIONS(1415), - [anon_sym_symbol] = ACTIONS(1415), - [sym_readonly] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1415), + [anon_sym_set] = ACTIONS(1415), + [anon_sym_declare] = ACTIONS(1411), + [anon_sym_public] = ACTIONS(1411), + [anon_sym_private] = ACTIONS(1411), + [anon_sym_protected] = ACTIONS(1411), + [anon_sym_module] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_number] = ACTIONS(1411), + [anon_sym_boolean] = ACTIONS(1411), + [anon_sym_string] = ACTIONS(1411), + [anon_sym_symbol] = ACTIONS(1411), + [sym_readonly] = ACTIONS(1411), [sym__automatic_semicolon] = ACTIONS(1119), }, - [426] = { - [sym_string] = STATE(2197), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [aux_sym_object_repeat1] = STATE(2740), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1188), + [425] = { + [sym_string] = STATE(2204), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [aux_sym_object_repeat1] = STATE(2746), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_namespace] = ACTIONS(1411), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_type] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_type] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -52235,7 +52370,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1411), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -52281,36 +52416,122 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_get] = ACTIONS(1419), - [anon_sym_set] = ACTIONS(1419), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_public] = ACTIONS(1415), - [anon_sym_private] = ACTIONS(1415), - [anon_sym_protected] = ACTIONS(1415), - [anon_sym_module] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_number] = ACTIONS(1415), - [anon_sym_boolean] = ACTIONS(1415), - [anon_sym_string] = ACTIONS(1415), - [anon_sym_symbol] = ACTIONS(1415), - [sym_readonly] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1411), + [anon_sym_set] = ACTIONS(1411), + [anon_sym_declare] = ACTIONS(1411), + [anon_sym_public] = ACTIONS(1411), + [anon_sym_private] = ACTIONS(1411), + [anon_sym_protected] = ACTIONS(1411), + [anon_sym_module] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_number] = ACTIONS(1411), + [anon_sym_boolean] = ACTIONS(1411), + [anon_sym_string] = ACTIONS(1411), + [anon_sym_symbol] = ACTIONS(1411), + [sym_readonly] = ACTIONS(1411), [sym__automatic_semicolon] = ACTIONS(1119), }, + [426] = { + [ts_builtin_sym_end] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1421), + [anon_sym_export] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_type] = ACTIONS(1421), + [anon_sym_typeof] = ACTIONS(1421), + [anon_sym_import] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_await] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [anon_sym_with] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_debugger] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_throw] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_case] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_RBRACK] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_class] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_function] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1419), + [anon_sym_new] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_delete] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1419), + [sym_number] = ACTIONS(1419), + [sym_this] = ACTIONS(1421), + [sym_super] = ACTIONS(1421), + [sym_true] = ACTIONS(1421), + [sym_false] = ACTIONS(1421), + [sym_null] = ACTIONS(1421), + [sym_undefined] = ACTIONS(1421), + [anon_sym_AT] = ACTIONS(1419), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_abstract] = ACTIONS(1421), + [anon_sym_get] = ACTIONS(1421), + [anon_sym_set] = ACTIONS(1421), + [anon_sym_declare] = ACTIONS(1421), + [anon_sym_public] = ACTIONS(1421), + [anon_sym_private] = ACTIONS(1421), + [anon_sym_protected] = ACTIONS(1421), + [anon_sym_module] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_number] = ACTIONS(1421), + [anon_sym_boolean] = ACTIONS(1421), + [anon_sym_string] = ACTIONS(1421), + [anon_sym_symbol] = ACTIONS(1421), + [anon_sym_implements] = ACTIONS(1421), + [anon_sym_interface] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [sym_readonly] = ACTIONS(1421), + }, [427] = { - [sym_string] = STATE(2197), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [aux_sym_object_repeat1] = STATE(2782), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), + [sym_string] = STATE(2204), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [aux_sym_object_repeat1] = STATE(2746), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_namespace] = ACTIONS(1411), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_type] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -52321,7 +52542,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1415), + [anon_sym_async] = ACTIONS(1413), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -52367,36 +52588,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1411), [anon_sym_get] = ACTIONS(1415), [anon_sym_set] = ACTIONS(1415), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_public] = ACTIONS(1415), - [anon_sym_private] = ACTIONS(1415), - [anon_sym_protected] = ACTIONS(1415), - [anon_sym_module] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_number] = ACTIONS(1415), - [anon_sym_boolean] = ACTIONS(1415), - [anon_sym_string] = ACTIONS(1415), - [anon_sym_symbol] = ACTIONS(1415), - [sym_readonly] = ACTIONS(1415), + [anon_sym_declare] = ACTIONS(1411), + [anon_sym_public] = ACTIONS(1411), + [anon_sym_private] = ACTIONS(1411), + [anon_sym_protected] = ACTIONS(1411), + [anon_sym_module] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_number] = ACTIONS(1411), + [anon_sym_boolean] = ACTIONS(1411), + [anon_sym_string] = ACTIONS(1411), + [anon_sym_symbol] = ACTIONS(1411), + [sym_readonly] = ACTIONS(1411), [sym__automatic_semicolon] = ACTIONS(1119), }, [428] = { - [sym_string] = STATE(2197), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [aux_sym_object_repeat1] = STATE(2782), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1188), + [sym_string] = STATE(2204), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [aux_sym_object_repeat1] = STATE(2742), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1133), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1415), + [anon_sym_namespace] = ACTIONS(1411), [anon_sym_COMMA] = ACTIONS(1119), [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1415), + [anon_sym_type] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -52407,7 +52628,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1411), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -52453,109 +52674,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_get] = ACTIONS(1419), - [anon_sym_set] = ACTIONS(1419), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_public] = ACTIONS(1415), - [anon_sym_private] = ACTIONS(1415), - [anon_sym_protected] = ACTIONS(1415), - [anon_sym_module] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_number] = ACTIONS(1415), - [anon_sym_boolean] = ACTIONS(1415), - [anon_sym_string] = ACTIONS(1415), - [anon_sym_symbol] = ACTIONS(1415), - [sym_readonly] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1411), + [anon_sym_set] = ACTIONS(1411), + [anon_sym_declare] = ACTIONS(1411), + [anon_sym_public] = ACTIONS(1411), + [anon_sym_private] = ACTIONS(1411), + [anon_sym_protected] = ACTIONS(1411), + [anon_sym_module] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_number] = ACTIONS(1411), + [anon_sym_boolean] = ACTIONS(1411), + [anon_sym_string] = ACTIONS(1411), + [anon_sym_symbol] = ACTIONS(1411), + [sym_readonly] = ACTIONS(1411), [sym__automatic_semicolon] = ACTIONS(1119), }, [429] = { - [sym_string] = STATE(2197), - [sym__property_name] = STATE(2197), - [sym_computed_property_name] = STATE(2197), - [aux_sym_object_repeat1] = STATE(2778), - [sym_identifier] = ACTIONS(1415), - [anon_sym_export] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1188), - [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1415), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_type] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1135), - [anon_sym_in] = ACTIONS(1133), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1138), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1143), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_EQ_GT] = ACTIONS(1154), - [anon_sym_QMARK_DOT] = ACTIONS(1156), - [anon_sym_PLUS_EQ] = ACTIONS(1158), - [anon_sym_DASH_EQ] = ACTIONS(1158), - [anon_sym_STAR_EQ] = ACTIONS(1158), - [anon_sym_SLASH_EQ] = ACTIONS(1158), - [anon_sym_PERCENT_EQ] = ACTIONS(1158), - [anon_sym_CARET_EQ] = ACTIONS(1158), - [anon_sym_AMP_EQ] = ACTIONS(1158), - [anon_sym_PIPE_EQ] = ACTIONS(1158), - [anon_sym_GT_GT_EQ] = ACTIONS(1158), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1158), - [anon_sym_LT_LT_EQ] = ACTIONS(1158), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1158), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), - [anon_sym_QMARK] = ACTIONS(1143), - [anon_sym_AMP_AMP] = ACTIONS(1133), - [anon_sym_PIPE_PIPE] = ACTIONS(1133), - [anon_sym_GT_GT] = ACTIONS(1133), - [anon_sym_GT_GT_GT] = ACTIONS(1133), - [anon_sym_LT_LT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_STAR_STAR] = ACTIONS(1133), - [anon_sym_LT_EQ] = ACTIONS(1119), - [anon_sym_EQ_EQ] = ACTIONS(1133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1119), - [anon_sym_BANG_EQ] = ACTIONS(1133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1119), - [anon_sym_GT_EQ] = ACTIONS(1119), - [anon_sym_QMARK_QMARK] = ACTIONS(1133), - [anon_sym_instanceof] = ACTIONS(1133), - [anon_sym_PLUS_PLUS] = ACTIONS(1119), - [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1381), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_number] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1415), - [anon_sym_get] = ACTIONS(1419), - [anon_sym_set] = ACTIONS(1419), - [anon_sym_declare] = ACTIONS(1415), - [anon_sym_public] = ACTIONS(1415), - [anon_sym_private] = ACTIONS(1415), - [anon_sym_protected] = ACTIONS(1415), - [anon_sym_module] = ACTIONS(1415), - [anon_sym_any] = ACTIONS(1415), - [anon_sym_number] = ACTIONS(1415), - [anon_sym_boolean] = ACTIONS(1415), - [anon_sym_string] = ACTIONS(1415), - [anon_sym_symbol] = ACTIONS(1415), - [sym_readonly] = ACTIONS(1415), - [sym__automatic_semicolon] = ACTIONS(1119), - }, - [430] = { [ts_builtin_sym_end] = ACTIONS(1423), [sym_identifier] = ACTIONS(1425), [anon_sym_export] = ACTIONS(1425), @@ -52641,6 +52776,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1425), [sym_readonly] = ACTIONS(1425), }, + [430] = { + [sym_string] = STATE(2204), + [sym__property_name] = STATE(2204), + [sym_computed_property_name] = STATE(2204), + [aux_sym_object_repeat1] = STATE(2742), + [sym_identifier] = ACTIONS(1411), + [anon_sym_export] = ACTIONS(1411), + [anon_sym_STAR] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_as] = ACTIONS(1133), + [anon_sym_namespace] = ACTIONS(1411), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_type] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1135), + [anon_sym_in] = ACTIONS(1133), + [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(1138), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1143), + [anon_sym_GT] = ACTIONS(1133), + [anon_sym_SLASH] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_async] = ACTIONS(1413), + [anon_sym_EQ_GT] = ACTIONS(1154), + [anon_sym_QMARK_DOT] = ACTIONS(1156), + [anon_sym_PLUS_EQ] = ACTIONS(1158), + [anon_sym_DASH_EQ] = ACTIONS(1158), + [anon_sym_STAR_EQ] = ACTIONS(1158), + [anon_sym_SLASH_EQ] = ACTIONS(1158), + [anon_sym_PERCENT_EQ] = ACTIONS(1158), + [anon_sym_CARET_EQ] = ACTIONS(1158), + [anon_sym_AMP_EQ] = ACTIONS(1158), + [anon_sym_PIPE_EQ] = ACTIONS(1158), + [anon_sym_GT_GT_EQ] = ACTIONS(1158), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1158), + [anon_sym_LT_LT_EQ] = ACTIONS(1158), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1158), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1158), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1158), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1158), + [anon_sym_QMARK] = ACTIONS(1143), + [anon_sym_AMP_AMP] = ACTIONS(1133), + [anon_sym_PIPE_PIPE] = ACTIONS(1133), + [anon_sym_GT_GT] = ACTIONS(1133), + [anon_sym_GT_GT_GT] = ACTIONS(1133), + [anon_sym_LT_LT] = ACTIONS(1133), + [anon_sym_AMP] = ACTIONS(1133), + [anon_sym_CARET] = ACTIONS(1133), + [anon_sym_PIPE] = ACTIONS(1133), + [anon_sym_PLUS] = ACTIONS(1133), + [anon_sym_DASH] = ACTIONS(1133), + [anon_sym_PERCENT] = ACTIONS(1133), + [anon_sym_STAR_STAR] = ACTIONS(1133), + [anon_sym_LT_EQ] = ACTIONS(1119), + [anon_sym_EQ_EQ] = ACTIONS(1133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1119), + [anon_sym_BANG_EQ] = ACTIONS(1133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1119), + [anon_sym_GT_EQ] = ACTIONS(1119), + [anon_sym_QMARK_QMARK] = ACTIONS(1133), + [anon_sym_instanceof] = ACTIONS(1133), + [anon_sym_PLUS_PLUS] = ACTIONS(1119), + [anon_sym_DASH_DASH] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1381), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1119), + [sym_number] = ACTIONS(1383), + [anon_sym_static] = ACTIONS(1411), + [anon_sym_get] = ACTIONS(1415), + [anon_sym_set] = ACTIONS(1415), + [anon_sym_declare] = ACTIONS(1411), + [anon_sym_public] = ACTIONS(1411), + [anon_sym_private] = ACTIONS(1411), + [anon_sym_protected] = ACTIONS(1411), + [anon_sym_module] = ACTIONS(1411), + [anon_sym_any] = ACTIONS(1411), + [anon_sym_number] = ACTIONS(1411), + [anon_sym_boolean] = ACTIONS(1411), + [anon_sym_string] = ACTIONS(1411), + [anon_sym_symbol] = ACTIONS(1411), + [sym_readonly] = ACTIONS(1417), + [sym__automatic_semicolon] = ACTIONS(1119), + }, [431] = { [ts_builtin_sym_end] = ACTIONS(1427), [sym_identifier] = ACTIONS(1429), @@ -52762,7 +52983,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1431), [anon_sym_case] = ACTIONS(1433), [anon_sym_yield] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1431), [anon_sym_RBRACK] = ACTIONS(1431), [anon_sym_LT] = ACTIONS(1431), [anon_sym_GT] = ACTIONS(1431), @@ -52812,261 +53033,771 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1433), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1437), - [sym_identifier] = ACTIONS(1439), - [anon_sym_export] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_namespace] = ACTIONS(1439), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_COMMA] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_type] = ACTIONS(1439), - [anon_sym_typeof] = ACTIONS(1439), - [anon_sym_import] = ACTIONS(1439), - [anon_sym_var] = ACTIONS(1439), - [anon_sym_let] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1437), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_else] = ACTIONS(1439), - [anon_sym_switch] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_await] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_do] = ACTIONS(1439), - [anon_sym_try] = ACTIONS(1439), - [anon_sym_with] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_debugger] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_throw] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_case] = ACTIONS(1439), - [anon_sym_yield] = ACTIONS(1439), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_RBRACK] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_class] = ACTIONS(1439), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_function] = ACTIONS(1439), - [anon_sym_EQ_GT] = ACTIONS(1437), - [anon_sym_new] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_PIPE] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1437), - [anon_sym_void] = ACTIONS(1439), - [anon_sym_delete] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_DASH_DASH] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1437), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1437), - [sym_number] = ACTIONS(1437), - [sym_this] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_true] = ACTIONS(1439), - [sym_false] = ACTIONS(1439), - [sym_null] = ACTIONS(1439), - [sym_undefined] = ACTIONS(1439), - [anon_sym_AT] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_abstract] = ACTIONS(1439), - [anon_sym_get] = ACTIONS(1439), - [anon_sym_set] = ACTIONS(1439), - [anon_sym_declare] = ACTIONS(1439), - [anon_sym_public] = ACTIONS(1439), - [anon_sym_private] = ACTIONS(1439), - [anon_sym_protected] = ACTIONS(1439), - [anon_sym_module] = ACTIONS(1439), - [anon_sym_any] = ACTIONS(1439), - [anon_sym_number] = ACTIONS(1439), - [anon_sym_boolean] = ACTIONS(1439), - [anon_sym_string] = ACTIONS(1439), - [anon_sym_symbol] = ACTIONS(1439), - [anon_sym_interface] = ACTIONS(1439), - [anon_sym_enum] = ACTIONS(1439), - [sym_readonly] = ACTIONS(1439), + [ts_builtin_sym_end] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1437), + [anon_sym_export] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_namespace] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1437), + [anon_sym_typeof] = ACTIONS(1437), + [anon_sym_import] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_await] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [anon_sym_with] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_debugger] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_throw] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_case] = ACTIONS(1437), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_class] = ACTIONS(1437), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_function] = ACTIONS(1437), + [anon_sym_EQ_GT] = ACTIONS(1435), + [anon_sym_new] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_delete] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_number] = ACTIONS(1435), + [sym_this] = ACTIONS(1437), + [sym_super] = ACTIONS(1437), + [sym_true] = ACTIONS(1437), + [sym_false] = ACTIONS(1437), + [sym_null] = ACTIONS(1437), + [sym_undefined] = ACTIONS(1437), + [anon_sym_AT] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_abstract] = ACTIONS(1437), + [anon_sym_get] = ACTIONS(1437), + [anon_sym_set] = ACTIONS(1437), + [anon_sym_declare] = ACTIONS(1437), + [anon_sym_public] = ACTIONS(1437), + [anon_sym_private] = ACTIONS(1437), + [anon_sym_protected] = ACTIONS(1437), + [anon_sym_module] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_number] = ACTIONS(1437), + [anon_sym_boolean] = ACTIONS(1437), + [anon_sym_string] = ACTIONS(1437), + [anon_sym_symbol] = ACTIONS(1437), + [anon_sym_interface] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1437), + [sym_readonly] = ACTIONS(1437), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1441), - [sym_identifier] = ACTIONS(1443), - [anon_sym_export] = ACTIONS(1443), - [anon_sym_default] = ACTIONS(1443), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_namespace] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_type] = ACTIONS(1443), - [anon_sym_typeof] = ACTIONS(1443), - [anon_sym_import] = ACTIONS(1443), - [anon_sym_var] = ACTIONS(1443), - [anon_sym_let] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1443), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_if] = ACTIONS(1443), - [anon_sym_else] = ACTIONS(1443), - [anon_sym_switch] = ACTIONS(1443), - [anon_sym_for] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_await] = ACTIONS(1443), - [anon_sym_while] = ACTIONS(1443), - [anon_sym_do] = ACTIONS(1443), - [anon_sym_try] = ACTIONS(1443), - [anon_sym_with] = ACTIONS(1443), - [anon_sym_break] = ACTIONS(1443), - [anon_sym_continue] = ACTIONS(1443), - [anon_sym_debugger] = ACTIONS(1443), - [anon_sym_return] = ACTIONS(1443), - [anon_sym_throw] = ACTIONS(1443), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_case] = ACTIONS(1443), - [anon_sym_yield] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1441), - [anon_sym_LT] = ACTIONS(1441), - [anon_sym_GT] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1443), - [anon_sym_class] = ACTIONS(1443), - [anon_sym_async] = ACTIONS(1443), - [anon_sym_function] = ACTIONS(1443), - [anon_sym_EQ_GT] = ACTIONS(1441), - [anon_sym_new] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_void] = ACTIONS(1443), - [anon_sym_delete] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_DASH_DASH] = ACTIONS(1441), - [anon_sym_DQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1441), - [sym_number] = ACTIONS(1441), - [sym_this] = ACTIONS(1443), - [sym_super] = ACTIONS(1443), - [sym_true] = ACTIONS(1443), - [sym_false] = ACTIONS(1443), - [sym_null] = ACTIONS(1443), - [sym_undefined] = ACTIONS(1443), - [anon_sym_AT] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1443), - [anon_sym_abstract] = ACTIONS(1443), - [anon_sym_get] = ACTIONS(1443), - [anon_sym_set] = ACTIONS(1443), - [anon_sym_declare] = ACTIONS(1443), - [anon_sym_public] = ACTIONS(1443), - [anon_sym_private] = ACTIONS(1443), - [anon_sym_protected] = ACTIONS(1443), - [anon_sym_module] = ACTIONS(1443), - [anon_sym_any] = ACTIONS(1443), - [anon_sym_number] = ACTIONS(1443), - [anon_sym_boolean] = ACTIONS(1443), - [anon_sym_string] = ACTIONS(1443), - [anon_sym_symbol] = ACTIONS(1443), - [anon_sym_interface] = ACTIONS(1443), - [anon_sym_enum] = ACTIONS(1443), - [sym_readonly] = ACTIONS(1443), + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_identifier] = ACTIONS(1441), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_namespace] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_typeof] = ACTIONS(1441), + [anon_sym_import] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_await] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_try] = ACTIONS(1441), + [anon_sym_with] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_debugger] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_throw] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_case] = ACTIONS(1441), + [anon_sym_yield] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_RBRACK] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_class] = ACTIONS(1441), + [anon_sym_async] = ACTIONS(1441), + [anon_sym_function] = ACTIONS(1441), + [anon_sym_EQ_GT] = ACTIONS(1439), + [anon_sym_new] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_delete] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_number] = ACTIONS(1439), + [sym_this] = ACTIONS(1441), + [sym_super] = ACTIONS(1441), + [sym_true] = ACTIONS(1441), + [sym_false] = ACTIONS(1441), + [sym_null] = ACTIONS(1441), + [sym_undefined] = ACTIONS(1441), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_abstract] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_interface] = ACTIONS(1441), + [anon_sym_enum] = ACTIONS(1441), + [sym_readonly] = ACTIONS(1441), }, [435] = { - [sym__call_signature] = STATE(3290), - [sym_arguments] = STATE(1118), - [sym_formal_parameters] = STATE(2406), - [sym_type_arguments] = STATE(1012), - [sym_type_parameters] = STATE(2899), + [ts_builtin_sym_end] = ACTIONS(1443), [sym_identifier] = ACTIONS(1445), - [anon_sym_export] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_type] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1453), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_COLON] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_RBRACK] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1449), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_EQ] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_typeof] = ACTIONS(1445), + [anon_sym_import] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1443), + [anon_sym_await] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1445), + [anon_sym_with] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_debugger] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_throw] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_case] = ACTIONS(1445), + [anon_sym_yield] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_RBRACK] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_class] = ACTIONS(1445), + [anon_sym_async] = ACTIONS(1445), + [anon_sym_function] = ACTIONS(1445), + [anon_sym_EQ_GT] = ACTIONS(1443), + [anon_sym_new] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_delete] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_number] = ACTIONS(1443), + [sym_this] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_true] = ACTIONS(1445), + [sym_false] = ACTIONS(1445), + [sym_null] = ACTIONS(1445), + [sym_undefined] = ACTIONS(1445), + [anon_sym_AT] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_abstract] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_interface] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [sym_readonly] = ACTIONS(1445), + }, + [436] = { + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), + [anon_sym_export] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_namespace] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1449), + [anon_sym_typeof] = ACTIONS(1449), + [anon_sym_import] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_await] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1449), + [anon_sym_with] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_debugger] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_throw] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_case] = ACTIONS(1449), + [anon_sym_yield] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_RBRACK] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1447), [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_GT_GT_GT] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_class] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1449), + [anon_sym_function] = ACTIONS(1449), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1447), [anon_sym_PLUS] = ACTIONS(1449), [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_QMARK_QMARK] = ACTIONS(1449), - [anon_sym_instanceof] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_get] = ACTIONS(1447), - [anon_sym_set] = ACTIONS(1447), - [anon_sym_declare] = ACTIONS(1447), - [anon_sym_public] = ACTIONS(1447), - [anon_sym_private] = ACTIONS(1447), - [anon_sym_protected] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_number] = ACTIONS(1447), - [anon_sym_boolean] = ACTIONS(1447), - [anon_sym_string] = ACTIONS(1447), - [anon_sym_symbol] = ACTIONS(1447), - [sym_readonly] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_delete] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_number] = ACTIONS(1447), + [sym_this] = ACTIONS(1449), + [sym_super] = ACTIONS(1449), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_undefined] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_abstract] = ACTIONS(1449), + [anon_sym_get] = ACTIONS(1449), + [anon_sym_set] = ACTIONS(1449), + [anon_sym_declare] = ACTIONS(1449), + [anon_sym_public] = ACTIONS(1449), + [anon_sym_private] = ACTIONS(1449), + [anon_sym_protected] = ACTIONS(1449), + [anon_sym_module] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_number] = ACTIONS(1449), + [anon_sym_boolean] = ACTIONS(1449), + [anon_sym_string] = ACTIONS(1449), + [anon_sym_symbol] = ACTIONS(1449), + [anon_sym_interface] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [sym_readonly] = ACTIONS(1449), }, - [436] = { + [437] = { + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_identifier] = ACTIONS(1453), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_default] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_namespace] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_COMMA] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_type] = ACTIONS(1453), + [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_import] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_else] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_await] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_with] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_debugger] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_throw] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_case] = ACTIONS(1453), + [anon_sym_yield] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1453), + [anon_sym_async] = ACTIONS(1453), + [anon_sym_function] = ACTIONS(1453), + [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_new] = ACTIONS(1453), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_number] = ACTIONS(1451), + [sym_this] = ACTIONS(1453), + [sym_super] = ACTIONS(1453), + [sym_true] = ACTIONS(1453), + [sym_false] = ACTIONS(1453), + [sym_null] = ACTIONS(1453), + [sym_undefined] = ACTIONS(1453), + [anon_sym_AT] = ACTIONS(1451), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_abstract] = ACTIONS(1453), + [anon_sym_get] = ACTIONS(1453), + [anon_sym_set] = ACTIONS(1453), + [anon_sym_declare] = ACTIONS(1453), + [anon_sym_public] = ACTIONS(1453), + [anon_sym_private] = ACTIONS(1453), + [anon_sym_protected] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_number] = ACTIONS(1453), + [anon_sym_boolean] = ACTIONS(1453), + [anon_sym_string] = ACTIONS(1453), + [anon_sym_symbol] = ACTIONS(1453), + [anon_sym_interface] = ACTIONS(1453), + [anon_sym_enum] = ACTIONS(1453), + [sym_readonly] = ACTIONS(1453), + }, + [438] = { + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_namespace] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_typeof] = ACTIONS(1457), + [anon_sym_import] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_await] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_try] = ACTIONS(1457), + [anon_sym_with] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_debugger] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_throw] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_case] = ACTIONS(1457), + [anon_sym_yield] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACK] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_class] = ACTIONS(1457), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1457), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_delete] = ACTIONS(1457), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_number] = ACTIONS(1455), + [sym_this] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_true] = ACTIONS(1457), + [sym_false] = ACTIONS(1457), + [sym_null] = ACTIONS(1457), + [sym_undefined] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_abstract] = ACTIONS(1457), + [anon_sym_get] = ACTIONS(1457), + [anon_sym_set] = ACTIONS(1457), + [anon_sym_declare] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_protected] = ACTIONS(1457), + [anon_sym_module] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_number] = ACTIONS(1457), + [anon_sym_boolean] = ACTIONS(1457), + [anon_sym_string] = ACTIONS(1457), + [anon_sym_symbol] = ACTIONS(1457), + [anon_sym_interface] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [sym_readonly] = ACTIONS(1457), + }, + [439] = { + [ts_builtin_sym_end] = ACTIONS(1459), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_namespace] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_type] = ACTIONS(1461), + [anon_sym_typeof] = ACTIONS(1461), + [anon_sym_import] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_let] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_try] = ACTIONS(1461), + [anon_sym_with] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_debugger] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_throw] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_yield] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_RBRACK] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_class] = ACTIONS(1461), + [anon_sym_async] = ACTIONS(1461), + [anon_sym_function] = ACTIONS(1461), + [anon_sym_EQ_GT] = ACTIONS(1459), + [anon_sym_new] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_delete] = ACTIONS(1461), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_number] = ACTIONS(1459), + [sym_this] = ACTIONS(1461), + [sym_super] = ACTIONS(1461), + [sym_true] = ACTIONS(1461), + [sym_false] = ACTIONS(1461), + [sym_null] = ACTIONS(1461), + [sym_undefined] = ACTIONS(1461), + [anon_sym_AT] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_abstract] = ACTIONS(1461), + [anon_sym_get] = ACTIONS(1461), + [anon_sym_set] = ACTIONS(1461), + [anon_sym_declare] = ACTIONS(1461), + [anon_sym_public] = ACTIONS(1461), + [anon_sym_private] = ACTIONS(1461), + [anon_sym_protected] = ACTIONS(1461), + [anon_sym_module] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_number] = ACTIONS(1461), + [anon_sym_boolean] = ACTIONS(1461), + [anon_sym_string] = ACTIONS(1461), + [anon_sym_symbol] = ACTIONS(1461), + [anon_sym_interface] = ACTIONS(1461), + [anon_sym_enum] = ACTIONS(1461), + [sym_readonly] = ACTIONS(1461), + }, + [440] = { + [ts_builtin_sym_end] = ACTIONS(1463), + [sym_identifier] = ACTIONS(1465), + [anon_sym_export] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_namespace] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_COMMA] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_type] = ACTIONS(1465), + [anon_sym_typeof] = ACTIONS(1465), + [anon_sym_import] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_let] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_await] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_try] = ACTIONS(1465), + [anon_sym_with] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_debugger] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_throw] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_yield] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_RBRACK] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_class] = ACTIONS(1465), + [anon_sym_async] = ACTIONS(1465), + [anon_sym_function] = ACTIONS(1465), + [anon_sym_EQ_GT] = ACTIONS(1463), + [anon_sym_new] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_delete] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_number] = ACTIONS(1463), + [sym_this] = ACTIONS(1465), + [sym_super] = ACTIONS(1465), + [sym_true] = ACTIONS(1465), + [sym_false] = ACTIONS(1465), + [sym_null] = ACTIONS(1465), + [sym_undefined] = ACTIONS(1465), + [anon_sym_AT] = ACTIONS(1463), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_abstract] = ACTIONS(1465), + [anon_sym_get] = ACTIONS(1465), + [anon_sym_set] = ACTIONS(1465), + [anon_sym_declare] = ACTIONS(1465), + [anon_sym_public] = ACTIONS(1465), + [anon_sym_private] = ACTIONS(1465), + [anon_sym_protected] = ACTIONS(1465), + [anon_sym_module] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_number] = ACTIONS(1465), + [anon_sym_boolean] = ACTIONS(1465), + [anon_sym_string] = ACTIONS(1465), + [anon_sym_symbol] = ACTIONS(1465), + [anon_sym_interface] = ACTIONS(1465), + [anon_sym_enum] = ACTIONS(1465), + [sym_readonly] = ACTIONS(1465), + }, + [441] = { + [ts_builtin_sym_end] = ACTIONS(1095), + [sym_identifier] = ACTIONS(1097), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_default] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1095), + [anon_sym_COMMA] = ACTIONS(1095), + [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_typeof] = ACTIONS(1097), + [anon_sym_import] = ACTIONS(1097), + [anon_sym_var] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_const] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_if] = ACTIONS(1097), + [anon_sym_else] = ACTIONS(1097), + [anon_sym_switch] = ACTIONS(1097), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_RPAREN] = ACTIONS(1095), + [anon_sym_await] = ACTIONS(1097), + [anon_sym_while] = ACTIONS(1097), + [anon_sym_do] = ACTIONS(1097), + [anon_sym_try] = ACTIONS(1097), + [anon_sym_with] = ACTIONS(1097), + [anon_sym_break] = ACTIONS(1097), + [anon_sym_continue] = ACTIONS(1097), + [anon_sym_debugger] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1097), + [anon_sym_throw] = ACTIONS(1097), + [anon_sym_SEMI] = ACTIONS(1095), + [anon_sym_case] = ACTIONS(1097), + [anon_sym_yield] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_RBRACK] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1095), + [anon_sym_GT] = ACTIONS(1095), + [anon_sym_SLASH] = ACTIONS(1097), + [anon_sym_class] = ACTIONS(1097), + [anon_sym_async] = ACTIONS(1097), + [anon_sym_function] = ACTIONS(1097), + [anon_sym_EQ_GT] = ACTIONS(1095), + [anon_sym_new] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1095), + [anon_sym_PIPE] = ACTIONS(1095), + [anon_sym_PLUS] = ACTIONS(1097), + [anon_sym_DASH] = ACTIONS(1097), + [anon_sym_TILDE] = ACTIONS(1095), + [anon_sym_void] = ACTIONS(1097), + [anon_sym_delete] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1095), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1095), + [sym_number] = ACTIONS(1095), + [sym_this] = ACTIONS(1097), + [sym_super] = ACTIONS(1097), + [sym_true] = ACTIONS(1097), + [sym_false] = ACTIONS(1097), + [sym_null] = ACTIONS(1097), + [sym_undefined] = ACTIONS(1097), + [anon_sym_AT] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_abstract] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_interface] = ACTIONS(1097), + [anon_sym_enum] = ACTIONS(1097), + [sym_readonly] = ACTIONS(1097), + }, + [442] = { [ts_builtin_sym_end] = ACTIONS(1467), [sym_identifier] = ACTIONS(1469), [anon_sym_export] = ACTIONS(1469), @@ -53151,7 +53882,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1469), [sym_readonly] = ACTIONS(1469), }, - [437] = { + [443] = { [ts_builtin_sym_end] = ACTIONS(1471), [sym_identifier] = ACTIONS(1473), [anon_sym_export] = ACTIONS(1473), @@ -53236,7 +53967,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1473), [sym_readonly] = ACTIONS(1473), }, - [438] = { + [444] = { [ts_builtin_sym_end] = ACTIONS(1475), [sym_identifier] = ACTIONS(1477), [anon_sym_export] = ACTIONS(1477), @@ -53321,7 +54052,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1477), [sym_readonly] = ACTIONS(1477), }, - [439] = { + [445] = { [ts_builtin_sym_end] = ACTIONS(1479), [sym_identifier] = ACTIONS(1481), [anon_sym_export] = ACTIONS(1481), @@ -53406,7 +54137,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1481), [sym_readonly] = ACTIONS(1481), }, - [440] = { + [446] = { [ts_builtin_sym_end] = ACTIONS(1483), [sym_identifier] = ACTIONS(1485), [anon_sym_export] = ACTIONS(1485), @@ -53491,7 +54222,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1485), [sym_readonly] = ACTIONS(1485), }, - [441] = { + [447] = { [ts_builtin_sym_end] = ACTIONS(1487), [sym_identifier] = ACTIONS(1489), [anon_sym_export] = ACTIONS(1489), @@ -53576,7 +54307,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1489), [sym_readonly] = ACTIONS(1489), }, - [442] = { + [448] = { [ts_builtin_sym_end] = ACTIONS(1491), [sym_identifier] = ACTIONS(1493), [anon_sym_export] = ACTIONS(1493), @@ -53661,7 +54392,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1493), [sym_readonly] = ACTIONS(1493), }, - [443] = { + [449] = { [ts_builtin_sym_end] = ACTIONS(1495), [sym_identifier] = ACTIONS(1497), [anon_sym_export] = ACTIONS(1497), @@ -53697,7 +54428,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1495), [anon_sym_case] = ACTIONS(1497), [anon_sym_yield] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_RBRACK] = ACTIONS(1495), [anon_sym_LT] = ACTIONS(1495), [anon_sym_GT] = ACTIONS(1495), @@ -53746,600 +54477,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1497), [sym_readonly] = ACTIONS(1497), }, - [444] = { - [ts_builtin_sym_end] = ACTIONS(1499), + [450] = { + [sym__call_signature] = STATE(3191), + [sym_arguments] = STATE(1132), + [sym_formal_parameters] = STATE(2340), + [sym_type_arguments] = STATE(987), + [sym_type_parameters] = STATE(2923), [sym_identifier] = ACTIONS(1501), - [anon_sym_export] = ACTIONS(1501), - [anon_sym_default] = ACTIONS(1501), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_namespace] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1499), - [anon_sym_type] = ACTIONS(1501), - [anon_sym_typeof] = ACTIONS(1501), - [anon_sym_import] = ACTIONS(1501), - [anon_sym_var] = ACTIONS(1501), - [anon_sym_let] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1501), - [anon_sym_else] = ACTIONS(1501), - [anon_sym_switch] = ACTIONS(1501), - [anon_sym_for] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1499), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1501), - [anon_sym_do] = ACTIONS(1501), - [anon_sym_try] = ACTIONS(1501), - [anon_sym_with] = ACTIONS(1501), - [anon_sym_break] = ACTIONS(1501), - [anon_sym_continue] = ACTIONS(1501), - [anon_sym_debugger] = ACTIONS(1501), - [anon_sym_return] = ACTIONS(1501), - [anon_sym_throw] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1499), - [anon_sym_RBRACK] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_class] = ACTIONS(1501), - [anon_sym_async] = ACTIONS(1501), - [anon_sym_function] = ACTIONS(1501), - [anon_sym_EQ_GT] = ACTIONS(1499), - [anon_sym_new] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1501), - [anon_sym_delete] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1499), - [anon_sym_DASH_DASH] = ACTIONS(1499), - [anon_sym_DQUOTE] = ACTIONS(1499), - [anon_sym_SQUOTE] = ACTIONS(1499), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1499), - [sym_number] = ACTIONS(1499), - [sym_this] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_true] = ACTIONS(1501), - [sym_false] = ACTIONS(1501), - [sym_null] = ACTIONS(1501), - [sym_undefined] = ACTIONS(1501), - [anon_sym_AT] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1501), - [anon_sym_abstract] = ACTIONS(1501), - [anon_sym_get] = ACTIONS(1501), - [anon_sym_set] = ACTIONS(1501), - [anon_sym_declare] = ACTIONS(1501), - [anon_sym_public] = ACTIONS(1501), - [anon_sym_private] = ACTIONS(1501), - [anon_sym_protected] = ACTIONS(1501), - [anon_sym_module] = ACTIONS(1501), - [anon_sym_any] = ACTIONS(1501), - [anon_sym_number] = ACTIONS(1501), - [anon_sym_boolean] = ACTIONS(1501), - [anon_sym_string] = ACTIONS(1501), - [anon_sym_symbol] = ACTIONS(1501), - [anon_sym_interface] = ACTIONS(1501), - [anon_sym_enum] = ACTIONS(1501), - [sym_readonly] = ACTIONS(1501), - }, - [445] = { - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_identifier] = ACTIONS(1505), - [anon_sym_export] = ACTIONS(1505), - [anon_sym_default] = ACTIONS(1505), - [anon_sym_EQ] = ACTIONS(1505), - [anon_sym_namespace] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_COMMA] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_type] = ACTIONS(1505), - [anon_sym_typeof] = ACTIONS(1505), - [anon_sym_import] = ACTIONS(1505), - [anon_sym_var] = ACTIONS(1505), - [anon_sym_let] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_if] = ACTIONS(1505), - [anon_sym_else] = ACTIONS(1505), - [anon_sym_switch] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_RPAREN] = ACTIONS(1503), - [anon_sym_await] = ACTIONS(1505), - [anon_sym_while] = ACTIONS(1505), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_try] = ACTIONS(1505), - [anon_sym_with] = ACTIONS(1505), - [anon_sym_break] = ACTIONS(1505), - [anon_sym_continue] = ACTIONS(1505), - [anon_sym_debugger] = ACTIONS(1505), - [anon_sym_return] = ACTIONS(1505), - [anon_sym_throw] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1505), - [anon_sym_yield] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1503), + [anon_sym_export] = ACTIONS(1503), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_namespace] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_COLON] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_RBRACK] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1505), [anon_sym_SLASH] = ACTIONS(1505), - [anon_sym_class] = ACTIONS(1505), - [anon_sym_async] = ACTIONS(1505), - [anon_sym_function] = ACTIONS(1505), - [anon_sym_EQ_GT] = ACTIONS(1503), - [anon_sym_new] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), [anon_sym_PLUS] = ACTIONS(1505), [anon_sym_DASH] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_void] = ACTIONS(1505), - [anon_sym_delete] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1503), - [sym_number] = ACTIONS(1503), - [sym_this] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_true] = ACTIONS(1505), - [sym_false] = ACTIONS(1505), - [sym_null] = ACTIONS(1505), - [sym_undefined] = ACTIONS(1505), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1505), - [anon_sym_abstract] = ACTIONS(1505), - [anon_sym_get] = ACTIONS(1505), - [anon_sym_set] = ACTIONS(1505), - [anon_sym_declare] = ACTIONS(1505), - [anon_sym_public] = ACTIONS(1505), - [anon_sym_private] = ACTIONS(1505), - [anon_sym_protected] = ACTIONS(1505), - [anon_sym_module] = ACTIONS(1505), - [anon_sym_any] = ACTIONS(1505), - [anon_sym_number] = ACTIONS(1505), - [anon_sym_boolean] = ACTIONS(1505), - [anon_sym_string] = ACTIONS(1505), - [anon_sym_symbol] = ACTIONS(1505), - [anon_sym_interface] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1505), - [sym_readonly] = ACTIONS(1505), - }, - [446] = { - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_export] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1509), - [anon_sym_namespace] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(1509), - [anon_sym_import] = ACTIONS(1509), - [anon_sym_var] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_else] = ACTIONS(1509), - [anon_sym_switch] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_await] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_do] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1509), - [anon_sym_with] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_debugger] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_throw] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_case] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_RBRACK] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_function] = ACTIONS(1509), - [anon_sym_EQ_GT] = ACTIONS(1507), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1507), - [anon_sym_void] = ACTIONS(1509), - [anon_sym_delete] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1507), - [anon_sym_DASH_DASH] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1507), - [sym_number] = ACTIONS(1507), - [sym_this] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_true] = ACTIONS(1509), - [sym_false] = ACTIONS(1509), - [sym_null] = ACTIONS(1509), - [sym_undefined] = ACTIONS(1509), - [anon_sym_AT] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_abstract] = ACTIONS(1509), - [anon_sym_get] = ACTIONS(1509), - [anon_sym_set] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(1509), - [anon_sym_public] = ACTIONS(1509), - [anon_sym_private] = ACTIONS(1509), - [anon_sym_protected] = ACTIONS(1509), - [anon_sym_module] = ACTIONS(1509), - [anon_sym_any] = ACTIONS(1509), - [anon_sym_number] = ACTIONS(1509), - [anon_sym_boolean] = ACTIONS(1509), - [anon_sym_string] = ACTIONS(1509), - [anon_sym_symbol] = ACTIONS(1509), - [anon_sym_interface] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [sym_readonly] = ACTIONS(1509), - }, - [447] = { - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_identifier] = ACTIONS(1513), - [anon_sym_export] = ACTIONS(1513), - [anon_sym_default] = ACTIONS(1513), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_namespace] = ACTIONS(1513), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_COMMA] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1511), - [anon_sym_type] = ACTIONS(1513), - [anon_sym_typeof] = ACTIONS(1513), - [anon_sym_import] = ACTIONS(1513), - [anon_sym_var] = ACTIONS(1513), - [anon_sym_let] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1513), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_if] = ACTIONS(1513), - [anon_sym_else] = ACTIONS(1513), - [anon_sym_switch] = ACTIONS(1513), - [anon_sym_for] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(1511), - [anon_sym_await] = ACTIONS(1513), - [anon_sym_while] = ACTIONS(1513), - [anon_sym_do] = ACTIONS(1513), - [anon_sym_try] = ACTIONS(1513), - [anon_sym_with] = ACTIONS(1513), - [anon_sym_break] = ACTIONS(1513), - [anon_sym_continue] = ACTIONS(1513), - [anon_sym_debugger] = ACTIONS(1513), - [anon_sym_return] = ACTIONS(1513), - [anon_sym_throw] = ACTIONS(1513), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_case] = ACTIONS(1513), - [anon_sym_yield] = ACTIONS(1513), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_RBRACK] = ACTIONS(1511), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1513), - [anon_sym_class] = ACTIONS(1513), - [anon_sym_async] = ACTIONS(1513), - [anon_sym_function] = ACTIONS(1513), - [anon_sym_EQ_GT] = ACTIONS(1511), - [anon_sym_new] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_void] = ACTIONS(1513), - [anon_sym_delete] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1511), - [anon_sym_SQUOTE] = ACTIONS(1511), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1511), - [sym_number] = ACTIONS(1511), - [sym_this] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_true] = ACTIONS(1513), - [sym_false] = ACTIONS(1513), - [sym_null] = ACTIONS(1513), - [sym_undefined] = ACTIONS(1513), - [anon_sym_AT] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1513), - [anon_sym_abstract] = ACTIONS(1513), - [anon_sym_get] = ACTIONS(1513), - [anon_sym_set] = ACTIONS(1513), - [anon_sym_declare] = ACTIONS(1513), - [anon_sym_public] = ACTIONS(1513), - [anon_sym_private] = ACTIONS(1513), - [anon_sym_protected] = ACTIONS(1513), - [anon_sym_module] = ACTIONS(1513), - [anon_sym_any] = ACTIONS(1513), - [anon_sym_number] = ACTIONS(1513), - [anon_sym_boolean] = ACTIONS(1513), - [anon_sym_string] = ACTIONS(1513), - [anon_sym_symbol] = ACTIONS(1513), - [anon_sym_interface] = ACTIONS(1513), - [anon_sym_enum] = ACTIONS(1513), - [sym_readonly] = ACTIONS(1513), - }, - [448] = { - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_identifier] = ACTIONS(1097), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_default] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1095), - [anon_sym_COMMA] = ACTIONS(1095), - [anon_sym_RBRACE] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_typeof] = ACTIONS(1097), - [anon_sym_import] = ACTIONS(1097), - [anon_sym_var] = ACTIONS(1097), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_const] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1097), - [anon_sym_else] = ACTIONS(1097), - [anon_sym_switch] = ACTIONS(1097), - [anon_sym_for] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1095), - [anon_sym_RPAREN] = ACTIONS(1095), - [anon_sym_await] = ACTIONS(1097), - [anon_sym_while] = ACTIONS(1097), - [anon_sym_do] = ACTIONS(1097), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_with] = ACTIONS(1097), - [anon_sym_break] = ACTIONS(1097), - [anon_sym_continue] = ACTIONS(1097), - [anon_sym_debugger] = ACTIONS(1097), - [anon_sym_return] = ACTIONS(1097), - [anon_sym_throw] = ACTIONS(1097), - [anon_sym_SEMI] = ACTIONS(1095), - [anon_sym_case] = ACTIONS(1097), - [anon_sym_yield] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1095), - [anon_sym_RBRACK] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1095), - [anon_sym_GT] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(1097), - [anon_sym_class] = ACTIONS(1097), - [anon_sym_async] = ACTIONS(1097), - [anon_sym_function] = ACTIONS(1097), - [anon_sym_EQ_GT] = ACTIONS(1095), - [anon_sym_new] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1095), - [anon_sym_PIPE] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1095), - [anon_sym_void] = ACTIONS(1097), - [anon_sym_delete] = ACTIONS(1097), - [anon_sym_PLUS_PLUS] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1095), - [anon_sym_DQUOTE] = ACTIONS(1095), - [anon_sym_SQUOTE] = ACTIONS(1095), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1095), - [sym_number] = ACTIONS(1095), - [sym_this] = ACTIONS(1097), - [sym_super] = ACTIONS(1097), - [sym_true] = ACTIONS(1097), - [sym_false] = ACTIONS(1097), - [sym_null] = ACTIONS(1097), - [sym_undefined] = ACTIONS(1097), - [anon_sym_AT] = ACTIONS(1095), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_abstract] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_interface] = ACTIONS(1097), - [anon_sym_enum] = ACTIONS(1097), - [sym_readonly] = ACTIONS(1097), - }, - [449] = { - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_identifier] = ACTIONS(1517), - [anon_sym_export] = ACTIONS(1517), - [anon_sym_default] = ACTIONS(1517), - [anon_sym_EQ] = ACTIONS(1517), - [anon_sym_namespace] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_COMMA] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_type] = ACTIONS(1517), - [anon_sym_typeof] = ACTIONS(1517), - [anon_sym_import] = ACTIONS(1517), - [anon_sym_var] = ACTIONS(1517), - [anon_sym_let] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1517), - [anon_sym_BANG] = ACTIONS(1515), - [anon_sym_if] = ACTIONS(1517), - [anon_sym_else] = ACTIONS(1517), - [anon_sym_switch] = ACTIONS(1517), - [anon_sym_for] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1515), - [anon_sym_RPAREN] = ACTIONS(1515), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_while] = ACTIONS(1517), - [anon_sym_do] = ACTIONS(1517), - [anon_sym_try] = ACTIONS(1517), - [anon_sym_with] = ACTIONS(1517), - [anon_sym_break] = ACTIONS(1517), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_debugger] = ACTIONS(1517), - [anon_sym_return] = ACTIONS(1517), - [anon_sym_throw] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1515), - [anon_sym_case] = ACTIONS(1517), - [anon_sym_yield] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1515), - [anon_sym_RBRACK] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1515), - [anon_sym_SLASH] = ACTIONS(1517), - [anon_sym_class] = ACTIONS(1517), - [anon_sym_async] = ACTIONS(1517), - [anon_sym_function] = ACTIONS(1517), - [anon_sym_EQ_GT] = ACTIONS(1515), - [anon_sym_new] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1517), - [anon_sym_DASH] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1515), - [anon_sym_void] = ACTIONS(1517), - [anon_sym_delete] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1515), - [anon_sym_DASH_DASH] = ACTIONS(1515), - [anon_sym_DQUOTE] = ACTIONS(1515), - [anon_sym_SQUOTE] = ACTIONS(1515), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1515), - [sym_number] = ACTIONS(1515), - [sym_this] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_true] = ACTIONS(1517), - [sym_false] = ACTIONS(1517), - [sym_null] = ACTIONS(1517), - [sym_undefined] = ACTIONS(1517), - [anon_sym_AT] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1517), - [anon_sym_abstract] = ACTIONS(1517), - [anon_sym_get] = ACTIONS(1517), - [anon_sym_set] = ACTIONS(1517), - [anon_sym_declare] = ACTIONS(1517), - [anon_sym_public] = ACTIONS(1517), - [anon_sym_private] = ACTIONS(1517), - [anon_sym_protected] = ACTIONS(1517), - [anon_sym_module] = ACTIONS(1517), - [anon_sym_any] = ACTIONS(1517), - [anon_sym_number] = ACTIONS(1517), - [anon_sym_boolean] = ACTIONS(1517), - [anon_sym_string] = ACTIONS(1517), - [anon_sym_symbol] = ACTIONS(1517), - [anon_sym_interface] = ACTIONS(1517), - [anon_sym_enum] = ACTIONS(1517), - [sym_readonly] = ACTIONS(1517), - }, - [450] = { - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1521), - [anon_sym_EQ] = ACTIONS(1521), - [anon_sym_namespace] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1521), - [anon_sym_typeof] = ACTIONS(1521), - [anon_sym_import] = ACTIONS(1521), - [anon_sym_var] = ACTIONS(1521), - [anon_sym_let] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1521), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1521), - [anon_sym_else] = ACTIONS(1521), - [anon_sym_switch] = ACTIONS(1521), - [anon_sym_for] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1519), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_await] = ACTIONS(1521), - [anon_sym_while] = ACTIONS(1521), - [anon_sym_do] = ACTIONS(1521), - [anon_sym_try] = ACTIONS(1521), - [anon_sym_with] = ACTIONS(1521), - [anon_sym_break] = ACTIONS(1521), - [anon_sym_continue] = ACTIONS(1521), - [anon_sym_debugger] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1521), - [anon_sym_throw] = ACTIONS(1521), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_case] = ACTIONS(1521), - [anon_sym_yield] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_RBRACK] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1521), - [anon_sym_class] = ACTIONS(1521), - [anon_sym_async] = ACTIONS(1521), - [anon_sym_function] = ACTIONS(1521), - [anon_sym_EQ_GT] = ACTIONS(1519), - [anon_sym_new] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1519), - [anon_sym_void] = ACTIONS(1521), - [anon_sym_delete] = ACTIONS(1521), - [anon_sym_PLUS_PLUS] = ACTIONS(1519), - [anon_sym_DASH_DASH] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(1519), - [anon_sym_SQUOTE] = ACTIONS(1519), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1519), - [sym_number] = ACTIONS(1519), - [sym_this] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1521), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1521), - [anon_sym_abstract] = ACTIONS(1521), - [anon_sym_get] = ACTIONS(1521), - [anon_sym_set] = ACTIONS(1521), - [anon_sym_declare] = ACTIONS(1521), - [anon_sym_public] = ACTIONS(1521), - [anon_sym_private] = ACTIONS(1521), - [anon_sym_protected] = ACTIONS(1521), - [anon_sym_module] = ACTIONS(1521), - [anon_sym_any] = ACTIONS(1521), - [anon_sym_number] = ACTIONS(1521), - [anon_sym_boolean] = ACTIONS(1521), - [anon_sym_string] = ACTIONS(1521), - [anon_sym_symbol] = ACTIONS(1521), - [anon_sym_interface] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1521), - [sym_readonly] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_STAR_STAR] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_QMARK_QMARK] = ACTIONS(1505), + [anon_sym_instanceof] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_get] = ACTIONS(1503), + [anon_sym_set] = ACTIONS(1503), + [anon_sym_declare] = ACTIONS(1503), + [anon_sym_public] = ACTIONS(1503), + [anon_sym_private] = ACTIONS(1503), + [anon_sym_protected] = ACTIONS(1503), + [anon_sym_module] = ACTIONS(1503), + [anon_sym_any] = ACTIONS(1503), + [anon_sym_number] = ACTIONS(1503), + [anon_sym_boolean] = ACTIONS(1503), + [anon_sym_string] = ACTIONS(1503), + [anon_sym_symbol] = ACTIONS(1503), + [sym_readonly] = ACTIONS(1503), }, [451] = { [ts_builtin_sym_end] = ACTIONS(1523), @@ -54377,7 +54598,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(1523), [anon_sym_case] = ACTIONS(1525), [anon_sym_yield] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_RBRACK] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(1523), [anon_sym_GT] = ACTIONS(1523), @@ -54512,73 +54733,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1529), }, [453] = { - [sym__call_signature] = STATE(3120), - [sym_arguments] = STATE(1487), - [sym_formal_parameters] = STATE(2406), - [sym_type_arguments] = STATE(1342), - [sym_type_parameters] = STATE(2899), + [sym__call_signature] = STATE(3149), + [sym_arguments] = STATE(1421), + [sym_formal_parameters] = STATE(2340), + [sym_type_arguments] = STATE(1406), + [sym_type_parameters] = STATE(2923), [sym_identifier] = ACTIONS(1531), [anon_sym_export] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1505), [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), [anon_sym_type] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1509), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), [anon_sym_DOT] = ACTIONS(1146), [anon_sym_async] = ACTIONS(1533), [anon_sym_function] = ACTIONS(1535), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_GT_GT_GT] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_QMARK_QMARK] = ACTIONS(1449), - [anon_sym_instanceof] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1453), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_STAR_STAR] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_QMARK_QMARK] = ACTIONS(1505), + [anon_sym_instanceof] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1509), [anon_sym_static] = ACTIONS(1533), [anon_sym_get] = ACTIONS(1533), [anon_sym_set] = ACTIONS(1533), @@ -54593,185 +54814,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1533), [anon_sym_symbol] = ACTIONS(1533), [sym_readonly] = ACTIONS(1533), - [sym__automatic_semicolon] = ACTIONS(1453), + [sym__automatic_semicolon] = ACTIONS(1509), }, [454] = { - [sym__call_signature] = STATE(3259), - [sym_arguments] = STATE(1118), - [sym_formal_parameters] = STATE(2406), - [sym_type_arguments] = STATE(1012), - [sym_type_parameters] = STATE(2899), + [aux_sym_object_repeat1] = STATE(2824), [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_namespace] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_type] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1539), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1541), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_GT_GT_GT] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_QMARK_QMARK] = ACTIONS(1449), - [anon_sym_instanceof] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_implements] = ACTIONS(1449), - [sym_readonly] = ACTIONS(1539), - }, - [455] = { - [sym__call_signature] = STATE(3284), - [sym_arguments] = STATE(1568), - [sym_formal_parameters] = STATE(2406), - [sym_type_arguments] = STATE(1416), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1543), - [anon_sym_export] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_type] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1549), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(1551), - [anon_sym_EQ_GT] = ACTIONS(1553), - [anon_sym_QMARK_DOT] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_GT_GT_GT] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_QMARK_QMARK] = ACTIONS(1449), - [anon_sym_instanceof] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_get] = ACTIONS(1545), - [anon_sym_set] = ACTIONS(1545), - [anon_sym_declare] = ACTIONS(1545), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_module] = ACTIONS(1545), - [anon_sym_any] = ACTIONS(1545), - [anon_sym_number] = ACTIONS(1545), - [anon_sym_boolean] = ACTIONS(1545), - [anon_sym_string] = ACTIONS(1545), - [anon_sym_symbol] = ACTIONS(1545), - [sym_readonly] = ACTIONS(1545), - [anon_sym_LBRACE_PIPE] = ACTIONS(1453), - }, - [456] = { - [aux_sym_object_repeat1] = STATE(2782), - [sym_identifier] = ACTIONS(1557), - [anon_sym_export] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_export] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1557), + [anon_sym_namespace] = ACTIONS(1537), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1537), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -54782,7 +54837,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1557), + [anon_sym_async] = ACTIONS(1537), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -54823,38 +54878,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1133), [anon_sym_PLUS_PLUS] = ACTIONS(1119), [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_number] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_get] = ACTIONS(1557), - [anon_sym_set] = ACTIONS(1557), - [anon_sym_declare] = ACTIONS(1557), - [anon_sym_public] = ACTIONS(1557), - [anon_sym_private] = ACTIONS(1557), - [anon_sym_protected] = ACTIONS(1557), - [anon_sym_module] = ACTIONS(1557), - [anon_sym_any] = ACTIONS(1557), - [anon_sym_number] = ACTIONS(1557), - [anon_sym_boolean] = ACTIONS(1557), - [anon_sym_string] = ACTIONS(1557), - [anon_sym_symbol] = ACTIONS(1557), - [sym_readonly] = ACTIONS(1557), + [sym_number] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_get] = ACTIONS(1537), + [anon_sym_set] = ACTIONS(1537), + [anon_sym_declare] = ACTIONS(1537), + [anon_sym_public] = ACTIONS(1537), + [anon_sym_private] = ACTIONS(1537), + [anon_sym_protected] = ACTIONS(1537), + [anon_sym_module] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_number] = ACTIONS(1537), + [anon_sym_boolean] = ACTIONS(1537), + [anon_sym_string] = ACTIONS(1537), + [anon_sym_symbol] = ACTIONS(1537), + [sym_readonly] = ACTIONS(1537), [sym__automatic_semicolon] = ACTIONS(1119), }, - [457] = { - [aux_sym_object_repeat1] = STATE(2778), - [sym_identifier] = ACTIONS(1557), - [anon_sym_export] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_EQ] = ACTIONS(1188), + [455] = { + [sym__call_signature] = STATE(3129), + [sym_arguments] = STATE(1132), + [sym_formal_parameters] = STATE(2340), + [sym_type_arguments] = STATE(987), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1541), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_namespace] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_COLON] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_RBRACK] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1545), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_STAR_STAR] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_QMARK_QMARK] = ACTIONS(1505), + [anon_sym_instanceof] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1543), + [anon_sym_get] = ACTIONS(1543), + [anon_sym_set] = ACTIONS(1543), + [anon_sym_declare] = ACTIONS(1543), + [anon_sym_public] = ACTIONS(1543), + [anon_sym_private] = ACTIONS(1543), + [anon_sym_protected] = ACTIONS(1543), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_any] = ACTIONS(1543), + [anon_sym_number] = ACTIONS(1543), + [anon_sym_boolean] = ACTIONS(1543), + [anon_sym_string] = ACTIONS(1543), + [anon_sym_symbol] = ACTIONS(1543), + [sym_readonly] = ACTIONS(1543), + }, + [456] = { + [aux_sym_object_repeat1] = STATE(2742), + [sym_identifier] = ACTIONS(1537), + [anon_sym_export] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1557), + [anon_sym_namespace] = ACTIONS(1537), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1170), - [anon_sym_type] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_type] = ACTIONS(1537), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -54865,7 +55003,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1557), + [anon_sym_async] = ACTIONS(1537), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -54906,121 +55044,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1133), [anon_sym_PLUS_PLUS] = ACTIONS(1119), [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_number] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_get] = ACTIONS(1557), - [anon_sym_set] = ACTIONS(1557), - [anon_sym_declare] = ACTIONS(1557), - [anon_sym_public] = ACTIONS(1557), - [anon_sym_private] = ACTIONS(1557), - [anon_sym_protected] = ACTIONS(1557), - [anon_sym_module] = ACTIONS(1557), - [anon_sym_any] = ACTIONS(1557), - [anon_sym_number] = ACTIONS(1557), - [anon_sym_boolean] = ACTIONS(1557), - [anon_sym_string] = ACTIONS(1557), - [anon_sym_symbol] = ACTIONS(1557), - [sym_readonly] = ACTIONS(1557), + [sym_number] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_get] = ACTIONS(1537), + [anon_sym_set] = ACTIONS(1537), + [anon_sym_declare] = ACTIONS(1537), + [anon_sym_public] = ACTIONS(1537), + [anon_sym_private] = ACTIONS(1537), + [anon_sym_protected] = ACTIONS(1537), + [anon_sym_module] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_number] = ACTIONS(1537), + [anon_sym_boolean] = ACTIONS(1537), + [anon_sym_string] = ACTIONS(1537), + [anon_sym_symbol] = ACTIONS(1537), + [sym_readonly] = ACTIONS(1537), [sym__automatic_semicolon] = ACTIONS(1119), }, - [458] = { - [sym__call_signature] = STATE(3114), - [sym_arguments] = STATE(1118), - [sym_formal_parameters] = STATE(2406), - [sym_type_arguments] = STATE(1012), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1561), - [anon_sym_export] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_namespace] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_type] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_COLON] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_RBRACK] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1563), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1565), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_GT_GT_GT] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_QMARK_QMARK] = ACTIONS(1449), - [anon_sym_instanceof] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_get] = ACTIONS(1563), - [anon_sym_set] = ACTIONS(1563), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1563), - [anon_sym_private] = ACTIONS(1563), - [anon_sym_protected] = ACTIONS(1563), - [anon_sym_module] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_number] = ACTIONS(1563), - [anon_sym_boolean] = ACTIONS(1563), - [anon_sym_string] = ACTIONS(1563), - [anon_sym_symbol] = ACTIONS(1563), - [sym_readonly] = ACTIONS(1563), + [457] = { + [sym__call_signature] = STATE(3261), + [sym_arguments] = STATE(1132), + [sym_formal_parameters] = STATE(2340), + [sym_type_arguments] = STATE(987), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1547), + [anon_sym_export] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_namespace] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1551), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_STAR_STAR] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_QMARK_QMARK] = ACTIONS(1505), + [anon_sym_instanceof] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_declare] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_module] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_number] = ACTIONS(1549), + [anon_sym_boolean] = ACTIONS(1549), + [anon_sym_string] = ACTIONS(1549), + [anon_sym_symbol] = ACTIONS(1549), + [anon_sym_implements] = ACTIONS(1505), + [sym_readonly] = ACTIONS(1549), }, - [459] = { - [aux_sym_object_repeat1] = STATE(2740), - [sym_identifier] = ACTIONS(1557), - [anon_sym_export] = ACTIONS(1557), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_EQ] = ACTIONS(1188), + [458] = { + [aux_sym_object_repeat1] = STATE(2746), + [sym_identifier] = ACTIONS(1537), + [anon_sym_export] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1557), + [anon_sym_namespace] = ACTIONS(1537), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1172), - [anon_sym_type] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_type] = ACTIONS(1537), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -55031,7 +55169,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1557), + [anon_sym_async] = ACTIONS(1537), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -55072,70 +55210,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1133), [anon_sym_PLUS_PLUS] = ACTIONS(1119), [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_number] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_get] = ACTIONS(1557), - [anon_sym_set] = ACTIONS(1557), - [anon_sym_declare] = ACTIONS(1557), - [anon_sym_public] = ACTIONS(1557), - [anon_sym_private] = ACTIONS(1557), - [anon_sym_protected] = ACTIONS(1557), - [anon_sym_module] = ACTIONS(1557), - [anon_sym_any] = ACTIONS(1557), - [anon_sym_number] = ACTIONS(1557), - [anon_sym_boolean] = ACTIONS(1557), - [anon_sym_string] = ACTIONS(1557), - [anon_sym_symbol] = ACTIONS(1557), - [sym_readonly] = ACTIONS(1557), + [sym_number] = ACTIONS(1539), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_get] = ACTIONS(1537), + [anon_sym_set] = ACTIONS(1537), + [anon_sym_declare] = ACTIONS(1537), + [anon_sym_public] = ACTIONS(1537), + [anon_sym_private] = ACTIONS(1537), + [anon_sym_protected] = ACTIONS(1537), + [anon_sym_module] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_number] = ACTIONS(1537), + [anon_sym_boolean] = ACTIONS(1537), + [anon_sym_string] = ACTIONS(1537), + [anon_sym_symbol] = ACTIONS(1537), + [sym_readonly] = ACTIONS(1537), [sym__automatic_semicolon] = ACTIONS(1119), }, - [460] = { - [sym__call_signature] = STATE(3290), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1445), - [anon_sym_export] = ACTIONS(1447), + [459] = { + [sym__call_signature] = STATE(3191), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1501), + [anon_sym_export] = ACTIONS(1503), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_EQ] = ACTIONS(1553), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_namespace] = ACTIONS(1503), [anon_sym_COMMA] = ACTIONS(1119), [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1503), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_RPAREN] = ACTIONS(1119), [anon_sym_in] = ACTIONS(1133), [anon_sym_COLON] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1511), [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1575), - [anon_sym_DASH_EQ] = ACTIONS(1575), - [anon_sym_STAR_EQ] = ACTIONS(1575), - [anon_sym_SLASH_EQ] = ACTIONS(1575), - [anon_sym_PERCENT_EQ] = ACTIONS(1575), - [anon_sym_CARET_EQ] = ACTIONS(1575), - [anon_sym_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_LT_LT_EQ] = ACTIONS(1575), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1575), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1575), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1575), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1561), + [anon_sym_DASH_EQ] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1561), + [anon_sym_SLASH_EQ] = ACTIONS(1561), + [anon_sym_PERCENT_EQ] = ACTIONS(1561), + [anon_sym_CARET_EQ] = ACTIONS(1561), + [anon_sym_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_LT_LT_EQ] = ACTIONS(1561), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1561), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1561), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1561), [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), @@ -55161,127 +55299,128 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_get] = ACTIONS(1447), - [anon_sym_set] = ACTIONS(1447), - [anon_sym_declare] = ACTIONS(1447), - [anon_sym_public] = ACTIONS(1447), - [anon_sym_private] = ACTIONS(1447), - [anon_sym_protected] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_number] = ACTIONS(1447), - [anon_sym_boolean] = ACTIONS(1447), - [anon_sym_string] = ACTIONS(1447), - [anon_sym_symbol] = ACTIONS(1447), - [sym_readonly] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_get] = ACTIONS(1503), + [anon_sym_set] = ACTIONS(1503), + [anon_sym_declare] = ACTIONS(1503), + [anon_sym_public] = ACTIONS(1503), + [anon_sym_private] = ACTIONS(1503), + [anon_sym_protected] = ACTIONS(1503), + [anon_sym_module] = ACTIONS(1503), + [anon_sym_any] = ACTIONS(1503), + [anon_sym_number] = ACTIONS(1503), + [anon_sym_boolean] = ACTIONS(1503), + [anon_sym_string] = ACTIONS(1503), + [anon_sym_symbol] = ACTIONS(1503), + [sym_readonly] = ACTIONS(1503), }, - [461] = { - [sym_type_arguments] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(1577), - [sym_identifier] = ACTIONS(1579), - [anon_sym_export] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_namespace] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1579), - [anon_sym_typeof] = ACTIONS(1579), - [anon_sym_import] = ACTIONS(1579), - [anon_sym_var] = ACTIONS(1579), - [anon_sym_let] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_await] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_try] = ACTIONS(1579), - [anon_sym_with] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_debugger] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_throw] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_case] = ACTIONS(1579), - [anon_sym_yield] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_class] = ACTIONS(1579), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(1579), - [anon_sym_new] = ACTIONS(1579), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_delete] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1577), - [sym_number] = ACTIONS(1577), - [sym_this] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_true] = ACTIONS(1579), - [sym_false] = ACTIONS(1579), - [sym_null] = ACTIONS(1579), - [sym_undefined] = ACTIONS(1579), - [anon_sym_AT] = ACTIONS(1577), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_abstract] = ACTIONS(1579), - [anon_sym_get] = ACTIONS(1579), - [anon_sym_set] = ACTIONS(1579), - [anon_sym_declare] = ACTIONS(1579), - [anon_sym_public] = ACTIONS(1579), - [anon_sym_private] = ACTIONS(1579), - [anon_sym_protected] = ACTIONS(1579), - [anon_sym_module] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_number] = ACTIONS(1579), - [anon_sym_boolean] = ACTIONS(1579), - [anon_sym_string] = ACTIONS(1579), - [anon_sym_symbol] = ACTIONS(1579), - [anon_sym_interface] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1579), - [sym_readonly] = ACTIONS(1579), - [anon_sym_is] = ACTIONS(1586), + [460] = { + [sym__call_signature] = STATE(3080), + [sym_arguments] = STATE(1612), + [sym_formal_parameters] = STATE(2340), + [sym_type_arguments] = STATE(1447), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1563), + [anon_sym_export] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_namespace] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(1571), + [anon_sym_EQ_GT] = ACTIONS(1573), + [anon_sym_QMARK_DOT] = ACTIONS(1575), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_STAR_STAR] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_QMARK_QMARK] = ACTIONS(1505), + [anon_sym_instanceof] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_get] = ACTIONS(1565), + [anon_sym_set] = ACTIONS(1565), + [anon_sym_declare] = ACTIONS(1565), + [anon_sym_public] = ACTIONS(1565), + [anon_sym_private] = ACTIONS(1565), + [anon_sym_protected] = ACTIONS(1565), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_number] = ACTIONS(1565), + [anon_sym_boolean] = ACTIONS(1565), + [anon_sym_string] = ACTIONS(1565), + [anon_sym_symbol] = ACTIONS(1565), + [sym_readonly] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1509), }, - [462] = { - [sym__call_signature] = STATE(3120), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), + [461] = { + [sym__call_signature] = STATE(3149), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), [sym_identifier] = ACTIONS(1531), [anon_sym_export] = ACTIONS(1533), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(1133), [anon_sym_namespace] = ACTIONS(1533), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), [anon_sym_type] = ACTIONS(1533), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(1188), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1146), [anon_sym_async] = ACTIONS(1533), - [anon_sym_function] = ACTIONS(1535), + [anon_sym_function] = ACTIONS(1377), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -55340,30 +55479,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1533), [sym__automatic_semicolon] = ACTIONS(1119), }, - [463] = { - [sym__call_signature] = STATE(3120), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), + [462] = { + [sym__call_signature] = STATE(3149), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), [sym_identifier] = ACTIONS(1531), [anon_sym_export] = ACTIONS(1533), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(1133), [anon_sym_namespace] = ACTIONS(1533), [anon_sym_COMMA] = ACTIONS(1119), [anon_sym_type] = ACTIONS(1533), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1204), + [anon_sym_COLON] = ACTIONS(1210), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1146), [anon_sym_async] = ACTIONS(1533), - [anon_sym_function] = ACTIONS(1588), + [anon_sym_function] = ACTIONS(1577), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -55422,30 +55561,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1533), [sym__automatic_semicolon] = ACTIONS(1119), }, - [464] = { - [sym__call_signature] = STATE(3120), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), + [463] = { + [sym__call_signature] = STATE(3149), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), [sym_identifier] = ACTIONS(1531), [anon_sym_export] = ACTIONS(1533), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(1133), [anon_sym_namespace] = ACTIONS(1533), [anon_sym_COMMA] = ACTIONS(1119), [anon_sym_type] = ACTIONS(1533), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_COLON] = ACTIONS(1192), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1146), [anon_sym_async] = ACTIONS(1533), - [anon_sym_function] = ACTIONS(1377), + [anon_sym_function] = ACTIONS(1577), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -55504,112 +55643,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1533), [sym__automatic_semicolon] = ACTIONS(1119), }, - [465] = { - [sym__call_signature] = STATE(3144), - [sym_arguments] = STATE(1487), - [sym_formal_parameters] = STATE(2406), - [sym_type_arguments] = STATE(1342), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1590), - [anon_sym_export] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_namespace] = ACTIONS(1592), - [anon_sym_type] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1146), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(1535), - [anon_sym_EQ_GT] = ACTIONS(1594), - [anon_sym_QMARK_DOT] = ACTIONS(1156), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_GT_GT_GT] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_QMARK_QMARK] = ACTIONS(1449), - [anon_sym_instanceof] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1592), - [anon_sym_get] = ACTIONS(1592), - [anon_sym_set] = ACTIONS(1592), - [anon_sym_declare] = ACTIONS(1592), - [anon_sym_public] = ACTIONS(1592), - [anon_sym_private] = ACTIONS(1592), - [anon_sym_protected] = ACTIONS(1592), - [anon_sym_module] = ACTIONS(1592), - [anon_sym_any] = ACTIONS(1592), - [anon_sym_number] = ACTIONS(1592), - [anon_sym_boolean] = ACTIONS(1592), - [anon_sym_string] = ACTIONS(1592), - [anon_sym_symbol] = ACTIONS(1592), - [sym_readonly] = ACTIONS(1592), - [sym__automatic_semicolon] = ACTIONS(1453), + [464] = { + [sym_type_arguments] = STATE(426), + [ts_builtin_sym_end] = ACTIONS(1579), + [sym_identifier] = ACTIONS(1581), + [anon_sym_export] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_namespace] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_type] = ACTIONS(1581), + [anon_sym_typeof] = ACTIONS(1581), + [anon_sym_import] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_let] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_try] = ACTIONS(1581), + [anon_sym_with] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_debugger] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_throw] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_yield] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1583), + [anon_sym_SLASH] = ACTIONS(1581), + [anon_sym_DOT] = ACTIONS(1586), + [anon_sym_class] = ACTIONS(1581), + [anon_sym_async] = ACTIONS(1581), + [anon_sym_function] = ACTIONS(1581), + [anon_sym_new] = ACTIONS(1581), + [anon_sym_AMP] = ACTIONS(1579), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_delete] = ACTIONS(1581), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_number] = ACTIONS(1579), + [sym_this] = ACTIONS(1581), + [sym_super] = ACTIONS(1581), + [sym_true] = ACTIONS(1581), + [sym_false] = ACTIONS(1581), + [sym_null] = ACTIONS(1581), + [sym_undefined] = ACTIONS(1581), + [anon_sym_AT] = ACTIONS(1579), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_abstract] = ACTIONS(1581), + [anon_sym_get] = ACTIONS(1581), + [anon_sym_set] = ACTIONS(1581), + [anon_sym_declare] = ACTIONS(1581), + [anon_sym_public] = ACTIONS(1581), + [anon_sym_private] = ACTIONS(1581), + [anon_sym_protected] = ACTIONS(1581), + [anon_sym_module] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_number] = ACTIONS(1581), + [anon_sym_boolean] = ACTIONS(1581), + [anon_sym_string] = ACTIONS(1581), + [anon_sym_symbol] = ACTIONS(1581), + [anon_sym_interface] = ACTIONS(1581), + [anon_sym_enum] = ACTIONS(1581), + [sym_readonly] = ACTIONS(1581), + [anon_sym_is] = ACTIONS(1588), }, - [466] = { - [sym__call_signature] = STATE(3120), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), + [465] = { + [sym__call_signature] = STATE(3149), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), [sym_identifier] = ACTIONS(1531), [anon_sym_export] = ACTIONS(1533), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(1133), [anon_sym_namespace] = ACTIONS(1533), [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_RBRACE] = ACTIONS(1119), [anon_sym_type] = ACTIONS(1533), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_COLON] = ACTIONS(1196), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1146), [anon_sym_async] = ACTIONS(1533), - [anon_sym_function] = ACTIONS(1588), + [anon_sym_function] = ACTIONS(1535), [anon_sym_EQ_GT] = ACTIONS(1154), [anon_sym_QMARK_DOT] = ACTIONS(1156), [anon_sym_PLUS_EQ] = ACTIONS(1158), @@ -55668,25 +55807,107 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1533), [sym__automatic_semicolon] = ACTIONS(1119), }, + [466] = { + [sym__call_signature] = STATE(3146), + [sym_arguments] = STATE(1421), + [sym_formal_parameters] = STATE(2340), + [sym_type_arguments] = STATE(1406), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1590), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_namespace] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1146), + [anon_sym_async] = ACTIONS(1592), + [anon_sym_function] = ACTIONS(1535), + [anon_sym_EQ_GT] = ACTIONS(1594), + [anon_sym_QMARK_DOT] = ACTIONS(1156), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_STAR_STAR] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_QMARK_QMARK] = ACTIONS(1505), + [anon_sym_instanceof] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), + [sym_readonly] = ACTIONS(1592), + [sym__automatic_semicolon] = ACTIONS(1509), + }, [467] = { - [sym__call_signature] = STATE(3120), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), + [sym__call_signature] = STATE(3149), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), [sym_identifier] = ACTIONS(1531), [anon_sym_export] = ACTIONS(1533), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ] = ACTIONS(1242), [anon_sym_as] = ACTIONS(1133), [anon_sym_namespace] = ACTIONS(1533), [anon_sym_COMMA] = ACTIONS(1119), [anon_sym_type] = ACTIONS(1533), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1596), [anon_sym_of] = ACTIONS(1599), [anon_sym_SEMI] = ACTIONS(1119), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1146), @@ -55751,128 +55972,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1119), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(935), - [sym_identifier] = ACTIONS(937), - [anon_sym_export] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_namespace] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_typeof] = ACTIONS(937), - [anon_sym_import] = ACTIONS(937), - [anon_sym_var] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_if] = ACTIONS(937), - [anon_sym_else] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_await] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [anon_sym_try] = ACTIONS(937), - [anon_sym_with] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_debugger] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_throw] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_case] = ACTIONS(937), - [anon_sym_catch] = ACTIONS(937), - [anon_sym_finally] = ACTIONS(937), - [anon_sym_yield] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_class] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(937), - [anon_sym_new] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_void] = ACTIONS(937), - [anon_sym_delete] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(935), - [sym_number] = ACTIONS(935), - [sym_this] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_true] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [sym_undefined] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(935), - [anon_sym_static] = ACTIONS(937), - [anon_sym_abstract] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [anon_sym_declare] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_any] = ACTIONS(937), - [anon_sym_number] = ACTIONS(937), - [anon_sym_boolean] = ACTIONS(937), - [anon_sym_string] = ACTIONS(937), - [anon_sym_symbol] = ACTIONS(937), - [anon_sym_interface] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [sym_readonly] = ACTIONS(937), - [sym__automatic_semicolon] = ACTIONS(1601), - }, - [469] = { - [sym__call_signature] = STATE(3290), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1445), - [anon_sym_export] = ACTIONS(1447), + [sym__call_signature] = STATE(3191), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1501), + [anon_sym_export] = ACTIONS(1503), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_EQ] = ACTIONS(1601), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1447), + [anon_sym_namespace] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_type] = ACTIONS(1503), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(1604), [anon_sym_in] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1575), - [anon_sym_DASH_EQ] = ACTIONS(1575), - [anon_sym_STAR_EQ] = ACTIONS(1575), - [anon_sym_SLASH_EQ] = ACTIONS(1575), - [anon_sym_PERCENT_EQ] = ACTIONS(1575), - [anon_sym_CARET_EQ] = ACTIONS(1575), - [anon_sym_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_LT_LT_EQ] = ACTIONS(1575), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1575), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1575), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1575), - [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1561), + [anon_sym_DASH_EQ] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1561), + [anon_sym_SLASH_EQ] = ACTIONS(1561), + [anon_sym_PERCENT_EQ] = ACTIONS(1561), + [anon_sym_CARET_EQ] = ACTIONS(1561), + [anon_sym_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_LT_LT_EQ] = ACTIONS(1561), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1561), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1561), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -55897,224 +56037,144 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_get] = ACTIONS(1447), - [anon_sym_set] = ACTIONS(1447), - [anon_sym_declare] = ACTIONS(1447), - [anon_sym_public] = ACTIONS(1447), - [anon_sym_private] = ACTIONS(1447), - [anon_sym_protected] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_number] = ACTIONS(1447), - [anon_sym_boolean] = ACTIONS(1447), - [anon_sym_string] = ACTIONS(1447), - [anon_sym_symbol] = ACTIONS(1447), - [sym_readonly] = ACTIONS(1447), - }, - [470] = { - [ts_builtin_sym_end] = ACTIONS(1605), - [sym_identifier] = ACTIONS(1607), - [anon_sym_export] = ACTIONS(1607), - [anon_sym_default] = ACTIONS(1607), - [anon_sym_namespace] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_COMMA] = ACTIONS(1605), - [anon_sym_RBRACE] = ACTIONS(1605), - [anon_sym_type] = ACTIONS(1607), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_import] = ACTIONS(1607), - [anon_sym_var] = ACTIONS(1607), - [anon_sym_let] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_else] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_await] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_try] = ACTIONS(1607), - [anon_sym_with] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_debugger] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_throw] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_case] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(1607), - [anon_sym_class] = ACTIONS(1607), - [anon_sym_async] = ACTIONS(1607), - [anon_sym_function] = ACTIONS(1607), - [anon_sym_new] = ACTIONS(1607), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1607), - [anon_sym_delete] = ACTIONS(1607), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1605), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1605), - [sym_number] = ACTIONS(1605), - [sym_this] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_true] = ACTIONS(1607), - [sym_false] = ACTIONS(1607), - [sym_null] = ACTIONS(1607), - [sym_undefined] = ACTIONS(1607), - [anon_sym_AT] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_abstract] = ACTIONS(1607), - [anon_sym_get] = ACTIONS(1607), - [anon_sym_set] = ACTIONS(1607), - [anon_sym_declare] = ACTIONS(1607), - [anon_sym_public] = ACTIONS(1607), - [anon_sym_private] = ACTIONS(1607), - [anon_sym_protected] = ACTIONS(1607), - [anon_sym_module] = ACTIONS(1607), - [anon_sym_any] = ACTIONS(1607), - [anon_sym_number] = ACTIONS(1607), - [anon_sym_boolean] = ACTIONS(1607), - [anon_sym_string] = ACTIONS(1607), - [anon_sym_symbol] = ACTIONS(1607), - [anon_sym_implements] = ACTIONS(1607), - [anon_sym_interface] = ACTIONS(1607), - [anon_sym_enum] = ACTIONS(1607), - [sym_readonly] = ACTIONS(1607), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_get] = ACTIONS(1503), + [anon_sym_set] = ACTIONS(1503), + [anon_sym_declare] = ACTIONS(1503), + [anon_sym_public] = ACTIONS(1503), + [anon_sym_private] = ACTIONS(1503), + [anon_sym_protected] = ACTIONS(1503), + [anon_sym_module] = ACTIONS(1503), + [anon_sym_any] = ACTIONS(1503), + [anon_sym_number] = ACTIONS(1503), + [anon_sym_boolean] = ACTIONS(1503), + [anon_sym_string] = ACTIONS(1503), + [anon_sym_symbol] = ACTIONS(1503), + [sym_readonly] = ACTIONS(1503), }, - [471] = { - [ts_builtin_sym_end] = ACTIONS(901), - [sym_identifier] = ACTIONS(903), - [anon_sym_export] = ACTIONS(903), - [anon_sym_default] = ACTIONS(903), - [anon_sym_namespace] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_COMMA] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_type] = ACTIONS(903), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_import] = ACTIONS(903), - [anon_sym_var] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_if] = ACTIONS(903), - [anon_sym_else] = ACTIONS(903), - [anon_sym_switch] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_await] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_try] = ACTIONS(903), - [anon_sym_with] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_debugger] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_throw] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_case] = ACTIONS(903), - [anon_sym_catch] = ACTIONS(903), - [anon_sym_finally] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_class] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_function] = ACTIONS(903), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_void] = ACTIONS(903), - [anon_sym_delete] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_SQUOTE] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(901), - [sym_number] = ACTIONS(901), - [sym_this] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_true] = ACTIONS(903), - [sym_false] = ACTIONS(903), - [sym_null] = ACTIONS(903), - [sym_undefined] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_static] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(903), - [anon_sym_get] = ACTIONS(903), - [anon_sym_set] = ACTIONS(903), - [anon_sym_declare] = ACTIONS(903), - [anon_sym_public] = ACTIONS(903), - [anon_sym_private] = ACTIONS(903), - [anon_sym_protected] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_any] = ACTIONS(903), - [anon_sym_number] = ACTIONS(903), - [anon_sym_boolean] = ACTIONS(903), - [anon_sym_string] = ACTIONS(903), - [anon_sym_symbol] = ACTIONS(903), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [sym_readonly] = ACTIONS(903), - [sym__automatic_semicolon] = ACTIONS(909), + [469] = { + [ts_builtin_sym_end] = ACTIONS(1610), + [sym_identifier] = ACTIONS(1612), + [anon_sym_export] = ACTIONS(1612), + [anon_sym_default] = ACTIONS(1612), + [anon_sym_namespace] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_COMMA] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1612), + [anon_sym_typeof] = ACTIONS(1612), + [anon_sym_import] = ACTIONS(1612), + [anon_sym_var] = ACTIONS(1612), + [anon_sym_let] = ACTIONS(1612), + [anon_sym_const] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1612), + [anon_sym_else] = ACTIONS(1612), + [anon_sym_switch] = ACTIONS(1612), + [anon_sym_for] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_while] = ACTIONS(1612), + [anon_sym_do] = ACTIONS(1612), + [anon_sym_try] = ACTIONS(1612), + [anon_sym_with] = ACTIONS(1612), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_debugger] = ACTIONS(1612), + [anon_sym_return] = ACTIONS(1612), + [anon_sym_throw] = ACTIONS(1612), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_case] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(1612), + [anon_sym_class] = ACTIONS(1612), + [anon_sym_async] = ACTIONS(1612), + [anon_sym_function] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1612), + [anon_sym_delete] = ACTIONS(1612), + [anon_sym_PLUS_PLUS] = ACTIONS(1610), + [anon_sym_DASH_DASH] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1610), + [sym_number] = ACTIONS(1610), + [sym_this] = ACTIONS(1612), + [sym_super] = ACTIONS(1612), + [sym_true] = ACTIONS(1612), + [sym_false] = ACTIONS(1612), + [sym_null] = ACTIONS(1612), + [sym_undefined] = ACTIONS(1612), + [anon_sym_AT] = ACTIONS(1610), + [anon_sym_static] = ACTIONS(1612), + [anon_sym_abstract] = ACTIONS(1612), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_declare] = ACTIONS(1612), + [anon_sym_public] = ACTIONS(1612), + [anon_sym_private] = ACTIONS(1612), + [anon_sym_protected] = ACTIONS(1612), + [anon_sym_module] = ACTIONS(1612), + [anon_sym_any] = ACTIONS(1612), + [anon_sym_number] = ACTIONS(1612), + [anon_sym_boolean] = ACTIONS(1612), + [anon_sym_string] = ACTIONS(1612), + [anon_sym_symbol] = ACTIONS(1612), + [anon_sym_implements] = ACTIONS(1612), + [anon_sym_interface] = ACTIONS(1612), + [anon_sym_enum] = ACTIONS(1612), + [sym_readonly] = ACTIONS(1612), }, - [472] = { - [sym_object] = STATE(2317), - [sym_array] = STATE(2318), - [sym_identifier] = ACTIONS(1609), - [anon_sym_export] = ACTIONS(1611), + [470] = { + [sym__call_signature] = STATE(3191), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1501), + [anon_sym_export] = ACTIONS(1503), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1601), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_COMMA] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1611), + [anon_sym_namespace] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_type] = ACTIONS(1503), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(1604), [anon_sym_in] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1621), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1133), + [anon_sym_COLON] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1575), - [anon_sym_DASH_EQ] = ACTIONS(1575), - [anon_sym_STAR_EQ] = ACTIONS(1575), - [anon_sym_SLASH_EQ] = ACTIONS(1575), - [anon_sym_PERCENT_EQ] = ACTIONS(1575), - [anon_sym_CARET_EQ] = ACTIONS(1575), - [anon_sym_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_LT_LT_EQ] = ACTIONS(1575), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1575), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1575), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1575), - [anon_sym_QMARK] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1561), + [anon_sym_DASH_EQ] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1561), + [anon_sym_SLASH_EQ] = ACTIONS(1561), + [anon_sym_PERCENT_EQ] = ACTIONS(1561), + [anon_sym_CARET_EQ] = ACTIONS(1561), + [anon_sym_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_LT_LT_EQ] = ACTIONS(1561), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1561), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1561), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -56139,62 +56199,143 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_this] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_get] = ACTIONS(1611), - [anon_sym_set] = ACTIONS(1611), - [anon_sym_declare] = ACTIONS(1611), - [anon_sym_public] = ACTIONS(1611), - [anon_sym_private] = ACTIONS(1611), - [anon_sym_protected] = ACTIONS(1611), - [anon_sym_module] = ACTIONS(1611), - [anon_sym_any] = ACTIONS(1611), - [anon_sym_number] = ACTIONS(1611), - [anon_sym_boolean] = ACTIONS(1611), - [anon_sym_string] = ACTIONS(1611), - [anon_sym_symbol] = ACTIONS(1611), - [sym_readonly] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_get] = ACTIONS(1503), + [anon_sym_set] = ACTIONS(1503), + [anon_sym_declare] = ACTIONS(1503), + [anon_sym_public] = ACTIONS(1503), + [anon_sym_private] = ACTIONS(1503), + [anon_sym_protected] = ACTIONS(1503), + [anon_sym_module] = ACTIONS(1503), + [anon_sym_any] = ACTIONS(1503), + [anon_sym_number] = ACTIONS(1503), + [anon_sym_boolean] = ACTIONS(1503), + [anon_sym_string] = ACTIONS(1503), + [anon_sym_symbol] = ACTIONS(1503), + [sym_readonly] = ACTIONS(1503), }, - [473] = { - [sym__call_signature] = STATE(3284), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1543), - [anon_sym_export] = ACTIONS(1545), + [471] = { + [ts_builtin_sym_end] = ACTIONS(893), + [sym_identifier] = ACTIONS(895), + [anon_sym_export] = ACTIONS(895), + [anon_sym_default] = ACTIONS(895), + [anon_sym_namespace] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_type] = ACTIONS(895), + [anon_sym_typeof] = ACTIONS(895), + [anon_sym_import] = ACTIONS(895), + [anon_sym_var] = ACTIONS(895), + [anon_sym_let] = ACTIONS(895), + [anon_sym_const] = ACTIONS(895), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_if] = ACTIONS(895), + [anon_sym_else] = ACTIONS(895), + [anon_sym_switch] = ACTIONS(895), + [anon_sym_for] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_await] = ACTIONS(895), + [anon_sym_while] = ACTIONS(895), + [anon_sym_do] = ACTIONS(895), + [anon_sym_try] = ACTIONS(895), + [anon_sym_with] = ACTIONS(895), + [anon_sym_break] = ACTIONS(895), + [anon_sym_continue] = ACTIONS(895), + [anon_sym_debugger] = ACTIONS(895), + [anon_sym_return] = ACTIONS(895), + [anon_sym_throw] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_case] = ACTIONS(895), + [anon_sym_catch] = ACTIONS(895), + [anon_sym_finally] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(895), + [anon_sym_class] = ACTIONS(895), + [anon_sym_async] = ACTIONS(895), + [anon_sym_function] = ACTIONS(895), + [anon_sym_new] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(893), + [anon_sym_void] = ACTIONS(895), + [anon_sym_delete] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(893), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(893), + [sym_number] = ACTIONS(893), + [sym_this] = ACTIONS(895), + [sym_super] = ACTIONS(895), + [sym_true] = ACTIONS(895), + [sym_false] = ACTIONS(895), + [sym_null] = ACTIONS(895), + [sym_undefined] = ACTIONS(895), + [anon_sym_AT] = ACTIONS(893), + [anon_sym_static] = ACTIONS(895), + [anon_sym_abstract] = ACTIONS(895), + [anon_sym_get] = ACTIONS(895), + [anon_sym_set] = ACTIONS(895), + [anon_sym_declare] = ACTIONS(895), + [anon_sym_public] = ACTIONS(895), + [anon_sym_private] = ACTIONS(895), + [anon_sym_protected] = ACTIONS(895), + [anon_sym_module] = ACTIONS(895), + [anon_sym_any] = ACTIONS(895), + [anon_sym_number] = ACTIONS(895), + [anon_sym_boolean] = ACTIONS(895), + [anon_sym_string] = ACTIONS(895), + [anon_sym_symbol] = ACTIONS(895), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(895), + [sym_readonly] = ACTIONS(895), + [sym__automatic_semicolon] = ACTIONS(901), + }, + [472] = { + [sym__call_signature] = STATE(3191), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1501), + [anon_sym_export] = ACTIONS(1503), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1553), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1545), - [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_namespace] = ACTIONS(1503), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1503), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_RBRACK] = ACTIONS(1119), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1549), - [anon_sym_async] = ACTIONS(1545), - [anon_sym_function] = ACTIONS(1551), - [anon_sym_EQ_GT] = ACTIONS(1553), - [anon_sym_QMARK_DOT] = ACTIONS(1555), - [anon_sym_PLUS_EQ] = ACTIONS(1630), - [anon_sym_DASH_EQ] = ACTIONS(1630), - [anon_sym_STAR_EQ] = ACTIONS(1630), - [anon_sym_SLASH_EQ] = ACTIONS(1630), - [anon_sym_PERCENT_EQ] = ACTIONS(1630), - [anon_sym_CARET_EQ] = ACTIONS(1630), - [anon_sym_AMP_EQ] = ACTIONS(1630), - [anon_sym_PIPE_EQ] = ACTIONS(1630), - [anon_sym_GT_GT_EQ] = ACTIONS(1630), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1630), - [anon_sym_LT_LT_EQ] = ACTIONS(1630), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1630), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1630), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1630), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1630), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1503), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1561), + [anon_sym_DASH_EQ] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1561), + [anon_sym_SLASH_EQ] = ACTIONS(1561), + [anon_sym_PERCENT_EQ] = ACTIONS(1561), + [anon_sym_CARET_EQ] = ACTIONS(1561), + [anon_sym_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_LT_LT_EQ] = ACTIONS(1561), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1561), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1561), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1561), [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), @@ -56220,64 +56361,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1545), - [anon_sym_get] = ACTIONS(1545), - [anon_sym_set] = ACTIONS(1545), - [anon_sym_declare] = ACTIONS(1545), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_module] = ACTIONS(1545), - [anon_sym_any] = ACTIONS(1545), - [anon_sym_number] = ACTIONS(1545), - [anon_sym_boolean] = ACTIONS(1545), - [anon_sym_string] = ACTIONS(1545), - [anon_sym_symbol] = ACTIONS(1545), - [sym_readonly] = ACTIONS(1545), - [anon_sym_LBRACE_PIPE] = ACTIONS(1119), + [anon_sym_static] = ACTIONS(1503), + [anon_sym_get] = ACTIONS(1503), + [anon_sym_set] = ACTIONS(1503), + [anon_sym_declare] = ACTIONS(1503), + [anon_sym_public] = ACTIONS(1503), + [anon_sym_private] = ACTIONS(1503), + [anon_sym_protected] = ACTIONS(1503), + [anon_sym_module] = ACTIONS(1503), + [anon_sym_any] = ACTIONS(1503), + [anon_sym_number] = ACTIONS(1503), + [anon_sym_boolean] = ACTIONS(1503), + [anon_sym_string] = ACTIONS(1503), + [anon_sym_symbol] = ACTIONS(1503), + [sym_readonly] = ACTIONS(1503), }, - [474] = { - [sym__call_signature] = STATE(3114), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1561), - [anon_sym_export] = ACTIONS(1563), + [473] = { + [sym_object] = STATE(2342), + [sym_array] = STATE(2326), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(1620), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1601), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1563), + [anon_sym_namespace] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_type] = ACTIONS(1620), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(1604), [anon_sym_in] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1133), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1563), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1565), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1620), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1561), + [anon_sym_DASH_EQ] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1561), + [anon_sym_SLASH_EQ] = ACTIONS(1561), + [anon_sym_PERCENT_EQ] = ACTIONS(1561), + [anon_sym_CARET_EQ] = ACTIONS(1561), + [anon_sym_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_LT_LT_EQ] = ACTIONS(1561), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1561), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1561), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -56302,143 +56441,307 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_get] = ACTIONS(1563), - [anon_sym_set] = ACTIONS(1563), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1563), - [anon_sym_private] = ACTIONS(1563), - [anon_sym_protected] = ACTIONS(1563), - [anon_sym_module] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_number] = ACTIONS(1563), - [anon_sym_boolean] = ACTIONS(1563), - [anon_sym_string] = ACTIONS(1563), - [anon_sym_symbol] = ACTIONS(1563), - [sym_readonly] = ACTIONS(1563), + [sym_this] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1620), + [anon_sym_set] = ACTIONS(1620), + [anon_sym_declare] = ACTIONS(1620), + [anon_sym_public] = ACTIONS(1620), + [anon_sym_private] = ACTIONS(1620), + [anon_sym_protected] = ACTIONS(1620), + [anon_sym_module] = ACTIONS(1620), + [anon_sym_any] = ACTIONS(1620), + [anon_sym_number] = ACTIONS(1620), + [anon_sym_boolean] = ACTIONS(1620), + [anon_sym_string] = ACTIONS(1620), + [anon_sym_symbol] = ACTIONS(1620), + [sym_readonly] = ACTIONS(1620), + }, + [474] = { + [ts_builtin_sym_end] = ACTIONS(1626), + [sym_identifier] = ACTIONS(1628), + [anon_sym_export] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1628), + [anon_sym_namespace] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_COMMA] = ACTIONS(1626), + [anon_sym_RBRACE] = ACTIONS(1626), + [anon_sym_type] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(1628), + [anon_sym_import] = ACTIONS(1628), + [anon_sym_var] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_else] = ACTIONS(1628), + [anon_sym_switch] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1626), + [anon_sym_await] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_do] = ACTIONS(1628), + [anon_sym_try] = ACTIONS(1628), + [anon_sym_with] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_debugger] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1626), + [anon_sym_case] = ACTIONS(1628), + [anon_sym_yield] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1626), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_class] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1628), + [anon_sym_function] = ACTIONS(1628), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_PIPE] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1626), + [anon_sym_void] = ACTIONS(1628), + [anon_sym_delete] = ACTIONS(1628), + [anon_sym_PLUS_PLUS] = ACTIONS(1626), + [anon_sym_DASH_DASH] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1626), + [sym_number] = ACTIONS(1626), + [sym_this] = ACTIONS(1628), + [sym_super] = ACTIONS(1628), + [sym_true] = ACTIONS(1628), + [sym_false] = ACTIONS(1628), + [sym_null] = ACTIONS(1628), + [sym_undefined] = ACTIONS(1628), + [anon_sym_AT] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1628), + [anon_sym_abstract] = ACTIONS(1628), + [anon_sym_get] = ACTIONS(1628), + [anon_sym_set] = ACTIONS(1628), + [anon_sym_declare] = ACTIONS(1628), + [anon_sym_public] = ACTIONS(1628), + [anon_sym_private] = ACTIONS(1628), + [anon_sym_protected] = ACTIONS(1628), + [anon_sym_module] = ACTIONS(1628), + [anon_sym_any] = ACTIONS(1628), + [anon_sym_number] = ACTIONS(1628), + [anon_sym_boolean] = ACTIONS(1628), + [anon_sym_string] = ACTIONS(1628), + [anon_sym_symbol] = ACTIONS(1628), + [anon_sym_implements] = ACTIONS(1628), + [anon_sym_interface] = ACTIONS(1628), + [anon_sym_enum] = ACTIONS(1628), + [sym_readonly] = ACTIONS(1628), }, [475] = { - [sym_catch_clause] = STATE(503), - [sym_finally_clause] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1632), - [sym_identifier] = ACTIONS(1634), - [anon_sym_export] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1634), - [anon_sym_namespace] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1632), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_type] = ACTIONS(1634), - [anon_sym_typeof] = ACTIONS(1634), - [anon_sym_import] = ACTIONS(1634), - [anon_sym_var] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1632), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_else] = ACTIONS(1634), - [anon_sym_switch] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_await] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_do] = ACTIONS(1634), - [anon_sym_try] = ACTIONS(1634), - [anon_sym_with] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_debugger] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_throw] = ACTIONS(1634), - [anon_sym_SEMI] = ACTIONS(1632), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_catch] = ACTIONS(1636), - [anon_sym_finally] = ACTIONS(1638), - [anon_sym_yield] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1632), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_SLASH] = ACTIONS(1634), - [anon_sym_class] = ACTIONS(1634), - [anon_sym_async] = ACTIONS(1634), - [anon_sym_function] = ACTIONS(1634), - [anon_sym_new] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1634), - [anon_sym_DASH] = ACTIONS(1634), - [anon_sym_TILDE] = ACTIONS(1632), - [anon_sym_void] = ACTIONS(1634), - [anon_sym_delete] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(1632), - [anon_sym_DASH_DASH] = ACTIONS(1632), - [anon_sym_DQUOTE] = ACTIONS(1632), - [anon_sym_SQUOTE] = ACTIONS(1632), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1632), - [sym_number] = ACTIONS(1632), - [sym_this] = ACTIONS(1634), - [sym_super] = ACTIONS(1634), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), - [sym_null] = ACTIONS(1634), - [sym_undefined] = ACTIONS(1634), - [anon_sym_AT] = ACTIONS(1632), - [anon_sym_static] = ACTIONS(1634), - [anon_sym_abstract] = ACTIONS(1634), - [anon_sym_get] = ACTIONS(1634), - [anon_sym_set] = ACTIONS(1634), - [anon_sym_declare] = ACTIONS(1634), - [anon_sym_public] = ACTIONS(1634), - [anon_sym_private] = ACTIONS(1634), - [anon_sym_protected] = ACTIONS(1634), - [anon_sym_module] = ACTIONS(1634), - [anon_sym_any] = ACTIONS(1634), - [anon_sym_number] = ACTIONS(1634), - [anon_sym_boolean] = ACTIONS(1634), - [anon_sym_string] = ACTIONS(1634), - [anon_sym_symbol] = ACTIONS(1634), - [anon_sym_interface] = ACTIONS(1634), - [anon_sym_enum] = ACTIONS(1634), - [sym_readonly] = ACTIONS(1634), + [sym_catch_clause] = STATE(511), + [sym_finally_clause] = STATE(553), + [ts_builtin_sym_end] = ACTIONS(1630), + [sym_identifier] = ACTIONS(1632), + [anon_sym_export] = ACTIONS(1632), + [anon_sym_default] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1632), + [anon_sym_typeof] = ACTIONS(1632), + [anon_sym_import] = ACTIONS(1632), + [anon_sym_var] = ACTIONS(1632), + [anon_sym_let] = ACTIONS(1632), + [anon_sym_const] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1632), + [anon_sym_else] = ACTIONS(1632), + [anon_sym_switch] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1630), + [anon_sym_await] = ACTIONS(1632), + [anon_sym_while] = ACTIONS(1632), + [anon_sym_do] = ACTIONS(1632), + [anon_sym_try] = ACTIONS(1632), + [anon_sym_with] = ACTIONS(1632), + [anon_sym_break] = ACTIONS(1632), + [anon_sym_continue] = ACTIONS(1632), + [anon_sym_debugger] = ACTIONS(1632), + [anon_sym_return] = ACTIONS(1632), + [anon_sym_throw] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_case] = ACTIONS(1632), + [anon_sym_catch] = ACTIONS(1634), + [anon_sym_finally] = ACTIONS(1636), + [anon_sym_yield] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_SLASH] = ACTIONS(1632), + [anon_sym_class] = ACTIONS(1632), + [anon_sym_async] = ACTIONS(1632), + [anon_sym_function] = ACTIONS(1632), + [anon_sym_new] = ACTIONS(1632), + [anon_sym_PLUS] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_TILDE] = ACTIONS(1630), + [anon_sym_void] = ACTIONS(1632), + [anon_sym_delete] = ACTIONS(1632), + [anon_sym_PLUS_PLUS] = ACTIONS(1630), + [anon_sym_DASH_DASH] = ACTIONS(1630), + [anon_sym_DQUOTE] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1630), + [sym_this] = ACTIONS(1632), + [sym_super] = ACTIONS(1632), + [sym_true] = ACTIONS(1632), + [sym_false] = ACTIONS(1632), + [sym_null] = ACTIONS(1632), + [sym_undefined] = ACTIONS(1632), + [anon_sym_AT] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1632), + [anon_sym_abstract] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1632), + [anon_sym_set] = ACTIONS(1632), + [anon_sym_declare] = ACTIONS(1632), + [anon_sym_public] = ACTIONS(1632), + [anon_sym_private] = ACTIONS(1632), + [anon_sym_protected] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1632), + [anon_sym_any] = ACTIONS(1632), + [anon_sym_number] = ACTIONS(1632), + [anon_sym_boolean] = ACTIONS(1632), + [anon_sym_string] = ACTIONS(1632), + [anon_sym_symbol] = ACTIONS(1632), + [anon_sym_interface] = ACTIONS(1632), + [anon_sym_enum] = ACTIONS(1632), + [sym_readonly] = ACTIONS(1632), }, [476] = { - [sym_object] = STATE(2317), - [sym_array] = STATE(2318), - [sym_identifier] = ACTIONS(1609), - [anon_sym_export] = ACTIONS(1611), + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1023), + [anon_sym_export] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(1023), + [anon_sym_namespace] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_type] = ACTIONS(1023), + [anon_sym_typeof] = ACTIONS(1023), + [anon_sym_import] = ACTIONS(1023), + [anon_sym_var] = ACTIONS(1023), + [anon_sym_let] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1023), + [anon_sym_else] = ACTIONS(1023), + [anon_sym_switch] = ACTIONS(1023), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_await] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1023), + [anon_sym_with] = ACTIONS(1023), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1023), + [anon_sym_debugger] = ACTIONS(1023), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_throw] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_case] = ACTIONS(1023), + [anon_sym_catch] = ACTIONS(1023), + [anon_sym_finally] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(1023), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1023), + [anon_sym_new] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1021), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1023), + [anon_sym_PLUS_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_SQUOTE] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1021), + [sym_number] = ACTIONS(1021), + [sym_this] = ACTIONS(1023), + [sym_super] = ACTIONS(1023), + [sym_true] = ACTIONS(1023), + [sym_false] = ACTIONS(1023), + [sym_null] = ACTIONS(1023), + [sym_undefined] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1021), + [anon_sym_static] = ACTIONS(1023), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1023), + [anon_sym_declare] = ACTIONS(1023), + [anon_sym_public] = ACTIONS(1023), + [anon_sym_private] = ACTIONS(1023), + [anon_sym_protected] = ACTIONS(1023), + [anon_sym_module] = ACTIONS(1023), + [anon_sym_any] = ACTIONS(1023), + [anon_sym_number] = ACTIONS(1023), + [anon_sym_boolean] = ACTIONS(1023), + [anon_sym_string] = ACTIONS(1023), + [anon_sym_symbol] = ACTIONS(1023), + [anon_sym_interface] = ACTIONS(1023), + [anon_sym_enum] = ACTIONS(1023), + [sym_readonly] = ACTIONS(1023), + [sym__automatic_semicolon] = ACTIONS(1638), + }, + [477] = { + [sym__call_signature] = STATE(3129), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1541), + [anon_sym_export] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1507), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1616), - [anon_sym_COMMA] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1611), + [anon_sym_namespace] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1543), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1640), - [anon_sym_LT] = ACTIONS(1133), + [anon_sym_COLON] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_RBRACK] = ACTIONS(1119), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1575), - [anon_sym_DASH_EQ] = ACTIONS(1575), - [anon_sym_STAR_EQ] = ACTIONS(1575), - [anon_sym_SLASH_EQ] = ACTIONS(1575), - [anon_sym_PERCENT_EQ] = ACTIONS(1575), - [anon_sym_CARET_EQ] = ACTIONS(1575), - [anon_sym_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_LT_LT_EQ] = ACTIONS(1575), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1575), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1575), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1575), - [anon_sym_QMARK] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1545), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -56463,64 +56766,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_this] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_get] = ACTIONS(1611), - [anon_sym_set] = ACTIONS(1611), - [anon_sym_declare] = ACTIONS(1611), - [anon_sym_public] = ACTIONS(1611), - [anon_sym_private] = ACTIONS(1611), - [anon_sym_protected] = ACTIONS(1611), - [anon_sym_module] = ACTIONS(1611), - [anon_sym_any] = ACTIONS(1611), - [anon_sym_number] = ACTIONS(1611), - [anon_sym_boolean] = ACTIONS(1611), - [anon_sym_string] = ACTIONS(1611), - [anon_sym_symbol] = ACTIONS(1611), - [sym_readonly] = ACTIONS(1611), + [anon_sym_static] = ACTIONS(1543), + [anon_sym_get] = ACTIONS(1543), + [anon_sym_set] = ACTIONS(1543), + [anon_sym_declare] = ACTIONS(1543), + [anon_sym_public] = ACTIONS(1543), + [anon_sym_private] = ACTIONS(1543), + [anon_sym_protected] = ACTIONS(1543), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_any] = ACTIONS(1543), + [anon_sym_number] = ACTIONS(1543), + [anon_sym_boolean] = ACTIONS(1543), + [anon_sym_string] = ACTIONS(1543), + [anon_sym_symbol] = ACTIONS(1543), + [sym_readonly] = ACTIONS(1543), }, - [477] = { - [sym__call_signature] = STATE(3290), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1445), - [anon_sym_export] = ACTIONS(1447), + [478] = { + [sym__call_signature] = STATE(3261), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1547), + [anon_sym_export] = ACTIONS(1549), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1640), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_COMMA] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1447), + [anon_sym_namespace] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1119), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1549), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1621), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1575), - [anon_sym_DASH_EQ] = ACTIONS(1575), - [anon_sym_STAR_EQ] = ACTIONS(1575), - [anon_sym_SLASH_EQ] = ACTIONS(1575), - [anon_sym_PERCENT_EQ] = ACTIONS(1575), - [anon_sym_CARET_EQ] = ACTIONS(1575), - [anon_sym_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_LT_LT_EQ] = ACTIONS(1575), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1575), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1575), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1575), - [anon_sym_QMARK] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1551), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1642), + [anon_sym_DASH_EQ] = ACTIONS(1642), + [anon_sym_STAR_EQ] = ACTIONS(1642), + [anon_sym_SLASH_EQ] = ACTIONS(1642), + [anon_sym_PERCENT_EQ] = ACTIONS(1642), + [anon_sym_CARET_EQ] = ACTIONS(1642), + [anon_sym_AMP_EQ] = ACTIONS(1642), + [anon_sym_PIPE_EQ] = ACTIONS(1642), + [anon_sym_GT_GT_EQ] = ACTIONS(1642), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1642), + [anon_sym_LT_LT_EQ] = ACTIONS(1642), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1642), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1642), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1642), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1642), + [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -56545,63 +56846,144 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_get] = ACTIONS(1447), - [anon_sym_set] = ACTIONS(1447), - [anon_sym_declare] = ACTIONS(1447), - [anon_sym_public] = ACTIONS(1447), - [anon_sym_private] = ACTIONS(1447), - [anon_sym_protected] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_number] = ACTIONS(1447), - [anon_sym_boolean] = ACTIONS(1447), - [anon_sym_string] = ACTIONS(1447), - [anon_sym_symbol] = ACTIONS(1447), - [sym_readonly] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_get] = ACTIONS(1549), + [anon_sym_set] = ACTIONS(1549), + [anon_sym_declare] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_module] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_number] = ACTIONS(1549), + [anon_sym_boolean] = ACTIONS(1549), + [anon_sym_string] = ACTIONS(1549), + [anon_sym_symbol] = ACTIONS(1549), + [anon_sym_implements] = ACTIONS(1133), + [sym_readonly] = ACTIONS(1549), }, - [478] = { - [sym__call_signature] = STATE(3290), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1445), - [anon_sym_export] = ACTIONS(1447), + [479] = { + [ts_builtin_sym_end] = ACTIONS(1644), + [sym_identifier] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_default] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_COMMA] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1646), + [anon_sym_import] = ACTIONS(1646), + [anon_sym_var] = ACTIONS(1646), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_else] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_await] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_do] = ACTIONS(1646), + [anon_sym_try] = ACTIONS(1646), + [anon_sym_with] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [anon_sym_debugger] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_throw] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_case] = ACTIONS(1646), + [anon_sym_yield] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_SLASH] = ACTIONS(1646), + [anon_sym_class] = ACTIONS(1646), + [anon_sym_async] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_new] = ACTIONS(1646), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_void] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1644), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1646), + [sym_super] = ACTIONS(1646), + [sym_true] = ACTIONS(1646), + [sym_false] = ACTIONS(1646), + [sym_null] = ACTIONS(1646), + [sym_undefined] = ACTIONS(1646), + [anon_sym_AT] = ACTIONS(1644), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_abstract] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_implements] = ACTIONS(1646), + [anon_sym_interface] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [sym_readonly] = ACTIONS(1646), + }, + [480] = { + [sym__call_signature] = STATE(3080), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1563), + [anon_sym_export] = ACTIONS(1565), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1648), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_COMMA] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1447), + [anon_sym_namespace] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1133), + [anon_sym_COMMA] = ACTIONS(1119), + [anon_sym_type] = ACTIONS(1565), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1447), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1575), - [anon_sym_DASH_EQ] = ACTIONS(1575), - [anon_sym_STAR_EQ] = ACTIONS(1575), - [anon_sym_SLASH_EQ] = ACTIONS(1575), - [anon_sym_PERCENT_EQ] = ACTIONS(1575), - [anon_sym_CARET_EQ] = ACTIONS(1575), - [anon_sym_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_LT_LT_EQ] = ACTIONS(1575), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1575), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1575), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1575), - [anon_sym_QMARK] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_function] = ACTIONS(1571), + [anon_sym_EQ_GT] = ACTIONS(1573), + [anon_sym_QMARK_DOT] = ACTIONS(1575), + [anon_sym_PLUS_EQ] = ACTIONS(1650), + [anon_sym_DASH_EQ] = ACTIONS(1650), + [anon_sym_STAR_EQ] = ACTIONS(1650), + [anon_sym_SLASH_EQ] = ACTIONS(1650), + [anon_sym_PERCENT_EQ] = ACTIONS(1650), + [anon_sym_CARET_EQ] = ACTIONS(1650), + [anon_sym_AMP_EQ] = ACTIONS(1650), + [anon_sym_PIPE_EQ] = ACTIONS(1650), + [anon_sym_GT_GT_EQ] = ACTIONS(1650), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1650), + [anon_sym_LT_LT_EQ] = ACTIONS(1650), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1650), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1650), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1650), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -56626,143 +57008,63 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1447), - [anon_sym_get] = ACTIONS(1447), - [anon_sym_set] = ACTIONS(1447), - [anon_sym_declare] = ACTIONS(1447), - [anon_sym_public] = ACTIONS(1447), - [anon_sym_private] = ACTIONS(1447), - [anon_sym_protected] = ACTIONS(1447), - [anon_sym_module] = ACTIONS(1447), - [anon_sym_any] = ACTIONS(1447), - [anon_sym_number] = ACTIONS(1447), - [anon_sym_boolean] = ACTIONS(1447), - [anon_sym_string] = ACTIONS(1447), - [anon_sym_symbol] = ACTIONS(1447), - [sym_readonly] = ACTIONS(1447), - }, - [479] = { - [ts_builtin_sym_end] = ACTIONS(1642), - [sym_identifier] = ACTIONS(1644), - [anon_sym_export] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1644), - [anon_sym_namespace] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_COMMA] = ACTIONS(1642), - [anon_sym_RBRACE] = ACTIONS(1642), - [anon_sym_type] = ACTIONS(1644), - [anon_sym_typeof] = ACTIONS(1644), - [anon_sym_import] = ACTIONS(1644), - [anon_sym_var] = ACTIONS(1644), - [anon_sym_let] = ACTIONS(1644), - [anon_sym_const] = ACTIONS(1644), - [anon_sym_BANG] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_else] = ACTIONS(1644), - [anon_sym_switch] = ACTIONS(1644), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_await] = ACTIONS(1644), - [anon_sym_while] = ACTIONS(1644), - [anon_sym_do] = ACTIONS(1644), - [anon_sym_try] = ACTIONS(1644), - [anon_sym_with] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_debugger] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_SEMI] = ACTIONS(1642), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_yield] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1642), - [anon_sym_LT] = ACTIONS(1642), - [anon_sym_SLASH] = ACTIONS(1644), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_async] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(1644), - [anon_sym_new] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1642), - [anon_sym_PIPE] = ACTIONS(1642), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_void] = ACTIONS(1644), - [anon_sym_delete] = ACTIONS(1644), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_DQUOTE] = ACTIONS(1642), - [anon_sym_SQUOTE] = ACTIONS(1642), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1642), - [sym_number] = ACTIONS(1642), - [sym_this] = ACTIONS(1644), - [sym_super] = ACTIONS(1644), - [sym_true] = ACTIONS(1644), - [sym_false] = ACTIONS(1644), - [sym_null] = ACTIONS(1644), - [sym_undefined] = ACTIONS(1644), - [anon_sym_AT] = ACTIONS(1642), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_abstract] = ACTIONS(1644), - [anon_sym_get] = ACTIONS(1644), - [anon_sym_set] = ACTIONS(1644), - [anon_sym_declare] = ACTIONS(1644), - [anon_sym_public] = ACTIONS(1644), - [anon_sym_private] = ACTIONS(1644), - [anon_sym_protected] = ACTIONS(1644), - [anon_sym_module] = ACTIONS(1644), - [anon_sym_any] = ACTIONS(1644), - [anon_sym_number] = ACTIONS(1644), - [anon_sym_boolean] = ACTIONS(1644), - [anon_sym_string] = ACTIONS(1644), - [anon_sym_symbol] = ACTIONS(1644), - [anon_sym_implements] = ACTIONS(1644), - [anon_sym_interface] = ACTIONS(1644), - [anon_sym_enum] = ACTIONS(1644), - [sym_readonly] = ACTIONS(1644), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_get] = ACTIONS(1565), + [anon_sym_set] = ACTIONS(1565), + [anon_sym_declare] = ACTIONS(1565), + [anon_sym_public] = ACTIONS(1565), + [anon_sym_private] = ACTIONS(1565), + [anon_sym_protected] = ACTIONS(1565), + [anon_sym_module] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_number] = ACTIONS(1565), + [anon_sym_boolean] = ACTIONS(1565), + [anon_sym_string] = ACTIONS(1565), + [anon_sym_symbol] = ACTIONS(1565), + [sym_readonly] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1119), }, - [480] = { - [sym__call_signature] = STATE(3259), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1539), + [481] = { + [sym_object] = STATE(2342), + [sym_array] = STATE(2326), + [sym_identifier] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(1620), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1646), + [anon_sym_EQ] = ACTIONS(1601), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_type] = ACTIONS(1539), + [anon_sym_namespace] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_type] = ACTIONS(1620), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(1604), [anon_sym_in] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1133), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1539), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1541), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1648), - [anon_sym_DASH_EQ] = ACTIONS(1648), - [anon_sym_STAR_EQ] = ACTIONS(1648), - [anon_sym_SLASH_EQ] = ACTIONS(1648), - [anon_sym_PERCENT_EQ] = ACTIONS(1648), - [anon_sym_CARET_EQ] = ACTIONS(1648), - [anon_sym_AMP_EQ] = ACTIONS(1648), - [anon_sym_PIPE_EQ] = ACTIONS(1648), - [anon_sym_GT_GT_EQ] = ACTIONS(1648), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1648), - [anon_sym_LT_LT_EQ] = ACTIONS(1648), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1648), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1648), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1648), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1648), - [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1620), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1561), + [anon_sym_DASH_EQ] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1561), + [anon_sym_SLASH_EQ] = ACTIONS(1561), + [anon_sym_PERCENT_EQ] = ACTIONS(1561), + [anon_sym_CARET_EQ] = ACTIONS(1561), + [anon_sym_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_LT_LT_EQ] = ACTIONS(1561), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1561), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1561), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -56787,111 +57089,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_get] = ACTIONS(1539), - [anon_sym_set] = ACTIONS(1539), - [anon_sym_declare] = ACTIONS(1539), - [anon_sym_public] = ACTIONS(1539), - [anon_sym_private] = ACTIONS(1539), - [anon_sym_protected] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_number] = ACTIONS(1539), - [anon_sym_boolean] = ACTIONS(1539), - [anon_sym_string] = ACTIONS(1539), - [anon_sym_symbol] = ACTIONS(1539), - [anon_sym_implements] = ACTIONS(1133), - [sym_readonly] = ACTIONS(1539), - }, - [481] = { - [sym_type_arguments] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1652), - [anon_sym_export] = ACTIONS(1652), - [anon_sym_default] = ACTIONS(1652), - [anon_sym_namespace] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1650), - [anon_sym_type] = ACTIONS(1652), - [anon_sym_typeof] = ACTIONS(1652), - [anon_sym_import] = ACTIONS(1652), - [anon_sym_var] = ACTIONS(1652), - [anon_sym_let] = ACTIONS(1652), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_BANG] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_else] = ACTIONS(1652), - [anon_sym_switch] = ACTIONS(1652), - [anon_sym_for] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_await] = ACTIONS(1652), - [anon_sym_while] = ACTIONS(1652), - [anon_sym_do] = ACTIONS(1652), - [anon_sym_try] = ACTIONS(1652), - [anon_sym_with] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_debugger] = ACTIONS(1652), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_SEMI] = ACTIONS(1650), - [anon_sym_case] = ACTIONS(1652), - [anon_sym_yield] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1650), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_class] = ACTIONS(1652), - [anon_sym_async] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(1652), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(1650), - [anon_sym_PIPE] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_TILDE] = ACTIONS(1650), - [anon_sym_void] = ACTIONS(1652), - [anon_sym_delete] = ACTIONS(1652), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1650), - [anon_sym_SQUOTE] = ACTIONS(1650), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1650), - [sym_number] = ACTIONS(1650), - [sym_this] = ACTIONS(1652), - [sym_super] = ACTIONS(1652), - [sym_true] = ACTIONS(1652), - [sym_false] = ACTIONS(1652), - [sym_null] = ACTIONS(1652), - [sym_undefined] = ACTIONS(1652), - [anon_sym_AT] = ACTIONS(1650), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_abstract] = ACTIONS(1652), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_declare] = ACTIONS(1652), - [anon_sym_public] = ACTIONS(1652), - [anon_sym_private] = ACTIONS(1652), - [anon_sym_protected] = ACTIONS(1652), - [anon_sym_module] = ACTIONS(1652), - [anon_sym_any] = ACTIONS(1652), - [anon_sym_number] = ACTIONS(1652), - [anon_sym_boolean] = ACTIONS(1652), - [anon_sym_string] = ACTIONS(1652), - [anon_sym_symbol] = ACTIONS(1652), - [anon_sym_interface] = ACTIONS(1652), - [anon_sym_enum] = ACTIONS(1652), - [sym_readonly] = ACTIONS(1652), + [sym_this] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1620), + [anon_sym_set] = ACTIONS(1620), + [anon_sym_declare] = ACTIONS(1620), + [anon_sym_public] = ACTIONS(1620), + [anon_sym_private] = ACTIONS(1620), + [anon_sym_protected] = ACTIONS(1620), + [anon_sym_module] = ACTIONS(1620), + [anon_sym_any] = ACTIONS(1620), + [anon_sym_number] = ACTIONS(1620), + [anon_sym_boolean] = ACTIONS(1620), + [anon_sym_string] = ACTIONS(1620), + [anon_sym_symbol] = ACTIONS(1620), + [sym_readonly] = ACTIONS(1620), }, [482] = { + [sym_type_arguments] = STATE(426), [ts_builtin_sym_end] = ACTIONS(1654), [sym_identifier] = ACTIONS(1656), [anon_sym_export] = ACTIONS(1656), [anon_sym_default] = ACTIONS(1656), [anon_sym_namespace] = ACTIONS(1656), [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_COMMA] = ACTIONS(1654), [anon_sym_RBRACE] = ACTIONS(1654), [anon_sym_type] = ACTIONS(1656), [anon_sym_typeof] = ACTIONS(1656), @@ -56921,6 +57142,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1654), [anon_sym_LT] = ACTIONS(1654), [anon_sym_SLASH] = ACTIONS(1656), + [anon_sym_DOT] = ACTIONS(1586), [anon_sym_class] = ACTIONS(1656), [anon_sym_async] = ACTIONS(1656), [anon_sym_function] = ACTIONS(1656), @@ -56960,46 +57182,125 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1656), [anon_sym_string] = ACTIONS(1656), [anon_sym_symbol] = ACTIONS(1656), - [anon_sym_implements] = ACTIONS(1656), [anon_sym_interface] = ACTIONS(1656), [anon_sym_enum] = ACTIONS(1656), [sym_readonly] = ACTIONS(1656), }, [483] = { - [sym_object] = STATE(2363), - [sym_array] = STATE(2365), - [sym_nested_identifier] = STATE(3193), - [sym_string] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1023), + [anon_sym_export] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(1023), + [anon_sym_namespace] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_type] = ACTIONS(1023), + [anon_sym_typeof] = ACTIONS(1023), + [anon_sym_import] = ACTIONS(1023), + [anon_sym_var] = ACTIONS(1023), + [anon_sym_let] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1023), + [anon_sym_else] = ACTIONS(1023), + [anon_sym_switch] = ACTIONS(1023), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_await] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1023), + [anon_sym_with] = ACTIONS(1023), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1023), + [anon_sym_debugger] = ACTIONS(1023), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_throw] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_case] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(1023), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1023), + [anon_sym_new] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1021), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1023), + [anon_sym_PLUS_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_SQUOTE] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1021), + [sym_number] = ACTIONS(1021), + [sym_this] = ACTIONS(1023), + [sym_super] = ACTIONS(1023), + [sym_true] = ACTIONS(1023), + [sym_false] = ACTIONS(1023), + [sym_null] = ACTIONS(1023), + [sym_undefined] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1021), + [anon_sym_static] = ACTIONS(1023), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1023), + [anon_sym_declare] = ACTIONS(1023), + [anon_sym_public] = ACTIONS(1023), + [anon_sym_private] = ACTIONS(1023), + [anon_sym_protected] = ACTIONS(1023), + [anon_sym_module] = ACTIONS(1023), + [anon_sym_any] = ACTIONS(1023), + [anon_sym_number] = ACTIONS(1023), + [anon_sym_boolean] = ACTIONS(1023), + [anon_sym_string] = ACTIONS(1023), + [anon_sym_symbol] = ACTIONS(1023), + [anon_sym_interface] = ACTIONS(1023), + [anon_sym_enum] = ACTIONS(1023), + [sym_readonly] = ACTIONS(1023), + [anon_sym_PIPE_RBRACE] = ACTIONS(1021), + [sym__automatic_semicolon] = ACTIONS(1021), + }, + [484] = { + [sym_object] = STATE(2300), + [sym_array] = STATE(2311), + [sym_nested_identifier] = STATE(3289), + [sym_string] = STATE(431), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(3289), - [sym_rest_parameter] = STATE(2666), - [sym_nested_type_identifier] = STATE(1923), + [sym_formal_parameters] = STATE(3280), + [sym_rest_parameter] = STATE(2725), + [sym_nested_type_identifier] = STATE(1924), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym__type] = STATE(2685), - [sym_constructor_type] = STATE(2685), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2843), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2685), - [sym_intersection_type] = STATE(2685), - [sym_function_type] = STATE(2685), - [aux_sym_export_statement_repeat1] = STATE(1797), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym__type] = STATE(2829), + [sym_constructor_type] = STATE(2829), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2931), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2829), + [sym_intersection_type] = STATE(2829), + [sym_function_type] = STATE(2829), + [aux_sym_export_statement_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(1658), [anon_sym_export] = ACTIONS(1660), [anon_sym_STAR] = ACTIONS(451), @@ -57045,121 +57346,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_keyof] = ACTIONS(521), [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, - [484] = { - [ts_builtin_sym_end] = ACTIONS(901), - [sym_identifier] = ACTIONS(903), - [anon_sym_export] = ACTIONS(903), - [anon_sym_default] = ACTIONS(903), - [anon_sym_namespace] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(901), - [anon_sym_COMMA] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_type] = ACTIONS(903), - [anon_sym_typeof] = ACTIONS(903), - [anon_sym_import] = ACTIONS(903), - [anon_sym_var] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(901), - [anon_sym_if] = ACTIONS(903), - [anon_sym_else] = ACTIONS(903), - [anon_sym_switch] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(901), - [anon_sym_await] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_try] = ACTIONS(903), - [anon_sym_with] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_debugger] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_throw] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(901), - [anon_sym_case] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_class] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_function] = ACTIONS(903), - [anon_sym_new] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_TILDE] = ACTIONS(901), - [anon_sym_void] = ACTIONS(903), - [anon_sym_delete] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(901), - [anon_sym_DASH_DASH] = ACTIONS(901), - [anon_sym_DQUOTE] = ACTIONS(901), - [anon_sym_SQUOTE] = ACTIONS(901), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(901), - [sym_number] = ACTIONS(901), - [sym_this] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_true] = ACTIONS(903), - [sym_false] = ACTIONS(903), - [sym_null] = ACTIONS(903), - [sym_undefined] = ACTIONS(903), - [anon_sym_AT] = ACTIONS(901), - [anon_sym_static] = ACTIONS(903), - [anon_sym_abstract] = ACTIONS(903), - [anon_sym_get] = ACTIONS(903), - [anon_sym_set] = ACTIONS(903), - [anon_sym_declare] = ACTIONS(903), - [anon_sym_public] = ACTIONS(903), - [anon_sym_private] = ACTIONS(903), - [anon_sym_protected] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_any] = ACTIONS(903), - [anon_sym_number] = ACTIONS(903), - [anon_sym_boolean] = ACTIONS(903), - [anon_sym_string] = ACTIONS(903), - [anon_sym_symbol] = ACTIONS(903), - [anon_sym_interface] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [sym_readonly] = ACTIONS(903), - [anon_sym_PIPE_RBRACE] = ACTIONS(901), - [sym__automatic_semicolon] = ACTIONS(1690), + [485] = { + [ts_builtin_sym_end] = ACTIONS(965), + [sym_identifier] = ACTIONS(967), + [anon_sym_export] = ACTIONS(967), + [anon_sym_default] = ACTIONS(967), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_type] = ACTIONS(967), + [anon_sym_typeof] = ACTIONS(967), + [anon_sym_import] = ACTIONS(967), + [anon_sym_var] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_await] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_try] = ACTIONS(967), + [anon_sym_with] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_debugger] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_throw] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_case] = ACTIONS(967), + [anon_sym_catch] = ACTIONS(967), + [anon_sym_finally] = ACTIONS(967), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_class] = ACTIONS(967), + [anon_sym_async] = ACTIONS(967), + [anon_sym_function] = ACTIONS(967), + [anon_sym_new] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(965), + [anon_sym_void] = ACTIONS(967), + [anon_sym_delete] = ACTIONS(967), + [anon_sym_PLUS_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(965), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(965), + [sym_number] = ACTIONS(965), + [sym_this] = ACTIONS(967), + [sym_super] = ACTIONS(967), + [sym_true] = ACTIONS(967), + [sym_false] = ACTIONS(967), + [sym_null] = ACTIONS(967), + [sym_undefined] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_static] = ACTIONS(967), + [anon_sym_abstract] = ACTIONS(967), + [anon_sym_get] = ACTIONS(967), + [anon_sym_set] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(967), + [anon_sym_public] = ACTIONS(967), + [anon_sym_private] = ACTIONS(967), + [anon_sym_protected] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_any] = ACTIONS(967), + [anon_sym_number] = ACTIONS(967), + [anon_sym_boolean] = ACTIONS(967), + [anon_sym_string] = ACTIONS(967), + [anon_sym_symbol] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(967), + [sym_readonly] = ACTIONS(967), }, - [485] = { - [sym_object] = STATE(2363), - [sym_array] = STATE(2365), - [sym_nested_identifier] = STATE(3193), - [sym_string] = STATE(442), + [486] = { + [sym_object] = STATE(2300), + [sym_array] = STATE(2311), + [sym_nested_identifier] = STATE(3289), + [sym_string] = STATE(431), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(3289), - [sym_rest_parameter] = STATE(2666), - [sym_nested_type_identifier] = STATE(1923), + [sym_formal_parameters] = STATE(3280), + [sym_rest_parameter] = STATE(2725), + [sym_nested_type_identifier] = STATE(1924), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym__type] = STATE(2696), - [sym_constructor_type] = STATE(2696), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2843), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2696), - [sym_intersection_type] = STATE(2696), - [sym_function_type] = STATE(2696), - [aux_sym_export_statement_repeat1] = STATE(1797), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym__type] = STATE(2695), + [sym_constructor_type] = STATE(2695), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2931), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2695), + [sym_intersection_type] = STATE(2695), + [sym_function_type] = STATE(2695), + [aux_sym_export_statement_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(1658), [anon_sym_export] = ACTIONS(1660), [anon_sym_STAR] = ACTIONS(451), @@ -57205,121 +57506,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_keyof] = ACTIONS(521), [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, - [486] = { - [sym_type_arguments] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1692), - [sym_identifier] = ACTIONS(1694), - [anon_sym_export] = ACTIONS(1694), - [anon_sym_default] = ACTIONS(1694), - [anon_sym_namespace] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_RBRACE] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1694), - [anon_sym_import] = ACTIONS(1694), - [anon_sym_var] = ACTIONS(1694), - [anon_sym_let] = ACTIONS(1694), - [anon_sym_const] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_switch] = ACTIONS(1694), - [anon_sym_for] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_await] = ACTIONS(1694), - [anon_sym_while] = ACTIONS(1694), - [anon_sym_do] = ACTIONS(1694), - [anon_sym_try] = ACTIONS(1694), - [anon_sym_with] = ACTIONS(1694), - [anon_sym_break] = ACTIONS(1694), - [anon_sym_continue] = ACTIONS(1694), - [anon_sym_debugger] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1694), - [anon_sym_throw] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1694), - [anon_sym_yield] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_class] = ACTIONS(1694), - [anon_sym_async] = ACTIONS(1694), - [anon_sym_function] = ACTIONS(1694), - [anon_sym_new] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1692), - [anon_sym_void] = ACTIONS(1694), - [anon_sym_delete] = ACTIONS(1694), - [anon_sym_PLUS_PLUS] = ACTIONS(1692), - [anon_sym_DASH_DASH] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1692), - [sym_number] = ACTIONS(1692), - [sym_this] = ACTIONS(1694), - [sym_super] = ACTIONS(1694), - [sym_true] = ACTIONS(1694), - [sym_false] = ACTIONS(1694), - [sym_null] = ACTIONS(1694), - [sym_undefined] = ACTIONS(1694), - [anon_sym_AT] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1694), - [anon_sym_abstract] = ACTIONS(1694), - [anon_sym_get] = ACTIONS(1694), - [anon_sym_set] = ACTIONS(1694), - [anon_sym_declare] = ACTIONS(1694), - [anon_sym_public] = ACTIONS(1694), - [anon_sym_private] = ACTIONS(1694), - [anon_sym_protected] = ACTIONS(1694), - [anon_sym_module] = ACTIONS(1694), - [anon_sym_any] = ACTIONS(1694), - [anon_sym_number] = ACTIONS(1694), - [anon_sym_boolean] = ACTIONS(1694), - [anon_sym_string] = ACTIONS(1694), - [anon_sym_symbol] = ACTIONS(1694), - [anon_sym_interface] = ACTIONS(1694), - [anon_sym_enum] = ACTIONS(1694), - [sym_readonly] = ACTIONS(1694), - }, [487] = { - [sym_object] = STATE(2363), - [sym_array] = STATE(2365), - [sym_nested_identifier] = STATE(3193), - [sym_string] = STATE(442), + [sym_object] = STATE(2300), + [sym_array] = STATE(2311), + [sym_nested_identifier] = STATE(3289), + [sym_string] = STATE(431), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(3289), - [sym_rest_parameter] = STATE(2666), - [sym_nested_type_identifier] = STATE(1923), + [sym_formal_parameters] = STATE(3280), + [sym_rest_parameter] = STATE(2725), + [sym_nested_type_identifier] = STATE(1924), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym__type] = STATE(2691), - [sym_constructor_type] = STATE(2691), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2843), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2691), - [sym_intersection_type] = STATE(2691), - [sym_function_type] = STATE(2691), - [aux_sym_export_statement_repeat1] = STATE(1797), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym__type] = STATE(2696), + [sym_constructor_type] = STATE(2696), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2931), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2696), + [sym_intersection_type] = STATE(2696), + [sym_function_type] = STATE(2696), + [aux_sym_export_statement_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(1658), [anon_sym_export] = ACTIONS(1660), [anon_sym_STAR] = ACTIONS(451), @@ -57366,22 +57587,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, [488] = { - [sym__call_signature] = STATE(3144), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), + [sym__call_signature] = STATE(3146), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), [sym_identifier] = ACTIONS(1590), [anon_sym_export] = ACTIONS(1592), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1699), + [anon_sym_EQ] = ACTIONS(1690), [anon_sym_as] = ACTIONS(1133), [anon_sym_namespace] = ACTIONS(1592), [anon_sym_type] = ACTIONS(1592), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1133), [anon_sym_SEMI] = ACTIONS(1119), [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), [anon_sym_DOT] = ACTIONS(1146), @@ -57389,21 +57610,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_function] = ACTIONS(1535), [anon_sym_EQ_GT] = ACTIONS(1594), [anon_sym_QMARK_DOT] = ACTIONS(1156), - [anon_sym_PLUS_EQ] = ACTIONS(1701), - [anon_sym_DASH_EQ] = ACTIONS(1701), - [anon_sym_STAR_EQ] = ACTIONS(1701), - [anon_sym_SLASH_EQ] = ACTIONS(1701), - [anon_sym_PERCENT_EQ] = ACTIONS(1701), - [anon_sym_CARET_EQ] = ACTIONS(1701), - [anon_sym_AMP_EQ] = ACTIONS(1701), - [anon_sym_PIPE_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1701), - [anon_sym_LT_LT_EQ] = ACTIONS(1701), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1701), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1701), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1701), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1701), + [anon_sym_PLUS_EQ] = ACTIONS(1692), + [anon_sym_DASH_EQ] = ACTIONS(1692), + [anon_sym_STAR_EQ] = ACTIONS(1692), + [anon_sym_SLASH_EQ] = ACTIONS(1692), + [anon_sym_PERCENT_EQ] = ACTIONS(1692), + [anon_sym_CARET_EQ] = ACTIONS(1692), + [anon_sym_AMP_EQ] = ACTIONS(1692), + [anon_sym_PIPE_EQ] = ACTIONS(1692), + [anon_sym_GT_GT_EQ] = ACTIONS(1692), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1692), + [anon_sym_LT_LT_EQ] = ACTIONS(1692), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1692), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1692), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1692), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1692), [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), @@ -57446,605 +57667,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1119), }, [489] = { - [ts_builtin_sym_end] = ACTIONS(999), - [sym_identifier] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_type] = ACTIONS(1001), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(1001), - [anon_sym_var] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_else] = ACTIONS(1001), - [anon_sym_switch] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_with] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_debugger] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_throw] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_case] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_class] = ACTIONS(1001), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_function] = ACTIONS(1001), - [anon_sym_new] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(999), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(999), - [sym_number] = ACTIONS(999), - [sym_this] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), - [sym_true] = ACTIONS(1001), - [sym_false] = ACTIONS(1001), - [sym_null] = ACTIONS(1001), - [sym_undefined] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(999), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_abstract] = ACTIONS(1001), - [anon_sym_get] = ACTIONS(1001), - [anon_sym_set] = ACTIONS(1001), - [anon_sym_declare] = ACTIONS(1001), - [anon_sym_public] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1001), - [anon_sym_protected] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_any] = ACTIONS(1001), - [anon_sym_number] = ACTIONS(1001), - [anon_sym_boolean] = ACTIONS(1001), - [anon_sym_string] = ACTIONS(1001), - [anon_sym_symbol] = ACTIONS(1001), - [anon_sym_interface] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [sym_readonly] = ACTIONS(1001), - [anon_sym_PIPE_RBRACE] = ACTIONS(999), - [sym__automatic_semicolon] = ACTIONS(999), - }, - [490] = { - [ts_builtin_sym_end] = ACTIONS(1055), - [sym_identifier] = ACTIONS(1057), - [anon_sym_export] = ACTIONS(1057), - [anon_sym_default] = ACTIONS(1057), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_COMMA] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1057), - [anon_sym_typeof] = ACTIONS(1057), - [anon_sym_import] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(1057), - [anon_sym_const] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1057), - [anon_sym_switch] = ACTIONS(1057), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1057), - [anon_sym_do] = ACTIONS(1057), - [anon_sym_try] = ACTIONS(1057), - [anon_sym_with] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1057), - [anon_sym_continue] = ACTIONS(1057), - [anon_sym_debugger] = ACTIONS(1057), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_throw] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_case] = ACTIONS(1057), - [anon_sym_yield] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1057), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_async] = ACTIONS(1057), - [anon_sym_function] = ACTIONS(1057), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(1055), - [anon_sym_void] = ACTIONS(1057), - [anon_sym_delete] = ACTIONS(1057), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1055), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1055), - [sym_number] = ACTIONS(1055), - [sym_this] = ACTIONS(1057), - [sym_super] = ACTIONS(1057), - [sym_true] = ACTIONS(1057), - [sym_false] = ACTIONS(1057), - [sym_null] = ACTIONS(1057), - [sym_undefined] = ACTIONS(1057), - [anon_sym_AT] = ACTIONS(1055), - [anon_sym_static] = ACTIONS(1057), - [anon_sym_abstract] = ACTIONS(1057), - [anon_sym_get] = ACTIONS(1057), - [anon_sym_set] = ACTIONS(1057), - [anon_sym_declare] = ACTIONS(1057), - [anon_sym_public] = ACTIONS(1057), - [anon_sym_private] = ACTIONS(1057), - [anon_sym_protected] = ACTIONS(1057), - [anon_sym_module] = ACTIONS(1057), - [anon_sym_any] = ACTIONS(1057), - [anon_sym_number] = ACTIONS(1057), - [anon_sym_boolean] = ACTIONS(1057), - [anon_sym_string] = ACTIONS(1057), - [anon_sym_symbol] = ACTIONS(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1057), - [sym_readonly] = ACTIONS(1057), - [anon_sym_PIPE_RBRACE] = ACTIONS(1055), - [sym__automatic_semicolon] = ACTIONS(1055), - }, - [491] = { - [ts_builtin_sym_end] = ACTIONS(935), - [sym_identifier] = ACTIONS(937), - [anon_sym_export] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_namespace] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_typeof] = ACTIONS(937), - [anon_sym_import] = ACTIONS(937), - [anon_sym_var] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_if] = ACTIONS(937), - [anon_sym_else] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_await] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [anon_sym_try] = ACTIONS(937), - [anon_sym_with] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_debugger] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_throw] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_case] = ACTIONS(937), - [anon_sym_catch] = ACTIONS(937), - [anon_sym_finally] = ACTIONS(937), - [anon_sym_yield] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_class] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(937), - [anon_sym_new] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_void] = ACTIONS(937), - [anon_sym_delete] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(935), - [sym_number] = ACTIONS(935), - [sym_this] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_true] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [sym_undefined] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(935), - [anon_sym_static] = ACTIONS(937), - [anon_sym_abstract] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [anon_sym_declare] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_any] = ACTIONS(937), - [anon_sym_number] = ACTIONS(937), - [anon_sym_boolean] = ACTIONS(937), - [anon_sym_string] = ACTIONS(937), - [anon_sym_symbol] = ACTIONS(937), - [anon_sym_interface] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [sym_readonly] = ACTIONS(937), - }, - [492] = { - [ts_builtin_sym_end] = ACTIONS(935), - [sym_identifier] = ACTIONS(937), - [anon_sym_export] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_namespace] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_typeof] = ACTIONS(937), - [anon_sym_import] = ACTIONS(937), - [anon_sym_var] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_if] = ACTIONS(937), - [anon_sym_else] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_await] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [anon_sym_try] = ACTIONS(937), - [anon_sym_with] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_debugger] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_throw] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_case] = ACTIONS(937), - [anon_sym_yield] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_class] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(937), - [anon_sym_new] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_void] = ACTIONS(937), - [anon_sym_delete] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(935), - [sym_number] = ACTIONS(935), - [sym_this] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_true] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [sym_undefined] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(935), - [anon_sym_static] = ACTIONS(937), - [anon_sym_abstract] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [anon_sym_declare] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_any] = ACTIONS(937), - [anon_sym_number] = ACTIONS(937), - [anon_sym_boolean] = ACTIONS(937), - [anon_sym_string] = ACTIONS(937), - [anon_sym_symbol] = ACTIONS(937), - [anon_sym_interface] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [sym_readonly] = ACTIONS(937), - [anon_sym_PIPE_RBRACE] = ACTIONS(935), - [sym__automatic_semicolon] = ACTIONS(935), - }, - [493] = { - [ts_builtin_sym_end] = ACTIONS(951), - [sym_identifier] = ACTIONS(953), - [anon_sym_export] = ACTIONS(953), - [anon_sym_default] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_type] = ACTIONS(953), - [anon_sym_typeof] = ACTIONS(953), - [anon_sym_import] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_switch] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_await] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_try] = ACTIONS(953), - [anon_sym_with] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_debugger] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_throw] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_case] = ACTIONS(953), - [anon_sym_yield] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(953), - [anon_sym_class] = ACTIONS(953), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(953), - [anon_sym_new] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_TILDE] = ACTIONS(951), - [anon_sym_void] = ACTIONS(953), - [anon_sym_delete] = ACTIONS(953), - [anon_sym_PLUS_PLUS] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_SQUOTE] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(951), - [sym_number] = ACTIONS(951), - [sym_this] = ACTIONS(953), - [sym_super] = ACTIONS(953), - [sym_true] = ACTIONS(953), - [sym_false] = ACTIONS(953), - [sym_null] = ACTIONS(953), - [sym_undefined] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_static] = ACTIONS(953), - [anon_sym_abstract] = ACTIONS(953), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(953), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_public] = ACTIONS(953), - [anon_sym_private] = ACTIONS(953), - [anon_sym_protected] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_any] = ACTIONS(953), - [anon_sym_number] = ACTIONS(953), - [anon_sym_boolean] = ACTIONS(953), - [anon_sym_string] = ACTIONS(953), - [anon_sym_symbol] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(953), - [sym_readonly] = ACTIONS(953), - [anon_sym_PIPE_RBRACE] = ACTIONS(951), - [sym__automatic_semicolon] = ACTIONS(951), - }, - [494] = { - [sym_type_arguments] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(1495), - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_namespace] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1495), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1497), - [anon_sym_var] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1495), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_with] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_debugger] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_throw] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_class] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_function] = ACTIONS(1497), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_void] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1495), - [anon_sym_DASH_DASH] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1495), - [sym_number] = ACTIONS(1495), - [sym_this] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_true] = ACTIONS(1497), - [sym_false] = ACTIONS(1497), - [sym_null] = ACTIONS(1497), - [sym_undefined] = ACTIONS(1497), - [anon_sym_AT] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_abstract] = ACTIONS(1497), - [anon_sym_get] = ACTIONS(1497), - [anon_sym_set] = ACTIONS(1497), - [anon_sym_declare] = ACTIONS(1497), - [anon_sym_public] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_protected] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_any] = ACTIONS(1497), - [anon_sym_number] = ACTIONS(1497), - [anon_sym_boolean] = ACTIONS(1497), - [anon_sym_string] = ACTIONS(1497), - [anon_sym_symbol] = ACTIONS(1497), - [anon_sym_interface] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [sym_readonly] = ACTIONS(1497), - }, - [495] = { - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1053), - [anon_sym_export] = ACTIONS(1053), - [anon_sym_default] = ACTIONS(1053), - [anon_sym_namespace] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1053), - [anon_sym_typeof] = ACTIONS(1053), - [anon_sym_import] = ACTIONS(1053), - [anon_sym_var] = ACTIONS(1053), - [anon_sym_let] = ACTIONS(1053), - [anon_sym_const] = ACTIONS(1053), - [anon_sym_BANG] = ACTIONS(1051), - [anon_sym_if] = ACTIONS(1053), - [anon_sym_else] = ACTIONS(1053), - [anon_sym_switch] = ACTIONS(1053), - [anon_sym_for] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_await] = ACTIONS(1053), - [anon_sym_while] = ACTIONS(1053), - [anon_sym_do] = ACTIONS(1053), - [anon_sym_try] = ACTIONS(1053), - [anon_sym_with] = ACTIONS(1053), - [anon_sym_break] = ACTIONS(1053), - [anon_sym_continue] = ACTIONS(1053), - [anon_sym_debugger] = ACTIONS(1053), - [anon_sym_return] = ACTIONS(1053), - [anon_sym_throw] = ACTIONS(1053), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_case] = ACTIONS(1053), - [anon_sym_yield] = ACTIONS(1053), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_LT] = ACTIONS(1051), - [anon_sym_SLASH] = ACTIONS(1053), - [anon_sym_DOT] = ACTIONS(1053), - [anon_sym_class] = ACTIONS(1053), - [anon_sym_async] = ACTIONS(1053), - [anon_sym_function] = ACTIONS(1053), - [anon_sym_new] = ACTIONS(1053), - [anon_sym_AMP] = ACTIONS(1051), - [anon_sym_PIPE] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_TILDE] = ACTIONS(1051), - [anon_sym_void] = ACTIONS(1053), - [anon_sym_delete] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1051), - [anon_sym_DASH_DASH] = ACTIONS(1051), - [anon_sym_DQUOTE] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1051), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1051), - [sym_number] = ACTIONS(1051), - [sym_this] = ACTIONS(1053), - [sym_super] = ACTIONS(1053), - [sym_true] = ACTIONS(1053), - [sym_false] = ACTIONS(1053), - [sym_null] = ACTIONS(1053), - [sym_undefined] = ACTIONS(1053), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym_static] = ACTIONS(1053), - [anon_sym_abstract] = ACTIONS(1053), - [anon_sym_get] = ACTIONS(1053), - [anon_sym_set] = ACTIONS(1053), - [anon_sym_declare] = ACTIONS(1053), - [anon_sym_public] = ACTIONS(1053), - [anon_sym_private] = ACTIONS(1053), - [anon_sym_protected] = ACTIONS(1053), - [anon_sym_module] = ACTIONS(1053), - [anon_sym_any] = ACTIONS(1053), - [anon_sym_number] = ACTIONS(1053), - [anon_sym_boolean] = ACTIONS(1053), - [anon_sym_string] = ACTIONS(1053), - [anon_sym_symbol] = ACTIONS(1053), - [anon_sym_interface] = ACTIONS(1053), - [anon_sym_enum] = ACTIONS(1053), - [sym_readonly] = ACTIONS(1053), - }, - [496] = { - [sym__call_signature] = STATE(3114), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1561), - [anon_sym_export] = ACTIONS(1563), + [sym__call_signature] = STATE(3129), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1541), + [anon_sym_export] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1507), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), + [anon_sym_namespace] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1555), [anon_sym_in] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_COLON] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1511), [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1563), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1565), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1545), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), @@ -58070,136 +57731,296 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_get] = ACTIONS(1563), - [anon_sym_set] = ACTIONS(1563), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1563), - [anon_sym_private] = ACTIONS(1563), - [anon_sym_protected] = ACTIONS(1563), - [anon_sym_module] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_number] = ACTIONS(1563), - [anon_sym_boolean] = ACTIONS(1563), - [anon_sym_string] = ACTIONS(1563), - [anon_sym_symbol] = ACTIONS(1563), - [sym_readonly] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1543), + [anon_sym_get] = ACTIONS(1543), + [anon_sym_set] = ACTIONS(1543), + [anon_sym_declare] = ACTIONS(1543), + [anon_sym_public] = ACTIONS(1543), + [anon_sym_private] = ACTIONS(1543), + [anon_sym_protected] = ACTIONS(1543), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_any] = ACTIONS(1543), + [anon_sym_number] = ACTIONS(1543), + [anon_sym_boolean] = ACTIONS(1543), + [anon_sym_string] = ACTIONS(1543), + [anon_sym_symbol] = ACTIONS(1543), + [sym_readonly] = ACTIONS(1543), }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(999), - [sym_identifier] = ACTIONS(1001), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_default] = ACTIONS(1001), - [anon_sym_namespace] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_type] = ACTIONS(1001), - [anon_sym_typeof] = ACTIONS(1001), - [anon_sym_import] = ACTIONS(1001), - [anon_sym_var] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_else] = ACTIONS(1001), - [anon_sym_switch] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_await] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_with] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_debugger] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_throw] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_case] = ACTIONS(1001), - [anon_sym_catch] = ACTIONS(1001), - [anon_sym_finally] = ACTIONS(1001), - [anon_sym_yield] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1001), - [anon_sym_class] = ACTIONS(1001), - [anon_sym_async] = ACTIONS(1001), - [anon_sym_function] = ACTIONS(1001), - [anon_sym_new] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_TILDE] = ACTIONS(999), - [anon_sym_void] = ACTIONS(1001), - [anon_sym_delete] = ACTIONS(1001), - [anon_sym_PLUS_PLUS] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(999), - [anon_sym_DQUOTE] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(999), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(999), - [sym_number] = ACTIONS(999), - [sym_this] = ACTIONS(1001), - [sym_super] = ACTIONS(1001), - [sym_true] = ACTIONS(1001), - [sym_false] = ACTIONS(1001), - [sym_null] = ACTIONS(1001), - [sym_undefined] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(999), - [anon_sym_static] = ACTIONS(1001), - [anon_sym_abstract] = ACTIONS(1001), - [anon_sym_get] = ACTIONS(1001), - [anon_sym_set] = ACTIONS(1001), - [anon_sym_declare] = ACTIONS(1001), - [anon_sym_public] = ACTIONS(1001), - [anon_sym_private] = ACTIONS(1001), - [anon_sym_protected] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_any] = ACTIONS(1001), - [anon_sym_number] = ACTIONS(1001), - [anon_sym_boolean] = ACTIONS(1001), - [anon_sym_string] = ACTIONS(1001), - [anon_sym_symbol] = ACTIONS(1001), - [anon_sym_interface] = ACTIONS(1001), - [anon_sym_enum] = ACTIONS(1001), - [sym_readonly] = ACTIONS(1001), + [490] = { + [sym_type_arguments] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_export] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_namespace] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_typeof] = ACTIONS(1529), + [anon_sym_import] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_await] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_with] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_debugger] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_throw] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_case] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_SLASH] = ACTIONS(1529), + [anon_sym_class] = ACTIONS(1529), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_function] = ACTIONS(1529), + [anon_sym_new] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_delete] = ACTIONS(1529), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_number] = ACTIONS(1527), + [sym_this] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_true] = ACTIONS(1529), + [sym_false] = ACTIONS(1529), + [sym_null] = ACTIONS(1529), + [sym_undefined] = ACTIONS(1529), + [anon_sym_AT] = ACTIONS(1527), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_abstract] = ACTIONS(1529), + [anon_sym_get] = ACTIONS(1529), + [anon_sym_set] = ACTIONS(1529), + [anon_sym_declare] = ACTIONS(1529), + [anon_sym_public] = ACTIONS(1529), + [anon_sym_private] = ACTIONS(1529), + [anon_sym_protected] = ACTIONS(1529), + [anon_sym_module] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_number] = ACTIONS(1529), + [anon_sym_boolean] = ACTIONS(1529), + [anon_sym_string] = ACTIONS(1529), + [anon_sym_symbol] = ACTIONS(1529), + [anon_sym_interface] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [sym_readonly] = ACTIONS(1529), }, - [498] = { - [sym_object] = STATE(2363), - [sym_array] = STATE(2365), - [sym_nested_identifier] = STATE(3193), - [sym_string] = STATE(442), + [491] = { + [ts_builtin_sym_end] = ACTIONS(893), + [sym_identifier] = ACTIONS(895), + [anon_sym_export] = ACTIONS(895), + [anon_sym_default] = ACTIONS(895), + [anon_sym_namespace] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_COMMA] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_type] = ACTIONS(895), + [anon_sym_typeof] = ACTIONS(895), + [anon_sym_import] = ACTIONS(895), + [anon_sym_var] = ACTIONS(895), + [anon_sym_let] = ACTIONS(895), + [anon_sym_const] = ACTIONS(895), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_if] = ACTIONS(895), + [anon_sym_else] = ACTIONS(895), + [anon_sym_switch] = ACTIONS(895), + [anon_sym_for] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_await] = ACTIONS(895), + [anon_sym_while] = ACTIONS(895), + [anon_sym_do] = ACTIONS(895), + [anon_sym_try] = ACTIONS(895), + [anon_sym_with] = ACTIONS(895), + [anon_sym_break] = ACTIONS(895), + [anon_sym_continue] = ACTIONS(895), + [anon_sym_debugger] = ACTIONS(895), + [anon_sym_return] = ACTIONS(895), + [anon_sym_throw] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_case] = ACTIONS(895), + [anon_sym_yield] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(895), + [anon_sym_class] = ACTIONS(895), + [anon_sym_async] = ACTIONS(895), + [anon_sym_function] = ACTIONS(895), + [anon_sym_new] = ACTIONS(895), + [anon_sym_PLUS] = ACTIONS(895), + [anon_sym_DASH] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(893), + [anon_sym_void] = ACTIONS(895), + [anon_sym_delete] = ACTIONS(895), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [anon_sym_SQUOTE] = ACTIONS(893), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(893), + [sym_number] = ACTIONS(893), + [sym_this] = ACTIONS(895), + [sym_super] = ACTIONS(895), + [sym_true] = ACTIONS(895), + [sym_false] = ACTIONS(895), + [sym_null] = ACTIONS(895), + [sym_undefined] = ACTIONS(895), + [anon_sym_AT] = ACTIONS(893), + [anon_sym_static] = ACTIONS(895), + [anon_sym_abstract] = ACTIONS(895), + [anon_sym_get] = ACTIONS(895), + [anon_sym_set] = ACTIONS(895), + [anon_sym_declare] = ACTIONS(895), + [anon_sym_public] = ACTIONS(895), + [anon_sym_private] = ACTIONS(895), + [anon_sym_protected] = ACTIONS(895), + [anon_sym_module] = ACTIONS(895), + [anon_sym_any] = ACTIONS(895), + [anon_sym_number] = ACTIONS(895), + [anon_sym_boolean] = ACTIONS(895), + [anon_sym_string] = ACTIONS(895), + [anon_sym_symbol] = ACTIONS(895), + [anon_sym_interface] = ACTIONS(895), + [anon_sym_enum] = ACTIONS(895), + [sym_readonly] = ACTIONS(895), + [anon_sym_PIPE_RBRACE] = ACTIONS(893), + [sym__automatic_semicolon] = ACTIONS(1694), + }, + [492] = { + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1023), + [anon_sym_export] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(1023), + [anon_sym_namespace] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_type] = ACTIONS(1023), + [anon_sym_typeof] = ACTIONS(1023), + [anon_sym_import] = ACTIONS(1023), + [anon_sym_var] = ACTIONS(1023), + [anon_sym_let] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1023), + [anon_sym_else] = ACTIONS(1023), + [anon_sym_switch] = ACTIONS(1023), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_await] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1023), + [anon_sym_with] = ACTIONS(1023), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1023), + [anon_sym_debugger] = ACTIONS(1023), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_throw] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_case] = ACTIONS(1023), + [anon_sym_catch] = ACTIONS(1023), + [anon_sym_finally] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(1023), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1023), + [anon_sym_new] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1021), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1023), + [anon_sym_PLUS_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_SQUOTE] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1021), + [sym_number] = ACTIONS(1021), + [sym_this] = ACTIONS(1023), + [sym_super] = ACTIONS(1023), + [sym_true] = ACTIONS(1023), + [sym_false] = ACTIONS(1023), + [sym_null] = ACTIONS(1023), + [sym_undefined] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1021), + [anon_sym_static] = ACTIONS(1023), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1023), + [anon_sym_declare] = ACTIONS(1023), + [anon_sym_public] = ACTIONS(1023), + [anon_sym_private] = ACTIONS(1023), + [anon_sym_protected] = ACTIONS(1023), + [anon_sym_module] = ACTIONS(1023), + [anon_sym_any] = ACTIONS(1023), + [anon_sym_number] = ACTIONS(1023), + [anon_sym_boolean] = ACTIONS(1023), + [anon_sym_string] = ACTIONS(1023), + [anon_sym_symbol] = ACTIONS(1023), + [anon_sym_interface] = ACTIONS(1023), + [anon_sym_enum] = ACTIONS(1023), + [sym_readonly] = ACTIONS(1023), + }, + [493] = { + [sym_object] = STATE(2300), + [sym_array] = STATE(2311), + [sym_nested_identifier] = STATE(3289), + [sym_string] = STATE(431), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(3289), - [sym_rest_parameter] = STATE(2666), - [sym_nested_type_identifier] = STATE(1923), + [sym_formal_parameters] = STATE(3280), + [sym_rest_parameter] = STATE(2725), + [sym_nested_type_identifier] = STATE(1924), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym__type] = STATE(2690), - [sym_constructor_type] = STATE(2690), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2843), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2690), - [sym_intersection_type] = STATE(2690), - [sym_function_type] = STATE(2690), - [aux_sym_export_statement_repeat1] = STATE(1797), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym__type] = STATE(2761), + [sym_constructor_type] = STATE(2761), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2931), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2761), + [sym_intersection_type] = STATE(2761), + [sym_function_type] = STATE(2761), + [aux_sym_export_statement_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(1658), [anon_sym_export] = ACTIONS(1660), [anon_sym_STAR] = ACTIONS(451), @@ -58245,41 +58066,41 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_keyof] = ACTIONS(521), [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, - [499] = { - [sym_object] = STATE(2363), - [sym_array] = STATE(2365), - [sym_nested_identifier] = STATE(3193), - [sym_string] = STATE(442), + [494] = { + [sym_object] = STATE(2300), + [sym_array] = STATE(2311), + [sym_nested_identifier] = STATE(3289), + [sym_string] = STATE(431), [sym_decorator] = STATE(1901), - [sym_formal_parameters] = STATE(3289), - [sym_rest_parameter] = STATE(2666), - [sym_nested_type_identifier] = STATE(1923), + [sym_formal_parameters] = STATE(3280), + [sym_rest_parameter] = STATE(2725), + [sym_nested_type_identifier] = STATE(1924), [sym_accessibility_modifier] = STATE(1902), - [sym_required_parameter] = STATE(2666), - [sym_optional_parameter] = STATE(2666), - [sym__parameter_name] = STATE(2160), - [sym__type] = STATE(2755), - [sym_constructor_type] = STATE(2755), - [sym__primary_type] = STATE(432), - [sym_generic_type] = STATE(432), - [sym_type_predicate] = STATE(432), - [sym_type_query] = STATE(432), - [sym_index_type_query] = STATE(432), - [sym_lookup_type] = STATE(432), - [sym_literal_type] = STATE(432), - [sym__number] = STATE(442), - [sym_existential_type] = STATE(432), - [sym_flow_maybe_type] = STATE(432), - [sym_parenthesized_type] = STATE(432), - [sym_predefined_type] = STATE(432), - [sym_object_type] = STATE(432), - [sym_type_parameters] = STATE(2843), - [sym_array_type] = STATE(432), - [sym_tuple_type] = STATE(432), - [sym_union_type] = STATE(2755), - [sym_intersection_type] = STATE(2755), - [sym_function_type] = STATE(2755), - [aux_sym_export_statement_repeat1] = STATE(1797), + [sym_required_parameter] = STATE(2725), + [sym_optional_parameter] = STATE(2725), + [sym__parameter_name] = STATE(2158), + [sym__type] = STATE(2735), + [sym_constructor_type] = STATE(2735), + [sym__primary_type] = STATE(451), + [sym_generic_type] = STATE(451), + [sym_type_predicate] = STATE(451), + [sym_type_query] = STATE(451), + [sym_index_type_query] = STATE(451), + [sym_lookup_type] = STATE(451), + [sym_literal_type] = STATE(451), + [sym__number] = STATE(431), + [sym_existential_type] = STATE(451), + [sym_flow_maybe_type] = STATE(451), + [sym_parenthesized_type] = STATE(451), + [sym_predefined_type] = STATE(451), + [sym_object_type] = STATE(451), + [sym_type_parameters] = STATE(2931), + [sym_array_type] = STATE(451), + [sym_tuple_type] = STATE(451), + [sym_union_type] = STATE(2735), + [sym_intersection_type] = STATE(2735), + [sym_function_type] = STATE(2735), + [aux_sym_export_statement_repeat1] = STATE(1807), [sym_identifier] = ACTIONS(1658), [anon_sym_export] = ACTIONS(1660), [anon_sym_STAR] = ACTIONS(451), @@ -58325,165 +58146,565 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_keyof] = ACTIONS(521), [anon_sym_LBRACE_PIPE] = ACTIONS(523), }, + [495] = { + [ts_builtin_sym_end] = ACTIONS(983), + [sym_identifier] = ACTIONS(985), + [anon_sym_export] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_namespace] = ACTIONS(985), + [anon_sym_LBRACE] = ACTIONS(983), + [anon_sym_RBRACE] = ACTIONS(983), + [anon_sym_type] = ACTIONS(985), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_import] = ACTIONS(985), + [anon_sym_var] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(983), + [anon_sym_if] = ACTIONS(985), + [anon_sym_else] = ACTIONS(985), + [anon_sym_switch] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_LPAREN] = ACTIONS(983), + [anon_sym_await] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [anon_sym_with] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_debugger] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_throw] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(983), + [anon_sym_case] = ACTIONS(985), + [anon_sym_yield] = ACTIONS(985), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(983), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_class] = ACTIONS(985), + [anon_sym_async] = ACTIONS(985), + [anon_sym_function] = ACTIONS(985), + [anon_sym_new] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(983), + [anon_sym_PIPE] = ACTIONS(983), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_TILDE] = ACTIONS(983), + [anon_sym_void] = ACTIONS(985), + [anon_sym_delete] = ACTIONS(985), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [anon_sym_DQUOTE] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(983), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(983), + [sym_number] = ACTIONS(983), + [sym_this] = ACTIONS(985), + [sym_super] = ACTIONS(985), + [sym_true] = ACTIONS(985), + [sym_false] = ACTIONS(985), + [sym_null] = ACTIONS(985), + [sym_undefined] = ACTIONS(985), + [anon_sym_AT] = ACTIONS(983), + [anon_sym_static] = ACTIONS(985), + [anon_sym_abstract] = ACTIONS(985), + [anon_sym_get] = ACTIONS(985), + [anon_sym_set] = ACTIONS(985), + [anon_sym_declare] = ACTIONS(985), + [anon_sym_public] = ACTIONS(985), + [anon_sym_private] = ACTIONS(985), + [anon_sym_protected] = ACTIONS(985), + [anon_sym_module] = ACTIONS(985), + [anon_sym_any] = ACTIONS(985), + [anon_sym_number] = ACTIONS(985), + [anon_sym_boolean] = ACTIONS(985), + [anon_sym_string] = ACTIONS(985), + [anon_sym_symbol] = ACTIONS(985), + [anon_sym_interface] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [sym_readonly] = ACTIONS(985), + }, + [496] = { + [ts_builtin_sym_end] = ACTIONS(961), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(963), + [anon_sym_default] = ACTIONS(963), + [anon_sym_namespace] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_type] = ACTIONS(963), + [anon_sym_typeof] = ACTIONS(963), + [anon_sym_import] = ACTIONS(963), + [anon_sym_var] = ACTIONS(963), + [anon_sym_let] = ACTIONS(963), + [anon_sym_const] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_if] = ACTIONS(963), + [anon_sym_else] = ACTIONS(963), + [anon_sym_switch] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_await] = ACTIONS(963), + [anon_sym_while] = ACTIONS(963), + [anon_sym_do] = ACTIONS(963), + [anon_sym_try] = ACTIONS(963), + [anon_sym_with] = ACTIONS(963), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(963), + [anon_sym_debugger] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_throw] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_case] = ACTIONS(963), + [anon_sym_yield] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_class] = ACTIONS(963), + [anon_sym_async] = ACTIONS(963), + [anon_sym_function] = ACTIONS(963), + [anon_sym_new] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(961), + [anon_sym_void] = ACTIONS(963), + [anon_sym_delete] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_number] = ACTIONS(961), + [sym_this] = ACTIONS(963), + [sym_super] = ACTIONS(963), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + [sym_null] = ACTIONS(963), + [sym_undefined] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(961), + [anon_sym_static] = ACTIONS(963), + [anon_sym_abstract] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_interface] = ACTIONS(963), + [anon_sym_enum] = ACTIONS(963), + [sym_readonly] = ACTIONS(963), + [anon_sym_PIPE_RBRACE] = ACTIONS(961), + [sym__automatic_semicolon] = ACTIONS(961), + }, + [497] = { + [sym_type_arguments] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(1696), + [sym_identifier] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_namespace] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_typeof] = ACTIONS(1698), + [anon_sym_import] = ACTIONS(1698), + [anon_sym_var] = ACTIONS(1698), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_await] = ACTIONS(1698), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_do] = ACTIONS(1698), + [anon_sym_try] = ACTIONS(1698), + [anon_sym_with] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1698), + [anon_sym_debugger] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_throw] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_yield] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_class] = ACTIONS(1698), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_new] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_void] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1696), + [sym_number] = ACTIONS(1696), + [sym_this] = ACTIONS(1698), + [sym_super] = ACTIONS(1698), + [sym_true] = ACTIONS(1698), + [sym_false] = ACTIONS(1698), + [sym_null] = ACTIONS(1698), + [sym_undefined] = ACTIONS(1698), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_abstract] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_declare] = ACTIONS(1698), + [anon_sym_public] = ACTIONS(1698), + [anon_sym_private] = ACTIONS(1698), + [anon_sym_protected] = ACTIONS(1698), + [anon_sym_module] = ACTIONS(1698), + [anon_sym_any] = ACTIONS(1698), + [anon_sym_number] = ACTIONS(1698), + [anon_sym_boolean] = ACTIONS(1698), + [anon_sym_string] = ACTIONS(1698), + [anon_sym_symbol] = ACTIONS(1698), + [anon_sym_interface] = ACTIONS(1698), + [anon_sym_enum] = ACTIONS(1698), + [sym_readonly] = ACTIONS(1698), + }, + [498] = { + [ts_builtin_sym_end] = ACTIONS(1031), + [sym_identifier] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_default] = ACTIONS(1033), + [anon_sym_namespace] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_type] = ACTIONS(1033), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_import] = ACTIONS(1033), + [anon_sym_var] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1033), + [anon_sym_switch] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_await] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_with] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_debugger] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_case] = ACTIONS(1033), + [anon_sym_yield] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1033), + [anon_sym_async] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_void] = ACTIONS(1033), + [anon_sym_delete] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [sym_this] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [sym_null] = ACTIONS(1033), + [sym_undefined] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(1031), + [anon_sym_static] = ACTIONS(1033), + [anon_sym_abstract] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(1033), + [anon_sym_set] = ACTIONS(1033), + [anon_sym_declare] = ACTIONS(1033), + [anon_sym_public] = ACTIONS(1033), + [anon_sym_private] = ACTIONS(1033), + [anon_sym_protected] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_interface] = ACTIONS(1033), + [anon_sym_enum] = ACTIONS(1033), + [sym_readonly] = ACTIONS(1033), + [anon_sym_PIPE_RBRACE] = ACTIONS(1031), + [sym__automatic_semicolon] = ACTIONS(1031), + }, + [499] = { + [ts_builtin_sym_end] = ACTIONS(965), + [sym_identifier] = ACTIONS(967), + [anon_sym_export] = ACTIONS(967), + [anon_sym_default] = ACTIONS(967), + [anon_sym_namespace] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_type] = ACTIONS(967), + [anon_sym_typeof] = ACTIONS(967), + [anon_sym_import] = ACTIONS(967), + [anon_sym_var] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_if] = ACTIONS(967), + [anon_sym_else] = ACTIONS(967), + [anon_sym_switch] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_await] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [anon_sym_do] = ACTIONS(967), + [anon_sym_try] = ACTIONS(967), + [anon_sym_with] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_debugger] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_throw] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_case] = ACTIONS(967), + [anon_sym_yield] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_class] = ACTIONS(967), + [anon_sym_async] = ACTIONS(967), + [anon_sym_function] = ACTIONS(967), + [anon_sym_new] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_TILDE] = ACTIONS(965), + [anon_sym_void] = ACTIONS(967), + [anon_sym_delete] = ACTIONS(967), + [anon_sym_PLUS_PLUS] = ACTIONS(965), + [anon_sym_DASH_DASH] = ACTIONS(965), + [anon_sym_DQUOTE] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(965), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(965), + [sym_number] = ACTIONS(965), + [sym_this] = ACTIONS(967), + [sym_super] = ACTIONS(967), + [sym_true] = ACTIONS(967), + [sym_false] = ACTIONS(967), + [sym_null] = ACTIONS(967), + [sym_undefined] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(965), + [anon_sym_static] = ACTIONS(967), + [anon_sym_abstract] = ACTIONS(967), + [anon_sym_get] = ACTIONS(967), + [anon_sym_set] = ACTIONS(967), + [anon_sym_declare] = ACTIONS(967), + [anon_sym_public] = ACTIONS(967), + [anon_sym_private] = ACTIONS(967), + [anon_sym_protected] = ACTIONS(967), + [anon_sym_module] = ACTIONS(967), + [anon_sym_any] = ACTIONS(967), + [anon_sym_number] = ACTIONS(967), + [anon_sym_boolean] = ACTIONS(967), + [anon_sym_string] = ACTIONS(967), + [anon_sym_symbol] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(967), + [sym_readonly] = ACTIONS(967), + [anon_sym_PIPE_RBRACE] = ACTIONS(965), + [sym__automatic_semicolon] = ACTIONS(965), + }, [500] = { - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_export] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_namespace] = ACTIONS(1705), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_typeof] = ACTIONS(1705), - [anon_sym_import] = ACTIONS(1705), - [anon_sym_var] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_else] = ACTIONS(1705), - [anon_sym_switch] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_do] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [anon_sym_with] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_debugger] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_throw] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_case] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_SLASH] = ACTIONS(1705), - [anon_sym_DOT] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_function] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_PLUS] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1705), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1705), - [anon_sym_delete] = ACTIONS(1705), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_this] = ACTIONS(1705), - [sym_super] = ACTIONS(1705), - [sym_true] = ACTIONS(1705), - [sym_false] = ACTIONS(1705), - [sym_null] = ACTIONS(1705), - [sym_undefined] = ACTIONS(1705), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1705), - [anon_sym_abstract] = ACTIONS(1705), - [anon_sym_get] = ACTIONS(1705), - [anon_sym_set] = ACTIONS(1705), - [anon_sym_declare] = ACTIONS(1705), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_module] = ACTIONS(1705), - [anon_sym_any] = ACTIONS(1705), - [anon_sym_number] = ACTIONS(1705), - [anon_sym_boolean] = ACTIONS(1705), - [anon_sym_string] = ACTIONS(1705), - [anon_sym_symbol] = ACTIONS(1705), - [anon_sym_interface] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [sym_readonly] = ACTIONS(1705), + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1023), + [anon_sym_export] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(1023), + [anon_sym_namespace] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_type] = ACTIONS(1023), + [anon_sym_typeof] = ACTIONS(1023), + [anon_sym_import] = ACTIONS(1023), + [anon_sym_var] = ACTIONS(1023), + [anon_sym_let] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1023), + [anon_sym_else] = ACTIONS(1023), + [anon_sym_switch] = ACTIONS(1023), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_await] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1023), + [anon_sym_do] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1023), + [anon_sym_with] = ACTIONS(1023), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1023), + [anon_sym_debugger] = ACTIONS(1023), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_throw] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_case] = ACTIONS(1023), + [anon_sym_yield] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_class] = ACTIONS(1023), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(1023), + [anon_sym_new] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_TILDE] = ACTIONS(1021), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1023), + [anon_sym_PLUS_PLUS] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [anon_sym_SQUOTE] = ACTIONS(1021), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1021), + [sym_number] = ACTIONS(1021), + [sym_this] = ACTIONS(1023), + [sym_super] = ACTIONS(1023), + [sym_true] = ACTIONS(1023), + [sym_false] = ACTIONS(1023), + [sym_null] = ACTIONS(1023), + [sym_undefined] = ACTIONS(1023), + [anon_sym_AT] = ACTIONS(1021), + [anon_sym_static] = ACTIONS(1023), + [anon_sym_abstract] = ACTIONS(1023), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1023), + [anon_sym_declare] = ACTIONS(1023), + [anon_sym_public] = ACTIONS(1023), + [anon_sym_private] = ACTIONS(1023), + [anon_sym_protected] = ACTIONS(1023), + [anon_sym_module] = ACTIONS(1023), + [anon_sym_any] = ACTIONS(1023), + [anon_sym_number] = ACTIONS(1023), + [anon_sym_boolean] = ACTIONS(1023), + [anon_sym_string] = ACTIONS(1023), + [anon_sym_symbol] = ACTIONS(1023), + [anon_sym_interface] = ACTIONS(1023), + [anon_sym_enum] = ACTIONS(1023), + [sym_readonly] = ACTIONS(1023), + [anon_sym_PIPE_RBRACE] = ACTIONS(1021), + [sym__automatic_semicolon] = ACTIONS(1703), }, [501] = { - [ts_builtin_sym_end] = ACTIONS(935), - [sym_identifier] = ACTIONS(937), - [anon_sym_export] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_namespace] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(935), - [anon_sym_COMMA] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_type] = ACTIONS(937), - [anon_sym_typeof] = ACTIONS(937), - [anon_sym_import] = ACTIONS(937), - [anon_sym_var] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_if] = ACTIONS(937), - [anon_sym_else] = ACTIONS(937), - [anon_sym_switch] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_await] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [anon_sym_do] = ACTIONS(937), - [anon_sym_try] = ACTIONS(937), - [anon_sym_with] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_debugger] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_throw] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(935), - [anon_sym_case] = ACTIONS(937), - [anon_sym_yield] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_class] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_function] = ACTIONS(937), - [anon_sym_new] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_void] = ACTIONS(937), - [anon_sym_delete] = ACTIONS(937), - [anon_sym_PLUS_PLUS] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [anon_sym_SQUOTE] = ACTIONS(935), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(935), - [sym_number] = ACTIONS(935), - [sym_this] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_true] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [sym_undefined] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(935), - [anon_sym_static] = ACTIONS(937), - [anon_sym_abstract] = ACTIONS(937), - [anon_sym_get] = ACTIONS(937), - [anon_sym_set] = ACTIONS(937), - [anon_sym_declare] = ACTIONS(937), - [anon_sym_public] = ACTIONS(937), - [anon_sym_private] = ACTIONS(937), - [anon_sym_protected] = ACTIONS(937), - [anon_sym_module] = ACTIONS(937), - [anon_sym_any] = ACTIONS(937), - [anon_sym_number] = ACTIONS(937), - [anon_sym_boolean] = ACTIONS(937), - [anon_sym_string] = ACTIONS(937), - [anon_sym_symbol] = ACTIONS(937), - [anon_sym_interface] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [sym_readonly] = ACTIONS(937), - [anon_sym_PIPE_RBRACE] = ACTIONS(935), - [sym__automatic_semicolon] = ACTIONS(1709), + [ts_builtin_sym_end] = ACTIONS(1705), + [sym_identifier] = ACTIONS(1707), + [anon_sym_export] = ACTIONS(1707), + [anon_sym_default] = ACTIONS(1707), + [anon_sym_namespace] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_type] = ACTIONS(1707), + [anon_sym_typeof] = ACTIONS(1707), + [anon_sym_import] = ACTIONS(1707), + [anon_sym_var] = ACTIONS(1707), + [anon_sym_let] = ACTIONS(1707), + [anon_sym_const] = ACTIONS(1707), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1707), + [anon_sym_else] = ACTIONS(1707), + [anon_sym_switch] = ACTIONS(1707), + [anon_sym_for] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_await] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1707), + [anon_sym_do] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1707), + [anon_sym_with] = ACTIONS(1707), + [anon_sym_break] = ACTIONS(1707), + [anon_sym_continue] = ACTIONS(1707), + [anon_sym_debugger] = ACTIONS(1707), + [anon_sym_return] = ACTIONS(1707), + [anon_sym_throw] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_case] = ACTIONS(1707), + [anon_sym_yield] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LT] = ACTIONS(1705), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_class] = ACTIONS(1707), + [anon_sym_async] = ACTIONS(1707), + [anon_sym_function] = ACTIONS(1707), + [anon_sym_new] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1707), + [anon_sym_DASH] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_void] = ACTIONS(1707), + [anon_sym_delete] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1705), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [anon_sym_SQUOTE] = ACTIONS(1705), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1705), + [sym_number] = ACTIONS(1705), + [sym_this] = ACTIONS(1707), + [sym_super] = ACTIONS(1707), + [sym_true] = ACTIONS(1707), + [sym_false] = ACTIONS(1707), + [sym_null] = ACTIONS(1707), + [sym_undefined] = ACTIONS(1707), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_static] = ACTIONS(1707), + [anon_sym_abstract] = ACTIONS(1707), + [anon_sym_get] = ACTIONS(1707), + [anon_sym_set] = ACTIONS(1707), + [anon_sym_declare] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1707), + [anon_sym_private] = ACTIONS(1707), + [anon_sym_protected] = ACTIONS(1707), + [anon_sym_module] = ACTIONS(1707), + [anon_sym_any] = ACTIONS(1707), + [anon_sym_number] = ACTIONS(1707), + [anon_sym_boolean] = ACTIONS(1707), + [anon_sym_string] = ACTIONS(1707), + [anon_sym_symbol] = ACTIONS(1707), + [anon_sym_interface] = ACTIONS(1707), + [anon_sym_enum] = ACTIONS(1707), + [sym_readonly] = ACTIONS(1707), }, [502] = { [ts_builtin_sym_end] = ACTIONS(1711), @@ -58565,202 +58786,45 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1713), }, [503] = { - [sym_finally_clause] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1721), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_default] = ACTIONS(1721), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_typeof] = ACTIONS(1721), - [anon_sym_import] = ACTIONS(1721), - [anon_sym_var] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_switch] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_with] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_debugger] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_throw] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_case] = ACTIONS(1721), - [anon_sym_finally] = ACTIONS(1638), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_class] = ACTIONS(1721), - [anon_sym_async] = ACTIONS(1721), - [anon_sym_function] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_void] = ACTIONS(1721), - [anon_sym_delete] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1719), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [anon_sym_SQUOTE] = ACTIONS(1719), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1719), - [sym_number] = ACTIONS(1719), - [sym_this] = ACTIONS(1721), - [sym_super] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_null] = ACTIONS(1721), - [sym_undefined] = ACTIONS(1721), - [anon_sym_AT] = ACTIONS(1719), - [anon_sym_static] = ACTIONS(1721), - [anon_sym_abstract] = ACTIONS(1721), - [anon_sym_get] = ACTIONS(1721), - [anon_sym_set] = ACTIONS(1721), - [anon_sym_declare] = ACTIONS(1721), - [anon_sym_public] = ACTIONS(1721), - [anon_sym_private] = ACTIONS(1721), - [anon_sym_protected] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_any] = ACTIONS(1721), - [anon_sym_number] = ACTIONS(1721), - [anon_sym_boolean] = ACTIONS(1721), - [anon_sym_string] = ACTIONS(1721), - [anon_sym_symbol] = ACTIONS(1721), - [anon_sym_interface] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [sym_readonly] = ACTIONS(1721), - }, - [504] = { - [ts_builtin_sym_end] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_namespace] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_typeof] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_var] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_await] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_with] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_debugger] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_throw] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_case] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_class] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(1725), - [anon_sym_new] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1725), - [anon_sym_delete] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1723), - [sym_number] = ACTIONS(1723), - [sym_this] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_null] = ACTIONS(1725), - [sym_undefined] = ACTIONS(1725), - [anon_sym_AT] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_abstract] = ACTIONS(1725), - [anon_sym_get] = ACTIONS(1725), - [anon_sym_set] = ACTIONS(1725), - [anon_sym_declare] = ACTIONS(1725), - [anon_sym_public] = ACTIONS(1725), - [anon_sym_private] = ACTIONS(1725), - [anon_sym_protected] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_any] = ACTIONS(1725), - [anon_sym_number] = ACTIONS(1725), - [anon_sym_boolean] = ACTIONS(1725), - [anon_sym_string] = ACTIONS(1725), - [anon_sym_symbol] = ACTIONS(1725), - [anon_sym_interface] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [sym_readonly] = ACTIONS(1725), - }, - [505] = { - [sym_identifier] = ACTIONS(1557), - [anon_sym_export] = ACTIONS(1557), + [sym__call_signature] = STATE(3129), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1541), + [anon_sym_export] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1507), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_COMMA] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1557), + [anon_sym_namespace] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1618), - [anon_sym_in] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1621), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1133), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_in] = ACTIONS(1719), + [anon_sym_of] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1557), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1575), - [anon_sym_DASH_EQ] = ACTIONS(1575), - [anon_sym_STAR_EQ] = ACTIONS(1575), - [anon_sym_SLASH_EQ] = ACTIONS(1575), - [anon_sym_PERCENT_EQ] = ACTIONS(1575), - [anon_sym_CARET_EQ] = ACTIONS(1575), - [anon_sym_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_LT_LT_EQ] = ACTIONS(1575), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1575), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1575), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1575), - [anon_sym_QMARK] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1545), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -58785,140 +58849,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_this] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_get] = ACTIONS(1557), - [anon_sym_set] = ACTIONS(1557), - [anon_sym_declare] = ACTIONS(1557), - [anon_sym_public] = ACTIONS(1557), - [anon_sym_private] = ACTIONS(1557), - [anon_sym_protected] = ACTIONS(1557), - [anon_sym_module] = ACTIONS(1557), - [anon_sym_any] = ACTIONS(1557), - [anon_sym_number] = ACTIONS(1557), - [anon_sym_boolean] = ACTIONS(1557), - [anon_sym_string] = ACTIONS(1557), - [anon_sym_symbol] = ACTIONS(1557), - [sym_readonly] = ACTIONS(1557), - }, - [506] = { - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_typeof] = ACTIONS(1729), - [anon_sym_import] = ACTIONS(1729), - [anon_sym_var] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_switch] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_await] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_with] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_debugger] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_throw] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_case] = ACTIONS(1729), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_class] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1729), - [anon_sym_function] = ACTIONS(1729), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1729), - [anon_sym_delete] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1727), - [sym_number] = ACTIONS(1727), - [sym_this] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_true] = ACTIONS(1729), - [sym_false] = ACTIONS(1729), - [sym_null] = ACTIONS(1729), - [sym_undefined] = ACTIONS(1729), - [anon_sym_AT] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_abstract] = ACTIONS(1729), - [anon_sym_get] = ACTIONS(1729), - [anon_sym_set] = ACTIONS(1729), - [anon_sym_declare] = ACTIONS(1729), - [anon_sym_public] = ACTIONS(1729), - [anon_sym_private] = ACTIONS(1729), - [anon_sym_protected] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_any] = ACTIONS(1729), - [anon_sym_number] = ACTIONS(1729), - [anon_sym_boolean] = ACTIONS(1729), - [anon_sym_string] = ACTIONS(1729), - [anon_sym_symbol] = ACTIONS(1729), - [anon_sym_interface] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [sym_readonly] = ACTIONS(1729), + [anon_sym_static] = ACTIONS(1543), + [anon_sym_get] = ACTIONS(1543), + [anon_sym_set] = ACTIONS(1543), + [anon_sym_declare] = ACTIONS(1543), + [anon_sym_public] = ACTIONS(1543), + [anon_sym_private] = ACTIONS(1543), + [anon_sym_protected] = ACTIONS(1543), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_any] = ACTIONS(1543), + [anon_sym_number] = ACTIONS(1543), + [anon_sym_boolean] = ACTIONS(1543), + [anon_sym_string] = ACTIONS(1543), + [anon_sym_symbol] = ACTIONS(1543), + [sym_readonly] = ACTIONS(1543), }, - [507] = { - [sym_identifier] = ACTIONS(1557), - [anon_sym_export] = ACTIONS(1557), + [504] = { + [sym_identifier] = ACTIONS(1537), + [anon_sym_export] = ACTIONS(1537), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_EQ] = ACTIONS(1601), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_COMMA] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1557), + [anon_sym_namespace] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_type] = ACTIONS(1537), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1604), [anon_sym_in] = ACTIONS(1133), - [anon_sym_COLON] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_COLON] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1511), [anon_sym_LT] = ACTIONS(1133), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1557), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1575), - [anon_sym_DASH_EQ] = ACTIONS(1575), - [anon_sym_STAR_EQ] = ACTIONS(1575), - [anon_sym_SLASH_EQ] = ACTIONS(1575), - [anon_sym_PERCENT_EQ] = ACTIONS(1575), - [anon_sym_CARET_EQ] = ACTIONS(1575), - [anon_sym_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1575), - [anon_sym_LT_LT_EQ] = ACTIONS(1575), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1575), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1575), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1575), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1575), - [anon_sym_QMARK] = ACTIONS(1625), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1537), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1561), + [anon_sym_DASH_EQ] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1561), + [anon_sym_SLASH_EQ] = ACTIONS(1561), + [anon_sym_PERCENT_EQ] = ACTIONS(1561), + [anon_sym_CARET_EQ] = ACTIONS(1561), + [anon_sym_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_LT_LT_EQ] = ACTIONS(1561), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1561), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1561), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -58943,377 +58927,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [sym_this] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1557), - [anon_sym_get] = ACTIONS(1557), - [anon_sym_set] = ACTIONS(1557), - [anon_sym_declare] = ACTIONS(1557), - [anon_sym_public] = ACTIONS(1557), - [anon_sym_private] = ACTIONS(1557), - [anon_sym_protected] = ACTIONS(1557), - [anon_sym_module] = ACTIONS(1557), - [anon_sym_any] = ACTIONS(1557), - [anon_sym_number] = ACTIONS(1557), - [anon_sym_boolean] = ACTIONS(1557), - [anon_sym_string] = ACTIONS(1557), - [anon_sym_symbol] = ACTIONS(1557), - [sym_readonly] = ACTIONS(1557), - }, - [508] = { - [sym_statement_block] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(893), - [sym_identifier] = ACTIONS(895), - [anon_sym_export] = ACTIONS(895), - [anon_sym_default] = ACTIONS(895), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_type] = ACTIONS(895), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_let] = ACTIONS(895), - [anon_sym_const] = ACTIONS(895), - [anon_sym_BANG] = ACTIONS(893), - [anon_sym_if] = ACTIONS(895), - [anon_sym_else] = ACTIONS(895), - [anon_sym_switch] = ACTIONS(895), - [anon_sym_for] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_await] = ACTIONS(895), - [anon_sym_while] = ACTIONS(895), - [anon_sym_do] = ACTIONS(895), - [anon_sym_try] = ACTIONS(895), - [anon_sym_with] = ACTIONS(895), - [anon_sym_break] = ACTIONS(895), - [anon_sym_continue] = ACTIONS(895), - [anon_sym_debugger] = ACTIONS(895), - [anon_sym_return] = ACTIONS(895), - [anon_sym_throw] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_case] = ACTIONS(895), - [anon_sym_yield] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_SLASH] = ACTIONS(895), - [anon_sym_DOT] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(895), - [anon_sym_async] = ACTIONS(895), - [anon_sym_function] = ACTIONS(895), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(893), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(893), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(893), - [sym_number] = ACTIONS(893), - [sym_this] = ACTIONS(895), - [sym_super] = ACTIONS(895), - [sym_true] = ACTIONS(895), - [sym_false] = ACTIONS(895), - [sym_null] = ACTIONS(895), - [sym_undefined] = ACTIONS(895), - [anon_sym_AT] = ACTIONS(893), - [anon_sym_static] = ACTIONS(895), - [anon_sym_abstract] = ACTIONS(895), - [anon_sym_get] = ACTIONS(895), - [anon_sym_set] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [anon_sym_public] = ACTIONS(895), - [anon_sym_private] = ACTIONS(895), - [anon_sym_protected] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_any] = ACTIONS(895), - [anon_sym_number] = ACTIONS(895), - [anon_sym_boolean] = ACTIONS(895), - [anon_sym_string] = ACTIONS(895), - [anon_sym_symbol] = ACTIONS(895), - [anon_sym_interface] = ACTIONS(895), - [anon_sym_enum] = ACTIONS(895), - [sym_readonly] = ACTIONS(895), + [sym_this] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_get] = ACTIONS(1537), + [anon_sym_set] = ACTIONS(1537), + [anon_sym_declare] = ACTIONS(1537), + [anon_sym_public] = ACTIONS(1537), + [anon_sym_private] = ACTIONS(1537), + [anon_sym_protected] = ACTIONS(1537), + [anon_sym_module] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_number] = ACTIONS(1537), + [anon_sym_boolean] = ACTIONS(1537), + [anon_sym_string] = ACTIONS(1537), + [anon_sym_symbol] = ACTIONS(1537), + [sym_readonly] = ACTIONS(1537), }, - [509] = { - [ts_builtin_sym_end] = ACTIONS(1733), - [sym_identifier] = ACTIONS(1735), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_typeof] = ACTIONS(1735), - [anon_sym_import] = ACTIONS(1735), - [anon_sym_var] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_await] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_with] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_debugger] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_case] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_function] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1733), - [anon_sym_void] = ACTIONS(1735), - [anon_sym_delete] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [anon_sym_SQUOTE] = ACTIONS(1733), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1733), - [sym_number] = ACTIONS(1733), - [sym_this] = ACTIONS(1735), - [sym_super] = ACTIONS(1735), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_undefined] = ACTIONS(1735), - [anon_sym_AT] = ACTIONS(1733), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_abstract] = ACTIONS(1735), - [anon_sym_get] = ACTIONS(1735), - [anon_sym_set] = ACTIONS(1735), - [anon_sym_declare] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_private] = ACTIONS(1735), - [anon_sym_protected] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_any] = ACTIONS(1735), - [anon_sym_number] = ACTIONS(1735), - [anon_sym_boolean] = ACTIONS(1735), - [anon_sym_string] = ACTIONS(1735), - [anon_sym_symbol] = ACTIONS(1735), - [anon_sym_interface] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [sym_readonly] = ACTIONS(1735), - }, - [510] = { - [ts_builtin_sym_end] = ACTIONS(1737), - [sym_identifier] = ACTIONS(1739), - [anon_sym_export] = ACTIONS(1739), - [anon_sym_default] = ACTIONS(1739), - [anon_sym_namespace] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1739), - [anon_sym_typeof] = ACTIONS(1739), - [anon_sym_import] = ACTIONS(1739), - [anon_sym_var] = ACTIONS(1739), - [anon_sym_let] = ACTIONS(1739), - [anon_sym_const] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1739), - [anon_sym_switch] = ACTIONS(1739), - [anon_sym_for] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_await] = ACTIONS(1739), - [anon_sym_while] = ACTIONS(1739), - [anon_sym_do] = ACTIONS(1739), - [anon_sym_try] = ACTIONS(1739), - [anon_sym_with] = ACTIONS(1739), - [anon_sym_break] = ACTIONS(1739), - [anon_sym_continue] = ACTIONS(1739), - [anon_sym_debugger] = ACTIONS(1739), - [anon_sym_return] = ACTIONS(1739), - [anon_sym_throw] = ACTIONS(1739), - [anon_sym_SEMI] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1739), - [anon_sym_yield] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1739), - [anon_sym_class] = ACTIONS(1739), - [anon_sym_async] = ACTIONS(1739), - [anon_sym_function] = ACTIONS(1739), - [anon_sym_new] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1737), - [anon_sym_void] = ACTIONS(1739), - [anon_sym_delete] = ACTIONS(1739), - [anon_sym_PLUS_PLUS] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [anon_sym_SQUOTE] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1737), - [sym_number] = ACTIONS(1737), - [sym_this] = ACTIONS(1739), - [sym_super] = ACTIONS(1739), - [sym_true] = ACTIONS(1739), - [sym_false] = ACTIONS(1739), - [sym_null] = ACTIONS(1739), - [sym_undefined] = ACTIONS(1739), - [anon_sym_AT] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1739), - [anon_sym_abstract] = ACTIONS(1739), - [anon_sym_get] = ACTIONS(1739), - [anon_sym_set] = ACTIONS(1739), - [anon_sym_declare] = ACTIONS(1739), - [anon_sym_public] = ACTIONS(1739), - [anon_sym_private] = ACTIONS(1739), - [anon_sym_protected] = ACTIONS(1739), - [anon_sym_module] = ACTIONS(1739), - [anon_sym_any] = ACTIONS(1739), - [anon_sym_number] = ACTIONS(1739), - [anon_sym_boolean] = ACTIONS(1739), - [anon_sym_string] = ACTIONS(1739), - [anon_sym_symbol] = ACTIONS(1739), - [anon_sym_interface] = ACTIONS(1739), - [anon_sym_enum] = ACTIONS(1739), - [sym_readonly] = ACTIONS(1739), - }, - [511] = { - [ts_builtin_sym_end] = ACTIONS(1741), - [sym_identifier] = ACTIONS(1743), - [anon_sym_export] = ACTIONS(1743), - [anon_sym_default] = ACTIONS(1743), - [anon_sym_namespace] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1743), - [anon_sym_typeof] = ACTIONS(1743), - [anon_sym_import] = ACTIONS(1743), - [anon_sym_var] = ACTIONS(1743), - [anon_sym_let] = ACTIONS(1743), - [anon_sym_const] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1743), - [anon_sym_else] = ACTIONS(1743), - [anon_sym_switch] = ACTIONS(1743), - [anon_sym_for] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_await] = ACTIONS(1743), - [anon_sym_while] = ACTIONS(1743), - [anon_sym_do] = ACTIONS(1743), - [anon_sym_try] = ACTIONS(1743), - [anon_sym_with] = ACTIONS(1743), - [anon_sym_break] = ACTIONS(1743), - [anon_sym_continue] = ACTIONS(1743), - [anon_sym_debugger] = ACTIONS(1743), - [anon_sym_return] = ACTIONS(1743), - [anon_sym_throw] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_case] = ACTIONS(1743), - [anon_sym_yield] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1741), - [anon_sym_SLASH] = ACTIONS(1743), - [anon_sym_class] = ACTIONS(1743), - [anon_sym_async] = ACTIONS(1743), - [anon_sym_function] = ACTIONS(1743), - [anon_sym_new] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_void] = ACTIONS(1743), - [anon_sym_delete] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [anon_sym_SQUOTE] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1741), - [sym_number] = ACTIONS(1741), - [sym_this] = ACTIONS(1743), - [sym_super] = ACTIONS(1743), - [sym_true] = ACTIONS(1743), - [sym_false] = ACTIONS(1743), - [sym_null] = ACTIONS(1743), - [sym_undefined] = ACTIONS(1743), - [anon_sym_AT] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1743), - [anon_sym_abstract] = ACTIONS(1743), - [anon_sym_get] = ACTIONS(1743), - [anon_sym_set] = ACTIONS(1743), - [anon_sym_declare] = ACTIONS(1743), - [anon_sym_public] = ACTIONS(1743), - [anon_sym_private] = ACTIONS(1743), - [anon_sym_protected] = ACTIONS(1743), - [anon_sym_module] = ACTIONS(1743), - [anon_sym_any] = ACTIONS(1743), - [anon_sym_number] = ACTIONS(1743), - [anon_sym_boolean] = ACTIONS(1743), - [anon_sym_string] = ACTIONS(1743), - [anon_sym_symbol] = ACTIONS(1743), - [anon_sym_interface] = ACTIONS(1743), - [anon_sym_enum] = ACTIONS(1743), - [sym_readonly] = ACTIONS(1743), - }, - [512] = { - [sym__call_signature] = STATE(3114), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1561), - [anon_sym_export] = ACTIONS(1563), + [505] = { + [sym__call_signature] = STATE(3129), + [sym_formal_parameters] = STATE(2340), + [sym_type_parameters] = STATE(2923), + [sym_identifier] = ACTIONS(1541), + [anon_sym_export] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1507), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), + [anon_sym_namespace] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1745), - [anon_sym_of] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_of] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1558), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1563), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1565), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1543), + [anon_sym_function] = ACTIONS(1515), + [anon_sym_EQ_GT] = ACTIONS(1545), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), [anon_sym_QMARK] = ACTIONS(1133), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), @@ -59339,61 +59007,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_get] = ACTIONS(1563), - [anon_sym_set] = ACTIONS(1563), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1563), - [anon_sym_private] = ACTIONS(1563), - [anon_sym_protected] = ACTIONS(1563), - [anon_sym_module] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_number] = ACTIONS(1563), - [anon_sym_boolean] = ACTIONS(1563), - [anon_sym_string] = ACTIONS(1563), - [anon_sym_symbol] = ACTIONS(1563), - [sym_readonly] = ACTIONS(1563), + [anon_sym_static] = ACTIONS(1543), + [anon_sym_get] = ACTIONS(1543), + [anon_sym_set] = ACTIONS(1543), + [anon_sym_declare] = ACTIONS(1543), + [anon_sym_public] = ACTIONS(1543), + [anon_sym_private] = ACTIONS(1543), + [anon_sym_protected] = ACTIONS(1543), + [anon_sym_module] = ACTIONS(1543), + [anon_sym_any] = ACTIONS(1543), + [anon_sym_number] = ACTIONS(1543), + [anon_sym_boolean] = ACTIONS(1543), + [anon_sym_string] = ACTIONS(1543), + [anon_sym_symbol] = ACTIONS(1543), + [sym_readonly] = ACTIONS(1543), }, - [513] = { - [sym__call_signature] = STATE(3114), - [sym_formal_parameters] = STATE(2406), - [sym_type_parameters] = STATE(2899), - [sym_identifier] = ACTIONS(1561), - [anon_sym_export] = ACTIONS(1563), + [506] = { + [sym_identifier] = ACTIONS(1537), + [anon_sym_export] = ACTIONS(1537), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1601), [anon_sym_as] = ACTIONS(1133), - [anon_sym_namespace] = ACTIONS(1563), - [anon_sym_type] = ACTIONS(1563), + [anon_sym_namespace] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_COMMA] = ACTIONS(1604), + [anon_sym_type] = ACTIONS(1537), [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_in] = ACTIONS(1596), - [anon_sym_of] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LT] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(1604), + [anon_sym_in] = ACTIONS(1133), + [anon_sym_COLON] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(1133), [anon_sym_GT] = ACTIONS(1133), [anon_sym_SLASH] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1563), - [anon_sym_function] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1565), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1133), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1537), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1561), + [anon_sym_DASH_EQ] = ACTIONS(1561), + [anon_sym_STAR_EQ] = ACTIONS(1561), + [anon_sym_SLASH_EQ] = ACTIONS(1561), + [anon_sym_PERCENT_EQ] = ACTIONS(1561), + [anon_sym_CARET_EQ] = ACTIONS(1561), + [anon_sym_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1561), + [anon_sym_LT_LT_EQ] = ACTIONS(1561), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1561), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1561), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1561), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(1607), [anon_sym_AMP_AMP] = ACTIONS(1133), [anon_sym_PIPE_PIPE] = ACTIONS(1133), [anon_sym_GT_GT] = ACTIONS(1133), @@ -59418,176 +59085,730 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1119), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_get] = ACTIONS(1563), - [anon_sym_set] = ACTIONS(1563), - [anon_sym_declare] = ACTIONS(1563), - [anon_sym_public] = ACTIONS(1563), - [anon_sym_private] = ACTIONS(1563), - [anon_sym_protected] = ACTIONS(1563), - [anon_sym_module] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_number] = ACTIONS(1563), - [anon_sym_boolean] = ACTIONS(1563), - [anon_sym_string] = ACTIONS(1563), - [anon_sym_symbol] = ACTIONS(1563), - [sym_readonly] = ACTIONS(1563), + [sym_this] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_get] = ACTIONS(1537), + [anon_sym_set] = ACTIONS(1537), + [anon_sym_declare] = ACTIONS(1537), + [anon_sym_public] = ACTIONS(1537), + [anon_sym_private] = ACTIONS(1537), + [anon_sym_protected] = ACTIONS(1537), + [anon_sym_module] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_number] = ACTIONS(1537), + [anon_sym_boolean] = ACTIONS(1537), + [anon_sym_string] = ACTIONS(1537), + [anon_sym_symbol] = ACTIONS(1537), + [sym_readonly] = ACTIONS(1537), + }, + [507] = { + [ts_builtin_sym_end] = ACTIONS(1724), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(1726), + [anon_sym_default] = ACTIONS(1726), + [anon_sym_namespace] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_type] = ACTIONS(1726), + [anon_sym_typeof] = ACTIONS(1726), + [anon_sym_import] = ACTIONS(1726), + [anon_sym_var] = ACTIONS(1726), + [anon_sym_let] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1726), + [anon_sym_for] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_await] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1726), + [anon_sym_do] = ACTIONS(1726), + [anon_sym_try] = ACTIONS(1726), + [anon_sym_with] = ACTIONS(1726), + [anon_sym_break] = ACTIONS(1726), + [anon_sym_continue] = ACTIONS(1726), + [anon_sym_debugger] = ACTIONS(1726), + [anon_sym_return] = ACTIONS(1726), + [anon_sym_throw] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1726), + [anon_sym_yield] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_SLASH] = ACTIONS(1726), + [anon_sym_class] = ACTIONS(1726), + [anon_sym_async] = ACTIONS(1726), + [anon_sym_function] = ACTIONS(1726), + [anon_sym_new] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1724), + [anon_sym_void] = ACTIONS(1726), + [anon_sym_delete] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1724), + [anon_sym_DASH_DASH] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1724), + [sym_number] = ACTIONS(1724), + [sym_this] = ACTIONS(1726), + [sym_super] = ACTIONS(1726), + [sym_true] = ACTIONS(1726), + [sym_false] = ACTIONS(1726), + [sym_null] = ACTIONS(1726), + [sym_undefined] = ACTIONS(1726), + [anon_sym_AT] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1726), + [anon_sym_abstract] = ACTIONS(1726), + [anon_sym_get] = ACTIONS(1726), + [anon_sym_set] = ACTIONS(1726), + [anon_sym_declare] = ACTIONS(1726), + [anon_sym_public] = ACTIONS(1726), + [anon_sym_private] = ACTIONS(1726), + [anon_sym_protected] = ACTIONS(1726), + [anon_sym_module] = ACTIONS(1726), + [anon_sym_any] = ACTIONS(1726), + [anon_sym_number] = ACTIONS(1726), + [anon_sym_boolean] = ACTIONS(1726), + [anon_sym_string] = ACTIONS(1726), + [anon_sym_symbol] = ACTIONS(1726), + [anon_sym_interface] = ACTIONS(1726), + [anon_sym_enum] = ACTIONS(1726), + [sym_readonly] = ACTIONS(1726), + }, + [508] = { + [ts_builtin_sym_end] = ACTIONS(1728), + [sym_identifier] = ACTIONS(1730), + [anon_sym_export] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_namespace] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(1730), + [anon_sym_var] = ACTIONS(1730), + [anon_sym_let] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1730), + [anon_sym_switch] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1728), + [anon_sym_await] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1730), + [anon_sym_try] = ACTIONS(1730), + [anon_sym_with] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_debugger] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_throw] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1730), + [anon_sym_yield] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_SLASH] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(1730), + [anon_sym_function] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(1728), + [anon_sym_void] = ACTIONS(1730), + [anon_sym_delete] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_DASH_DASH] = ACTIONS(1728), + [anon_sym_DQUOTE] = ACTIONS(1728), + [anon_sym_SQUOTE] = ACTIONS(1728), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1728), + [sym_number] = ACTIONS(1728), + [sym_this] = ACTIONS(1730), + [sym_super] = ACTIONS(1730), + [sym_true] = ACTIONS(1730), + [sym_false] = ACTIONS(1730), + [sym_null] = ACTIONS(1730), + [sym_undefined] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(1728), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_abstract] = ACTIONS(1730), + [anon_sym_get] = ACTIONS(1730), + [anon_sym_set] = ACTIONS(1730), + [anon_sym_declare] = ACTIONS(1730), + [anon_sym_public] = ACTIONS(1730), + [anon_sym_private] = ACTIONS(1730), + [anon_sym_protected] = ACTIONS(1730), + [anon_sym_module] = ACTIONS(1730), + [anon_sym_any] = ACTIONS(1730), + [anon_sym_number] = ACTIONS(1730), + [anon_sym_boolean] = ACTIONS(1730), + [anon_sym_string] = ACTIONS(1730), + [anon_sym_symbol] = ACTIONS(1730), + [anon_sym_interface] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [sym_readonly] = ACTIONS(1730), + }, + [509] = { + [ts_builtin_sym_end] = ACTIONS(1732), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_namespace] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1734), + [anon_sym_typeof] = ACTIONS(1734), + [anon_sym_import] = ACTIONS(1734), + [anon_sym_var] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_await] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_do] = ACTIONS(1734), + [anon_sym_try] = ACTIONS(1734), + [anon_sym_with] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_debugger] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_throw] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_yield] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_SLASH] = ACTIONS(1734), + [anon_sym_class] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_new] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_void] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_DQUOTE] = ACTIONS(1732), + [anon_sym_SQUOTE] = ACTIONS(1732), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1732), + [sym_number] = ACTIONS(1732), + [sym_this] = ACTIONS(1734), + [sym_super] = ACTIONS(1734), + [sym_true] = ACTIONS(1734), + [sym_false] = ACTIONS(1734), + [sym_null] = ACTIONS(1734), + [sym_undefined] = ACTIONS(1734), + [anon_sym_AT] = ACTIONS(1732), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_abstract] = ACTIONS(1734), + [anon_sym_get] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_declare] = ACTIONS(1734), + [anon_sym_public] = ACTIONS(1734), + [anon_sym_private] = ACTIONS(1734), + [anon_sym_protected] = ACTIONS(1734), + [anon_sym_module] = ACTIONS(1734), + [anon_sym_any] = ACTIONS(1734), + [anon_sym_number] = ACTIONS(1734), + [anon_sym_boolean] = ACTIONS(1734), + [anon_sym_string] = ACTIONS(1734), + [anon_sym_symbol] = ACTIONS(1734), + [anon_sym_interface] = ACTIONS(1734), + [anon_sym_enum] = ACTIONS(1734), + [sym_readonly] = ACTIONS(1734), + }, + [510] = { + [ts_builtin_sym_end] = ACTIONS(1736), + [sym_identifier] = ACTIONS(1738), + [anon_sym_export] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1738), + [anon_sym_namespace] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_type] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1738), + [anon_sym_import] = ACTIONS(1738), + [anon_sym_var] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_switch] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_await] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_with] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_debugger] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(1738), + [anon_sym_yield] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_LT] = ACTIONS(1736), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_class] = ACTIONS(1738), + [anon_sym_async] = ACTIONS(1738), + [anon_sym_function] = ACTIONS(1738), + [anon_sym_new] = ACTIONS(1738), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_TILDE] = ACTIONS(1736), + [anon_sym_void] = ACTIONS(1738), + [anon_sym_delete] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1736), + [anon_sym_DASH_DASH] = ACTIONS(1736), + [anon_sym_DQUOTE] = ACTIONS(1736), + [anon_sym_SQUOTE] = ACTIONS(1736), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1736), + [sym_number] = ACTIONS(1736), + [sym_this] = ACTIONS(1738), + [sym_super] = ACTIONS(1738), + [sym_true] = ACTIONS(1738), + [sym_false] = ACTIONS(1738), + [sym_null] = ACTIONS(1738), + [sym_undefined] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1736), + [anon_sym_static] = ACTIONS(1738), + [anon_sym_abstract] = ACTIONS(1738), + [anon_sym_get] = ACTIONS(1738), + [anon_sym_set] = ACTIONS(1738), + [anon_sym_declare] = ACTIONS(1738), + [anon_sym_public] = ACTIONS(1738), + [anon_sym_private] = ACTIONS(1738), + [anon_sym_protected] = ACTIONS(1738), + [anon_sym_module] = ACTIONS(1738), + [anon_sym_any] = ACTIONS(1738), + [anon_sym_number] = ACTIONS(1738), + [anon_sym_boolean] = ACTIONS(1738), + [anon_sym_string] = ACTIONS(1738), + [anon_sym_symbol] = ACTIONS(1738), + [anon_sym_interface] = ACTIONS(1738), + [anon_sym_enum] = ACTIONS(1738), + [sym_readonly] = ACTIONS(1738), + }, + [511] = { + [sym_finally_clause] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1742), + [anon_sym_default] = ACTIONS(1742), + [anon_sym_namespace] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_type] = ACTIONS(1742), + [anon_sym_typeof] = ACTIONS(1742), + [anon_sym_import] = ACTIONS(1742), + [anon_sym_var] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_await] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_do] = ACTIONS(1742), + [anon_sym_try] = ACTIONS(1742), + [anon_sym_with] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_debugger] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_throw] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_case] = ACTIONS(1742), + [anon_sym_finally] = ACTIONS(1636), + [anon_sym_yield] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_SLASH] = ACTIONS(1742), + [anon_sym_class] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_function] = ACTIONS(1742), + [anon_sym_new] = ACTIONS(1742), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1740), + [anon_sym_void] = ACTIONS(1742), + [anon_sym_delete] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_DQUOTE] = ACTIONS(1740), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1740), + [sym_number] = ACTIONS(1740), + [sym_this] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_true] = ACTIONS(1742), + [sym_false] = ACTIONS(1742), + [sym_null] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1742), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1742), + [anon_sym_abstract] = ACTIONS(1742), + [anon_sym_get] = ACTIONS(1742), + [anon_sym_set] = ACTIONS(1742), + [anon_sym_declare] = ACTIONS(1742), + [anon_sym_public] = ACTIONS(1742), + [anon_sym_private] = ACTIONS(1742), + [anon_sym_protected] = ACTIONS(1742), + [anon_sym_module] = ACTIONS(1742), + [anon_sym_any] = ACTIONS(1742), + [anon_sym_number] = ACTIONS(1742), + [anon_sym_boolean] = ACTIONS(1742), + [anon_sym_string] = ACTIONS(1742), + [anon_sym_symbol] = ACTIONS(1742), + [anon_sym_interface] = ACTIONS(1742), + [anon_sym_enum] = ACTIONS(1742), + [sym_readonly] = ACTIONS(1742), + }, + [512] = { + [sym_statement_block] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(905), + [anon_sym_export] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_type] = ACTIONS(905), + [anon_sym_typeof] = ACTIONS(905), + [anon_sym_import] = ACTIONS(905), + [anon_sym_var] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_if] = ACTIONS(905), + [anon_sym_else] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_await] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_try] = ACTIONS(905), + [anon_sym_with] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_debugger] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_throw] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_case] = ACTIONS(905), + [anon_sym_yield] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_class] = ACTIONS(905), + [anon_sym_async] = ACTIONS(905), + [anon_sym_function] = ACTIONS(905), + [anon_sym_new] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_void] = ACTIONS(905), + [anon_sym_delete] = ACTIONS(905), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(903), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(903), + [sym_number] = ACTIONS(903), + [sym_this] = ACTIONS(905), + [sym_super] = ACTIONS(905), + [sym_true] = ACTIONS(905), + [sym_false] = ACTIONS(905), + [sym_null] = ACTIONS(905), + [sym_undefined] = ACTIONS(905), + [anon_sym_AT] = ACTIONS(903), + [anon_sym_static] = ACTIONS(905), + [anon_sym_abstract] = ACTIONS(905), + [anon_sym_get] = ACTIONS(905), + [anon_sym_set] = ACTIONS(905), + [anon_sym_declare] = ACTIONS(905), + [anon_sym_public] = ACTIONS(905), + [anon_sym_private] = ACTIONS(905), + [anon_sym_protected] = ACTIONS(905), + [anon_sym_module] = ACTIONS(905), + [anon_sym_any] = ACTIONS(905), + [anon_sym_number] = ACTIONS(905), + [anon_sym_boolean] = ACTIONS(905), + [anon_sym_string] = ACTIONS(905), + [anon_sym_symbol] = ACTIONS(905), + [anon_sym_interface] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [sym_readonly] = ACTIONS(905), + }, + [513] = { + [ts_builtin_sym_end] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1748), + [anon_sym_export] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1748), + [anon_sym_namespace] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_type] = ACTIONS(1748), + [anon_sym_typeof] = ACTIONS(1748), + [anon_sym_import] = ACTIONS(1748), + [anon_sym_var] = ACTIONS(1748), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_if] = ACTIONS(1748), + [anon_sym_else] = ACTIONS(1748), + [anon_sym_switch] = ACTIONS(1748), + [anon_sym_for] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_await] = ACTIONS(1748), + [anon_sym_while] = ACTIONS(1748), + [anon_sym_do] = ACTIONS(1748), + [anon_sym_try] = ACTIONS(1748), + [anon_sym_with] = ACTIONS(1748), + [anon_sym_break] = ACTIONS(1748), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_debugger] = ACTIONS(1748), + [anon_sym_return] = ACTIONS(1748), + [anon_sym_throw] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_case] = ACTIONS(1748), + [anon_sym_yield] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1746), + [anon_sym_SLASH] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(1748), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_function] = ACTIONS(1748), + [anon_sym_new] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1715), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_TILDE] = ACTIONS(1746), + [anon_sym_void] = ACTIONS(1748), + [anon_sym_delete] = ACTIONS(1748), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_number] = ACTIONS(1746), + [sym_this] = ACTIONS(1748), + [sym_super] = ACTIONS(1748), + [sym_true] = ACTIONS(1748), + [sym_false] = ACTIONS(1748), + [sym_null] = ACTIONS(1748), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_abstract] = ACTIONS(1748), + [anon_sym_get] = ACTIONS(1748), + [anon_sym_set] = ACTIONS(1748), + [anon_sym_declare] = ACTIONS(1748), + [anon_sym_public] = ACTIONS(1748), + [anon_sym_private] = ACTIONS(1748), + [anon_sym_protected] = ACTIONS(1748), + [anon_sym_module] = ACTIONS(1748), + [anon_sym_any] = ACTIONS(1748), + [anon_sym_number] = ACTIONS(1748), + [anon_sym_boolean] = ACTIONS(1748), + [anon_sym_string] = ACTIONS(1748), + [anon_sym_symbol] = ACTIONS(1748), + [anon_sym_interface] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [sym_readonly] = ACTIONS(1748), }, [514] = { - [ts_builtin_sym_end] = ACTIONS(1069), - [sym_identifier] = ACTIONS(1071), - [anon_sym_export] = ACTIONS(1071), - [anon_sym_default] = ACTIONS(1071), - [anon_sym_namespace] = ACTIONS(1071), - [anon_sym_LBRACE] = ACTIONS(1069), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_type] = ACTIONS(1071), - [anon_sym_typeof] = ACTIONS(1071), - [anon_sym_import] = ACTIONS(1071), - [anon_sym_var] = ACTIONS(1071), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_const] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1069), - [anon_sym_if] = ACTIONS(1071), - [anon_sym_else] = ACTIONS(1071), - [anon_sym_switch] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(1069), - [anon_sym_await] = ACTIONS(1071), - [anon_sym_while] = ACTIONS(1071), - [anon_sym_do] = ACTIONS(1071), - [anon_sym_try] = ACTIONS(1071), - [anon_sym_with] = ACTIONS(1071), - [anon_sym_break] = ACTIONS(1071), - [anon_sym_continue] = ACTIONS(1071), - [anon_sym_debugger] = ACTIONS(1071), - [anon_sym_return] = ACTIONS(1071), - [anon_sym_throw] = ACTIONS(1071), - [anon_sym_SEMI] = ACTIONS(1069), - [anon_sym_case] = ACTIONS(1071), - [anon_sym_yield] = ACTIONS(1071), - [anon_sym_LBRACK] = ACTIONS(1069), - [anon_sym_LT] = ACTIONS(1069), - [anon_sym_SLASH] = ACTIONS(1071), - [anon_sym_class] = ACTIONS(1071), - [anon_sym_async] = ACTIONS(1071), - [anon_sym_function] = ACTIONS(1071), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_PLUS] = ACTIONS(1071), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_TILDE] = ACTIONS(1069), - [anon_sym_void] = ACTIONS(1071), - [anon_sym_delete] = ACTIONS(1071), - [anon_sym_PLUS_PLUS] = ACTIONS(1069), - [anon_sym_DASH_DASH] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1069), - [anon_sym_SQUOTE] = ACTIONS(1069), + [ts_builtin_sym_end] = ACTIONS(1059), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(1061), + [anon_sym_default] = ACTIONS(1061), + [anon_sym_namespace] = ACTIONS(1061), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_type] = ACTIONS(1061), + [anon_sym_typeof] = ACTIONS(1061), + [anon_sym_import] = ACTIONS(1061), + [anon_sym_var] = ACTIONS(1061), + [anon_sym_let] = ACTIONS(1061), + [anon_sym_const] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_if] = ACTIONS(1061), + [anon_sym_else] = ACTIONS(1061), + [anon_sym_switch] = ACTIONS(1061), + [anon_sym_for] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_await] = ACTIONS(1061), + [anon_sym_while] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1061), + [anon_sym_try] = ACTIONS(1061), + [anon_sym_with] = ACTIONS(1061), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_debugger] = ACTIONS(1061), + [anon_sym_return] = ACTIONS(1061), + [anon_sym_throw] = ACTIONS(1061), + [anon_sym_SEMI] = ACTIONS(1059), + [anon_sym_case] = ACTIONS(1061), + [anon_sym_yield] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(1059), + [anon_sym_LT] = ACTIONS(1059), + [anon_sym_SLASH] = ACTIONS(1061), + [anon_sym_class] = ACTIONS(1061), + [anon_sym_async] = ACTIONS(1061), + [anon_sym_function] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_PLUS] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_TILDE] = ACTIONS(1059), + [anon_sym_void] = ACTIONS(1061), + [anon_sym_delete] = ACTIONS(1061), + [anon_sym_PLUS_PLUS] = ACTIONS(1059), + [anon_sym_DASH_DASH] = ACTIONS(1059), + [anon_sym_DQUOTE] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(1059), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1069), - [sym_number] = ACTIONS(1069), - [sym_this] = ACTIONS(1071), - [sym_super] = ACTIONS(1071), - [sym_true] = ACTIONS(1071), - [sym_false] = ACTIONS(1071), - [sym_null] = ACTIONS(1071), - [sym_undefined] = ACTIONS(1071), - [anon_sym_AT] = ACTIONS(1069), - [anon_sym_static] = ACTIONS(1071), - [anon_sym_abstract] = ACTIONS(1071), - [anon_sym_get] = ACTIONS(1071), - [anon_sym_set] = ACTIONS(1071), - [anon_sym_declare] = ACTIONS(1071), - [anon_sym_public] = ACTIONS(1071), - [anon_sym_private] = ACTIONS(1071), - [anon_sym_protected] = ACTIONS(1071), - [anon_sym_module] = ACTIONS(1071), - [anon_sym_any] = ACTIONS(1071), - [anon_sym_number] = ACTIONS(1071), - [anon_sym_boolean] = ACTIONS(1071), - [anon_sym_string] = ACTIONS(1071), - [anon_sym_symbol] = ACTIONS(1071), - [anon_sym_interface] = ACTIONS(1071), - [anon_sym_enum] = ACTIONS(1071), - [sym_readonly] = ACTIONS(1071), - [sym__automatic_semicolon] = ACTIONS(1077), + [anon_sym_BQUOTE] = ACTIONS(1059), + [sym_number] = ACTIONS(1059), + [sym_this] = ACTIONS(1061), + [sym_super] = ACTIONS(1061), + [sym_true] = ACTIONS(1061), + [sym_false] = ACTIONS(1061), + [sym_null] = ACTIONS(1061), + [sym_undefined] = ACTIONS(1061), + [anon_sym_AT] = ACTIONS(1059), + [anon_sym_static] = ACTIONS(1061), + [anon_sym_abstract] = ACTIONS(1061), + [anon_sym_get] = ACTIONS(1061), + [anon_sym_set] = ACTIONS(1061), + [anon_sym_declare] = ACTIONS(1061), + [anon_sym_public] = ACTIONS(1061), + [anon_sym_private] = ACTIONS(1061), + [anon_sym_protected] = ACTIONS(1061), + [anon_sym_module] = ACTIONS(1061), + [anon_sym_any] = ACTIONS(1061), + [anon_sym_number] = ACTIONS(1061), + [anon_sym_boolean] = ACTIONS(1061), + [anon_sym_string] = ACTIONS(1061), + [anon_sym_symbol] = ACTIONS(1061), + [anon_sym_interface] = ACTIONS(1061), + [anon_sym_enum] = ACTIONS(1061), + [sym_readonly] = ACTIONS(1061), + [sym__automatic_semicolon] = ACTIONS(1067), }, [515] = { - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(943), - [anon_sym_export] = ACTIONS(943), - [anon_sym_default] = ACTIONS(943), - [anon_sym_namespace] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_type] = ACTIONS(943), - [anon_sym_typeof] = ACTIONS(943), - [anon_sym_import] = ACTIONS(943), - [anon_sym_var] = ACTIONS(943), - [anon_sym_let] = ACTIONS(943), - [anon_sym_const] = ACTIONS(943), - [anon_sym_BANG] = ACTIONS(941), - [anon_sym_if] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_switch] = ACTIONS(943), - [anon_sym_for] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(941), - [anon_sym_await] = ACTIONS(943), - [anon_sym_while] = ACTIONS(943), - [anon_sym_do] = ACTIONS(943), - [anon_sym_try] = ACTIONS(943), - [anon_sym_with] = ACTIONS(943), - [anon_sym_break] = ACTIONS(943), - [anon_sym_continue] = ACTIONS(943), - [anon_sym_debugger] = ACTIONS(943), - [anon_sym_return] = ACTIONS(943), - [anon_sym_throw] = ACTIONS(943), - [anon_sym_SEMI] = ACTIONS(941), - [anon_sym_case] = ACTIONS(943), - [anon_sym_yield] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(941), - [anon_sym_SLASH] = ACTIONS(943), - [anon_sym_class] = ACTIONS(943), - [anon_sym_async] = ACTIONS(943), - [anon_sym_function] = ACTIONS(943), - [anon_sym_new] = ACTIONS(943), - [anon_sym_PLUS] = ACTIONS(943), - [anon_sym_DASH] = ACTIONS(943), - [anon_sym_TILDE] = ACTIONS(941), - [anon_sym_void] = ACTIONS(943), - [anon_sym_delete] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [anon_sym_SQUOTE] = ACTIONS(941), + [ts_builtin_sym_end] = ACTIONS(911), + [sym_identifier] = ACTIONS(913), + [anon_sym_export] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_namespace] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_type] = ACTIONS(913), + [anon_sym_typeof] = ACTIONS(913), + [anon_sym_import] = ACTIONS(913), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_if] = ACTIONS(913), + [anon_sym_else] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_await] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_try] = ACTIONS(913), + [anon_sym_with] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_debugger] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_throw] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_case] = ACTIONS(913), + [anon_sym_yield] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_class] = ACTIONS(913), + [anon_sym_async] = ACTIONS(913), + [anon_sym_function] = ACTIONS(913), + [anon_sym_new] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_TILDE] = ACTIONS(911), + [anon_sym_void] = ACTIONS(913), + [anon_sym_delete] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_SQUOTE] = ACTIONS(911), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(941), - [sym_number] = ACTIONS(941), - [sym_this] = ACTIONS(943), - [sym_super] = ACTIONS(943), - [sym_true] = ACTIONS(943), - [sym_false] = ACTIONS(943), - [sym_null] = ACTIONS(943), - [sym_undefined] = ACTIONS(943), - [anon_sym_AT] = ACTIONS(941), - [anon_sym_static] = ACTIONS(943), - [anon_sym_abstract] = ACTIONS(943), - [anon_sym_get] = ACTIONS(943), - [anon_sym_set] = ACTIONS(943), - [anon_sym_declare] = ACTIONS(943), - [anon_sym_public] = ACTIONS(943), - [anon_sym_private] = ACTIONS(943), - [anon_sym_protected] = ACTIONS(943), - [anon_sym_module] = ACTIONS(943), - [anon_sym_any] = ACTIONS(943), - [anon_sym_number] = ACTIONS(943), - [anon_sym_boolean] = ACTIONS(943), - [anon_sym_string] = ACTIONS(943), - [anon_sym_symbol] = ACTIONS(943), - [anon_sym_interface] = ACTIONS(943), - [anon_sym_enum] = ACTIONS(943), - [sym_readonly] = ACTIONS(943), - [sym__automatic_semicolon] = ACTIONS(949), + [anon_sym_BQUOTE] = ACTIONS(911), + [sym_number] = ACTIONS(911), + [sym_this] = ACTIONS(913), + [sym_super] = ACTIONS(913), + [sym_true] = ACTIONS(913), + [sym_false] = ACTIONS(913), + [sym_null] = ACTIONS(913), + [sym_undefined] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(911), + [anon_sym_static] = ACTIONS(913), + [anon_sym_abstract] = ACTIONS(913), + [anon_sym_get] = ACTIONS(913), + [anon_sym_set] = ACTIONS(913), + [anon_sym_declare] = ACTIONS(913), + [anon_sym_public] = ACTIONS(913), + [anon_sym_private] = ACTIONS(913), + [anon_sym_protected] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_any] = ACTIONS(913), + [anon_sym_number] = ACTIONS(913), + [anon_sym_boolean] = ACTIONS(913), + [anon_sym_string] = ACTIONS(913), + [anon_sym_symbol] = ACTIONS(913), + [anon_sym_interface] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(913), + [sym_readonly] = ACTIONS(913), + [sym__automatic_semicolon] = ACTIONS(919), }, [516] = { [ts_builtin_sym_end] = ACTIONS(1750), @@ -59668,162 +59889,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1752), }, [517] = { - [ts_builtin_sym_end] = ACTIONS(1021), - [sym_identifier] = ACTIONS(1023), - [anon_sym_export] = ACTIONS(1023), - [anon_sym_default] = ACTIONS(1023), - [anon_sym_namespace] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1021), - [anon_sym_RBRACE] = ACTIONS(1021), - [anon_sym_type] = ACTIONS(1023), - [anon_sym_typeof] = ACTIONS(1023), - [anon_sym_import] = ACTIONS(1023), - [anon_sym_var] = ACTIONS(1023), - [anon_sym_let] = ACTIONS(1023), - [anon_sym_const] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1023), - [anon_sym_else] = ACTIONS(1023), - [anon_sym_switch] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_do] = ACTIONS(1023), - [anon_sym_try] = ACTIONS(1023), - [anon_sym_with] = ACTIONS(1023), - [anon_sym_break] = ACTIONS(1023), - [anon_sym_continue] = ACTIONS(1023), - [anon_sym_debugger] = ACTIONS(1023), - [anon_sym_return] = ACTIONS(1023), - [anon_sym_throw] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1021), - [anon_sym_case] = ACTIONS(1023), - [anon_sym_yield] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_SLASH] = ACTIONS(1023), - [anon_sym_class] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_function] = ACTIONS(1023), - [anon_sym_new] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1023), - [anon_sym_TILDE] = ACTIONS(1021), - [anon_sym_void] = ACTIONS(1023), - [anon_sym_delete] = ACTIONS(1023), - [anon_sym_PLUS_PLUS] = ACTIONS(1021), - [anon_sym_DASH_DASH] = ACTIONS(1021), - [anon_sym_DQUOTE] = ACTIONS(1021), - [anon_sym_SQUOTE] = ACTIONS(1021), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1021), - [sym_number] = ACTIONS(1021), - [sym_this] = ACTIONS(1023), - [sym_super] = ACTIONS(1023), - [sym_true] = ACTIONS(1023), - [sym_false] = ACTIONS(1023), - [sym_null] = ACTIONS(1023), - [sym_undefined] = ACTIONS(1023), - [anon_sym_AT] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(1023), - [anon_sym_abstract] = ACTIONS(1023), - [anon_sym_get] = ACTIONS(1023), - [anon_sym_set] = ACTIONS(1023), - [anon_sym_declare] = ACTIONS(1023), - [anon_sym_public] = ACTIONS(1023), - [anon_sym_private] = ACTIONS(1023), - [anon_sym_protected] = ACTIONS(1023), - [anon_sym_module] = ACTIONS(1023), - [anon_sym_any] = ACTIONS(1023), - [anon_sym_number] = ACTIONS(1023), - [anon_sym_boolean] = ACTIONS(1023), - [anon_sym_string] = ACTIONS(1023), - [anon_sym_symbol] = ACTIONS(1023), - [anon_sym_interface] = ACTIONS(1023), - [anon_sym_enum] = ACTIONS(1023), - [sym_readonly] = ACTIONS(1023), - [sym__automatic_semicolon] = ACTIONS(1029), - }, - [518] = { - [ts_builtin_sym_end] = ACTIONS(1003), - [sym_identifier] = ACTIONS(1005), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_default] = ACTIONS(1005), - [anon_sym_namespace] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_RBRACE] = ACTIONS(1003), - [anon_sym_type] = ACTIONS(1005), - [anon_sym_typeof] = ACTIONS(1005), - [anon_sym_import] = ACTIONS(1005), - [anon_sym_var] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1003), - [anon_sym_await] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_with] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_debugger] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_throw] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1003), - [anon_sym_case] = ACTIONS(1005), - [anon_sym_yield] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1005), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_async] = ACTIONS(1005), - [anon_sym_function] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_TILDE] = ACTIONS(1003), - [anon_sym_void] = ACTIONS(1005), - [anon_sym_delete] = ACTIONS(1005), - [anon_sym_PLUS_PLUS] = ACTIONS(1003), - [anon_sym_DASH_DASH] = ACTIONS(1003), - [anon_sym_DQUOTE] = ACTIONS(1003), - [anon_sym_SQUOTE] = ACTIONS(1003), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1003), - [sym_number] = ACTIONS(1003), - [sym_this] = ACTIONS(1005), - [sym_super] = ACTIONS(1005), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [sym_null] = ACTIONS(1005), - [sym_undefined] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1003), - [anon_sym_static] = ACTIONS(1005), - [anon_sym_abstract] = ACTIONS(1005), - [anon_sym_get] = ACTIONS(1005), - [anon_sym_set] = ACTIONS(1005), - [anon_sym_declare] = ACTIONS(1005), - [anon_sym_public] = ACTIONS(1005), - [anon_sym_private] = ACTIONS(1005), - [anon_sym_protected] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_any] = ACTIONS(1005), - [anon_sym_number] = ACTIONS(1005), - [anon_sym_boolean] = ACTIONS(1005), - [anon_sym_string] = ACTIONS(1005), - [anon_sym_symbol] = ACTIONS(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1005), - [sym_readonly] = ACTIONS(1005), - [sym__automatic_semicolon] = ACTIONS(1011), - }, - [519] = { [ts_builtin_sym_end] = ACTIONS(1754), [sym_identifier] = ACTIONS(1756), [anon_sym_export] = ACTIONS(1756), @@ -59901,7 +59966,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1756), [sym_readonly] = ACTIONS(1756), }, - [520] = { + [518] = { [ts_builtin_sym_end] = ACTIONS(1758), [sym_identifier] = ACTIONS(1760), [anon_sym_export] = ACTIONS(1760), @@ -59921,6 +59986,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1760), [anon_sym_for] = ACTIONS(1760), [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_RPAREN] = ACTIONS(1758), [anon_sym_await] = ACTIONS(1760), [anon_sym_while] = ACTIONS(1760), [anon_sym_do] = ACTIONS(1760), @@ -59933,7 +59999,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1760), [anon_sym_SEMI] = ACTIONS(1758), [anon_sym_case] = ACTIONS(1760), - [anon_sym_finally] = ACTIONS(1760), [anon_sym_yield] = ACTIONS(1760), [anon_sym_LBRACK] = ACTIONS(1758), [anon_sym_LT] = ACTIONS(1758), @@ -59979,7 +60044,475 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1760), [sym_readonly] = ACTIONS(1760), }, + [519] = { + [ts_builtin_sym_end] = ACTIONS(1039), + [sym_identifier] = ACTIONS(1041), + [anon_sym_export] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_namespace] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_typeof] = ACTIONS(1041), + [anon_sym_import] = ACTIONS(1041), + [anon_sym_var] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_do] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [anon_sym_with] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_debugger] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_throw] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_yield] = ACTIONS(1041), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_class] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_function] = ACTIONS(1041), + [anon_sym_new] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_void] = ACTIONS(1041), + [anon_sym_delete] = ACTIONS(1041), + [anon_sym_PLUS_PLUS] = ACTIONS(1039), + [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1039), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1039), + [sym_number] = ACTIONS(1039), + [sym_this] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_true] = ACTIONS(1041), + [sym_false] = ACTIONS(1041), + [sym_null] = ACTIONS(1041), + [sym_undefined] = ACTIONS(1041), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_abstract] = ACTIONS(1041), + [anon_sym_get] = ACTIONS(1041), + [anon_sym_set] = ACTIONS(1041), + [anon_sym_declare] = ACTIONS(1041), + [anon_sym_public] = ACTIONS(1041), + [anon_sym_private] = ACTIONS(1041), + [anon_sym_protected] = ACTIONS(1041), + [anon_sym_module] = ACTIONS(1041), + [anon_sym_any] = ACTIONS(1041), + [anon_sym_number] = ACTIONS(1041), + [anon_sym_boolean] = ACTIONS(1041), + [anon_sym_string] = ACTIONS(1041), + [anon_sym_symbol] = ACTIONS(1041), + [anon_sym_interface] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [sym_readonly] = ACTIONS(1041), + [sym__automatic_semicolon] = ACTIONS(1047), + }, + [520] = { + [ts_builtin_sym_end] = ACTIONS(997), + [sym_identifier] = ACTIONS(999), + [anon_sym_export] = ACTIONS(999), + [anon_sym_default] = ACTIONS(999), + [anon_sym_namespace] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_RBRACE] = ACTIONS(997), + [anon_sym_type] = ACTIONS(999), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(999), + [anon_sym_var] = ACTIONS(999), + [anon_sym_let] = ACTIONS(999), + [anon_sym_const] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_if] = ACTIONS(999), + [anon_sym_else] = ACTIONS(999), + [anon_sym_switch] = ACTIONS(999), + [anon_sym_for] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_await] = ACTIONS(999), + [anon_sym_while] = ACTIONS(999), + [anon_sym_do] = ACTIONS(999), + [anon_sym_try] = ACTIONS(999), + [anon_sym_with] = ACTIONS(999), + [anon_sym_break] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(999), + [anon_sym_debugger] = ACTIONS(999), + [anon_sym_return] = ACTIONS(999), + [anon_sym_throw] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_case] = ACTIONS(999), + [anon_sym_yield] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(999), + [anon_sym_class] = ACTIONS(999), + [anon_sym_async] = ACTIONS(999), + [anon_sym_function] = ACTIONS(999), + [anon_sym_new] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_TILDE] = ACTIONS(997), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(997), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(997), + [sym_number] = ACTIONS(997), + [sym_this] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_true] = ACTIONS(999), + [sym_false] = ACTIONS(999), + [sym_null] = ACTIONS(999), + [sym_undefined] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(997), + [anon_sym_static] = ACTIONS(999), + [anon_sym_abstract] = ACTIONS(999), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(999), + [anon_sym_declare] = ACTIONS(999), + [anon_sym_public] = ACTIONS(999), + [anon_sym_private] = ACTIONS(999), + [anon_sym_protected] = ACTIONS(999), + [anon_sym_module] = ACTIONS(999), + [anon_sym_any] = ACTIONS(999), + [anon_sym_number] = ACTIONS(999), + [anon_sym_boolean] = ACTIONS(999), + [anon_sym_string] = ACTIONS(999), + [anon_sym_symbol] = ACTIONS(999), + [anon_sym_interface] = ACTIONS(999), + [anon_sym_enum] = ACTIONS(999), + [sym_readonly] = ACTIONS(999), + [sym__automatic_semicolon] = ACTIONS(1005), + }, [521] = { + [sym_statement_block] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(903), + [sym_identifier] = ACTIONS(905), + [anon_sym_export] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_namespace] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_type] = ACTIONS(905), + [anon_sym_typeof] = ACTIONS(905), + [anon_sym_import] = ACTIONS(905), + [anon_sym_var] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_if] = ACTIONS(905), + [anon_sym_else] = ACTIONS(905), + [anon_sym_switch] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_await] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_try] = ACTIONS(905), + [anon_sym_with] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_debugger] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_throw] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_case] = ACTIONS(905), + [anon_sym_yield] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_class] = ACTIONS(905), + [anon_sym_async] = ACTIONS(905), + [anon_sym_function] = ACTIONS(905), + [anon_sym_new] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_TILDE] = ACTIONS(903), + [anon_sym_void] = ACTIONS(905), + [anon_sym_delete] = ACTIONS(905), + [anon_sym_PLUS_PLUS] = ACTIONS(903), + [anon_sym_DASH_DASH] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(903), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(903), + [sym_number] = ACTIONS(903), + [sym_this] = ACTIONS(905), + [sym_super] = ACTIONS(905), + [sym_true] = ACTIONS(905), + [sym_false] = ACTIONS(905), + [sym_null] = ACTIONS(905), + [sym_undefined] = ACTIONS(905), + [anon_sym_AT] = ACTIONS(903), + [anon_sym_static] = ACTIONS(905), + [anon_sym_abstract] = ACTIONS(905), + [anon_sym_get] = ACTIONS(905), + [anon_sym_set] = ACTIONS(905), + [anon_sym_declare] = ACTIONS(905), + [anon_sym_public] = ACTIONS(905), + [anon_sym_private] = ACTIONS(905), + [anon_sym_protected] = ACTIONS(905), + [anon_sym_module] = ACTIONS(905), + [anon_sym_any] = ACTIONS(905), + [anon_sym_number] = ACTIONS(905), + [anon_sym_boolean] = ACTIONS(905), + [anon_sym_string] = ACTIONS(905), + [anon_sym_symbol] = ACTIONS(905), + [anon_sym_interface] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [sym_readonly] = ACTIONS(905), + }, + [522] = { + [ts_builtin_sym_end] = ACTIONS(987), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_type] = ACTIONS(989), + [anon_sym_typeof] = ACTIONS(989), + [anon_sym_import] = ACTIONS(989), + [anon_sym_var] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_if] = ACTIONS(989), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_await] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_try] = ACTIONS(989), + [anon_sym_with] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_debugger] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_throw] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_case] = ACTIONS(989), + [anon_sym_yield] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_class] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_function] = ACTIONS(989), + [anon_sym_new] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_TILDE] = ACTIONS(987), + [anon_sym_void] = ACTIONS(989), + [anon_sym_delete] = ACTIONS(989), + [anon_sym_PLUS_PLUS] = ACTIONS(987), + [anon_sym_DASH_DASH] = ACTIONS(987), + [anon_sym_DQUOTE] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(987), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(987), + [sym_number] = ACTIONS(987), + [sym_this] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_true] = ACTIONS(989), + [sym_false] = ACTIONS(989), + [sym_null] = ACTIONS(989), + [sym_undefined] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(987), + [anon_sym_static] = ACTIONS(989), + [anon_sym_abstract] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_interface] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [sym_readonly] = ACTIONS(989), + [sym__automatic_semicolon] = ACTIONS(995), + }, + [523] = { + [ts_builtin_sym_end] = ACTIONS(1011), + [sym_identifier] = ACTIONS(1013), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_default] = ACTIONS(1013), + [anon_sym_namespace] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_type] = ACTIONS(1013), + [anon_sym_typeof] = ACTIONS(1013), + [anon_sym_import] = ACTIONS(1013), + [anon_sym_var] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_await] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1013), + [anon_sym_with] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_debugger] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_throw] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_case] = ACTIONS(1013), + [anon_sym_yield] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1011), + [anon_sym_LT] = ACTIONS(1011), + [anon_sym_SLASH] = ACTIONS(1013), + [anon_sym_class] = ACTIONS(1013), + [anon_sym_async] = ACTIONS(1013), + [anon_sym_function] = ACTIONS(1013), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_TILDE] = ACTIONS(1011), + [anon_sym_void] = ACTIONS(1013), + [anon_sym_delete] = ACTIONS(1013), + [anon_sym_PLUS_PLUS] = ACTIONS(1011), + [anon_sym_DASH_DASH] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1011), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1011), + [sym_number] = ACTIONS(1011), + [sym_this] = ACTIONS(1013), + [sym_super] = ACTIONS(1013), + [sym_true] = ACTIONS(1013), + [sym_false] = ACTIONS(1013), + [sym_null] = ACTIONS(1013), + [sym_undefined] = ACTIONS(1013), + [anon_sym_AT] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1013), + [anon_sym_abstract] = ACTIONS(1013), + [anon_sym_get] = ACTIONS(1013), + [anon_sym_set] = ACTIONS(1013), + [anon_sym_declare] = ACTIONS(1013), + [anon_sym_public] = ACTIONS(1013), + [anon_sym_private] = ACTIONS(1013), + [anon_sym_protected] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_any] = ACTIONS(1013), + [anon_sym_number] = ACTIONS(1013), + [anon_sym_boolean] = ACTIONS(1013), + [anon_sym_string] = ACTIONS(1013), + [anon_sym_symbol] = ACTIONS(1013), + [anon_sym_interface] = ACTIONS(1013), + [anon_sym_enum] = ACTIONS(1013), + [sym_readonly] = ACTIONS(1013), + [sym__automatic_semicolon] = ACTIONS(1019), + }, + [524] = { + [ts_builtin_sym_end] = ACTIONS(921), + [sym_identifier] = ACTIONS(923), + [anon_sym_export] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_namespace] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_type] = ACTIONS(923), + [anon_sym_typeof] = ACTIONS(923), + [anon_sym_import] = ACTIONS(923), + [anon_sym_var] = ACTIONS(923), + [anon_sym_let] = ACTIONS(923), + [anon_sym_const] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_if] = ACTIONS(923), + [anon_sym_else] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_await] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_try] = ACTIONS(923), + [anon_sym_with] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_debugger] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_throw] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_case] = ACTIONS(923), + [anon_sym_yield] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_class] = ACTIONS(923), + [anon_sym_async] = ACTIONS(923), + [anon_sym_function] = ACTIONS(923), + [anon_sym_new] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_TILDE] = ACTIONS(921), + [anon_sym_void] = ACTIONS(923), + [anon_sym_delete] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(921), + [anon_sym_DASH_DASH] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(921), + [anon_sym_SQUOTE] = ACTIONS(921), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(921), + [sym_number] = ACTIONS(921), + [sym_this] = ACTIONS(923), + [sym_super] = ACTIONS(923), + [sym_true] = ACTIONS(923), + [sym_false] = ACTIONS(923), + [sym_null] = ACTIONS(923), + [sym_undefined] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(921), + [anon_sym_static] = ACTIONS(923), + [anon_sym_abstract] = ACTIONS(923), + [anon_sym_get] = ACTIONS(923), + [anon_sym_set] = ACTIONS(923), + [anon_sym_declare] = ACTIONS(923), + [anon_sym_public] = ACTIONS(923), + [anon_sym_private] = ACTIONS(923), + [anon_sym_protected] = ACTIONS(923), + [anon_sym_module] = ACTIONS(923), + [anon_sym_any] = ACTIONS(923), + [anon_sym_number] = ACTIONS(923), + [anon_sym_boolean] = ACTIONS(923), + [anon_sym_string] = ACTIONS(923), + [anon_sym_symbol] = ACTIONS(923), + [anon_sym_interface] = ACTIONS(923), + [anon_sym_enum] = ACTIONS(923), + [sym_readonly] = ACTIONS(923), + [sym__automatic_semicolon] = ACTIONS(929), + }, + [525] = { [ts_builtin_sym_end] = ACTIONS(1762), [sym_identifier] = ACTIONS(1764), [anon_sym_export] = ACTIONS(1764), @@ -60057,85 +60590,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1764), [sym_readonly] = ACTIONS(1764), }, - [522] = { - [sym_statement_block] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(893), - [sym_identifier] = ACTIONS(895), - [anon_sym_export] = ACTIONS(895), - [anon_sym_default] = ACTIONS(895), - [anon_sym_namespace] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_type] = ACTIONS(895), - [anon_sym_typeof] = ACTIONS(895), - [anon_sym_import] = ACTIONS(895), - [anon_sym_var] = ACTIONS(895), - [anon_sym_let] = ACTIONS(895), - [anon_sym_const] = ACTIONS(895), - [anon_sym_BANG] = ACTIONS(893), - [anon_sym_if] = ACTIONS(895), - [anon_sym_else] = ACTIONS(895), - [anon_sym_switch] = ACTIONS(895), - [anon_sym_for] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(893), - [anon_sym_await] = ACTIONS(895), - [anon_sym_while] = ACTIONS(895), - [anon_sym_do] = ACTIONS(895), - [anon_sym_try] = ACTIONS(895), - [anon_sym_with] = ACTIONS(895), - [anon_sym_break] = ACTIONS(895), - [anon_sym_continue] = ACTIONS(895), - [anon_sym_debugger] = ACTIONS(895), - [anon_sym_return] = ACTIONS(895), - [anon_sym_throw] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(893), - [anon_sym_case] = ACTIONS(895), - [anon_sym_yield] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_LT] = ACTIONS(893), - [anon_sym_SLASH] = ACTIONS(895), - [anon_sym_class] = ACTIONS(895), - [anon_sym_async] = ACTIONS(895), - [anon_sym_function] = ACTIONS(895), - [anon_sym_new] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_TILDE] = ACTIONS(893), - [anon_sym_void] = ACTIONS(895), - [anon_sym_delete] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(893), - [anon_sym_DASH_DASH] = ACTIONS(893), - [anon_sym_DQUOTE] = ACTIONS(893), - [anon_sym_SQUOTE] = ACTIONS(893), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(893), - [sym_number] = ACTIONS(893), - [sym_this] = ACTIONS(895), - [sym_super] = ACTIONS(895), - [sym_true] = ACTIONS(895), - [sym_false] = ACTIONS(895), - [sym_null] = ACTIONS(895), - [sym_undefined] = ACTIONS(895), - [anon_sym_AT] = ACTIONS(893), - [anon_sym_static] = ACTIONS(895), - [anon_sym_abstract] = ACTIONS(895), - [anon_sym_get] = ACTIONS(895), - [anon_sym_set] = ACTIONS(895), - [anon_sym_declare] = ACTIONS(895), - [anon_sym_public] = ACTIONS(895), - [anon_sym_private] = ACTIONS(895), - [anon_sym_protected] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_any] = ACTIONS(895), - [anon_sym_number] = ACTIONS(895), - [anon_sym_boolean] = ACTIONS(895), - [anon_sym_string] = ACTIONS(895), - [anon_sym_symbol] = ACTIONS(895), - [anon_sym_interface] = ACTIONS(895), - [anon_sym_enum] = ACTIONS(895), - [sym_readonly] = ACTIONS(895), - }, - [523] = { + [526] = { [ts_builtin_sym_end] = ACTIONS(1766), [sym_identifier] = ACTIONS(1768), [anon_sym_export] = ACTIONS(1768), @@ -60155,7 +60610,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1768), [anon_sym_for] = ACTIONS(1768), [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_RPAREN] = ACTIONS(1766), [anon_sym_await] = ACTIONS(1768), [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(1768), @@ -60168,6 +60622,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1768), [anon_sym_SEMI] = ACTIONS(1766), [anon_sym_case] = ACTIONS(1768), + [anon_sym_finally] = ACTIONS(1768), [anon_sym_yield] = ACTIONS(1768), [anon_sym_LBRACK] = ACTIONS(1766), [anon_sym_LT] = ACTIONS(1766), @@ -60213,475 +60668,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1768), [sym_readonly] = ACTIONS(1768), }, - [524] = { - [ts_builtin_sym_end] = ACTIONS(1059), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(1061), - [anon_sym_default] = ACTIONS(1061), - [anon_sym_namespace] = ACTIONS(1061), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_RBRACE] = ACTIONS(1059), - [anon_sym_type] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(1061), - [anon_sym_import] = ACTIONS(1061), - [anon_sym_var] = ACTIONS(1061), - [anon_sym_let] = ACTIONS(1061), - [anon_sym_const] = ACTIONS(1061), - [anon_sym_BANG] = ACTIONS(1059), - [anon_sym_if] = ACTIONS(1061), - [anon_sym_else] = ACTIONS(1061), - [anon_sym_switch] = ACTIONS(1061), - [anon_sym_for] = ACTIONS(1061), - [anon_sym_LPAREN] = ACTIONS(1059), - [anon_sym_await] = ACTIONS(1061), - [anon_sym_while] = ACTIONS(1061), - [anon_sym_do] = ACTIONS(1061), - [anon_sym_try] = ACTIONS(1061), - [anon_sym_with] = ACTIONS(1061), - [anon_sym_break] = ACTIONS(1061), - [anon_sym_continue] = ACTIONS(1061), - [anon_sym_debugger] = ACTIONS(1061), - [anon_sym_return] = ACTIONS(1061), - [anon_sym_throw] = ACTIONS(1061), - [anon_sym_SEMI] = ACTIONS(1059), - [anon_sym_case] = ACTIONS(1061), - [anon_sym_yield] = ACTIONS(1061), - [anon_sym_LBRACK] = ACTIONS(1059), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_SLASH] = ACTIONS(1061), - [anon_sym_class] = ACTIONS(1061), - [anon_sym_async] = ACTIONS(1061), - [anon_sym_function] = ACTIONS(1061), - [anon_sym_new] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1061), - [anon_sym_DASH] = ACTIONS(1061), - [anon_sym_TILDE] = ACTIONS(1059), - [anon_sym_void] = ACTIONS(1061), - [anon_sym_delete] = ACTIONS(1061), - [anon_sym_PLUS_PLUS] = ACTIONS(1059), - [anon_sym_DASH_DASH] = ACTIONS(1059), - [anon_sym_DQUOTE] = ACTIONS(1059), - [anon_sym_SQUOTE] = ACTIONS(1059), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1059), - [sym_number] = ACTIONS(1059), - [sym_this] = ACTIONS(1061), - [sym_super] = ACTIONS(1061), - [sym_true] = ACTIONS(1061), - [sym_false] = ACTIONS(1061), - [sym_null] = ACTIONS(1061), - [sym_undefined] = ACTIONS(1061), - [anon_sym_AT] = ACTIONS(1059), - [anon_sym_static] = ACTIONS(1061), - [anon_sym_abstract] = ACTIONS(1061), - [anon_sym_get] = ACTIONS(1061), - [anon_sym_set] = ACTIONS(1061), - [anon_sym_declare] = ACTIONS(1061), - [anon_sym_public] = ACTIONS(1061), - [anon_sym_private] = ACTIONS(1061), - [anon_sym_protected] = ACTIONS(1061), - [anon_sym_module] = ACTIONS(1061), - [anon_sym_any] = ACTIONS(1061), - [anon_sym_number] = ACTIONS(1061), - [anon_sym_boolean] = ACTIONS(1061), - [anon_sym_string] = ACTIONS(1061), - [anon_sym_symbol] = ACTIONS(1061), - [anon_sym_interface] = ACTIONS(1061), - [anon_sym_enum] = ACTIONS(1061), - [sym_readonly] = ACTIONS(1061), - [sym__automatic_semicolon] = ACTIONS(1067), - }, - [525] = { - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1772), - [anon_sym_export] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_namespace] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_typeof] = ACTIONS(1772), - [anon_sym_import] = ACTIONS(1772), - [anon_sym_var] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_else] = ACTIONS(1772), - [anon_sym_switch] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_await] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_do] = ACTIONS(1772), - [anon_sym_try] = ACTIONS(1772), - [anon_sym_with] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_debugger] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_throw] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_case] = ACTIONS(1772), - [anon_sym_finally] = ACTIONS(1772), - [anon_sym_yield] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_class] = ACTIONS(1772), - [anon_sym_async] = ACTIONS(1772), - [anon_sym_function] = ACTIONS(1772), - [anon_sym_new] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1770), - [anon_sym_void] = ACTIONS(1772), - [anon_sym_delete] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_SQUOTE] = ACTIONS(1770), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1770), - [sym_number] = ACTIONS(1770), - [sym_this] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_true] = ACTIONS(1772), - [sym_false] = ACTIONS(1772), - [sym_null] = ACTIONS(1772), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_abstract] = ACTIONS(1772), - [anon_sym_get] = ACTIONS(1772), - [anon_sym_set] = ACTIONS(1772), - [anon_sym_declare] = ACTIONS(1772), - [anon_sym_public] = ACTIONS(1772), - [anon_sym_private] = ACTIONS(1772), - [anon_sym_protected] = ACTIONS(1772), - [anon_sym_module] = ACTIONS(1772), - [anon_sym_any] = ACTIONS(1772), - [anon_sym_number] = ACTIONS(1772), - [anon_sym_boolean] = ACTIONS(1772), - [anon_sym_string] = ACTIONS(1772), - [anon_sym_symbol] = ACTIONS(1772), - [anon_sym_interface] = ACTIONS(1772), - [anon_sym_enum] = ACTIONS(1772), - [sym_readonly] = ACTIONS(1772), - }, - [526] = { - [ts_builtin_sym_end] = ACTIONS(1041), - [sym_identifier] = ACTIONS(1043), - [anon_sym_export] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_namespace] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1041), - [anon_sym_RBRACE] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1043), - [anon_sym_typeof] = ACTIONS(1043), - [anon_sym_import] = ACTIONS(1043), - [anon_sym_var] = ACTIONS(1043), - [anon_sym_let] = ACTIONS(1043), - [anon_sym_const] = ACTIONS(1043), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(1043), - [anon_sym_for] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1041), - [anon_sym_await] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1043), - [anon_sym_try] = ACTIONS(1043), - [anon_sym_with] = ACTIONS(1043), - [anon_sym_break] = ACTIONS(1043), - [anon_sym_continue] = ACTIONS(1043), - [anon_sym_debugger] = ACTIONS(1043), - [anon_sym_return] = ACTIONS(1043), - [anon_sym_throw] = ACTIONS(1043), - [anon_sym_SEMI] = ACTIONS(1041), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_yield] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1043), - [anon_sym_class] = ACTIONS(1043), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_function] = ACTIONS(1043), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_void] = ACTIONS(1043), - [anon_sym_delete] = ACTIONS(1043), - [anon_sym_PLUS_PLUS] = ACTIONS(1041), - [anon_sym_DASH_DASH] = ACTIONS(1041), - [anon_sym_DQUOTE] = ACTIONS(1041), - [anon_sym_SQUOTE] = ACTIONS(1041), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1041), - [sym_number] = ACTIONS(1041), - [sym_this] = ACTIONS(1043), - [sym_super] = ACTIONS(1043), - [sym_true] = ACTIONS(1043), - [sym_false] = ACTIONS(1043), - [sym_null] = ACTIONS(1043), - [sym_undefined] = ACTIONS(1043), - [anon_sym_AT] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_abstract] = ACTIONS(1043), - [anon_sym_get] = ACTIONS(1043), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(1043), - [anon_sym_public] = ACTIONS(1043), - [anon_sym_private] = ACTIONS(1043), - [anon_sym_protected] = ACTIONS(1043), - [anon_sym_module] = ACTIONS(1043), - [anon_sym_any] = ACTIONS(1043), - [anon_sym_number] = ACTIONS(1043), - [anon_sym_boolean] = ACTIONS(1043), - [anon_sym_string] = ACTIONS(1043), - [anon_sym_symbol] = ACTIONS(1043), - [anon_sym_interface] = ACTIONS(1043), - [anon_sym_enum] = ACTIONS(1043), - [sym_readonly] = ACTIONS(1043), - [sym__automatic_semicolon] = ACTIONS(1049), - }, [527] = { - [ts_builtin_sym_end] = ACTIONS(959), - [sym_identifier] = ACTIONS(961), - [anon_sym_export] = ACTIONS(961), - [anon_sym_default] = ACTIONS(961), - [anon_sym_namespace] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_type] = ACTIONS(961), - [anon_sym_typeof] = ACTIONS(961), - [anon_sym_import] = ACTIONS(961), - [anon_sym_var] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_if] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_switch] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_await] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_try] = ACTIONS(961), - [anon_sym_with] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_debugger] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_throw] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_case] = ACTIONS(961), - [anon_sym_yield] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(961), - [anon_sym_class] = ACTIONS(961), - [anon_sym_async] = ACTIONS(961), - [anon_sym_function] = ACTIONS(961), - [anon_sym_new] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(959), - [anon_sym_void] = ACTIONS(961), - [anon_sym_delete] = ACTIONS(961), - [anon_sym_PLUS_PLUS] = ACTIONS(959), - [anon_sym_DASH_DASH] = ACTIONS(959), - [anon_sym_DQUOTE] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(959), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(959), - [sym_number] = ACTIONS(959), - [sym_this] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - [sym_null] = ACTIONS(961), - [sym_undefined] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(959), - [anon_sym_static] = ACTIONS(961), - [anon_sym_abstract] = ACTIONS(961), - [anon_sym_get] = ACTIONS(961), - [anon_sym_set] = ACTIONS(961), - [anon_sym_declare] = ACTIONS(961), - [anon_sym_public] = ACTIONS(961), - [anon_sym_private] = ACTIONS(961), - [anon_sym_protected] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_any] = ACTIONS(961), - [anon_sym_number] = ACTIONS(961), - [anon_sym_boolean] = ACTIONS(961), - [anon_sym_string] = ACTIONS(961), - [anon_sym_symbol] = ACTIONS(961), - [anon_sym_interface] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [sym_readonly] = ACTIONS(961), - [sym__automatic_semicolon] = ACTIONS(967), - }, - [528] = { - [ts_builtin_sym_end] = ACTIONS(979), - [sym_identifier] = ACTIONS(981), - [anon_sym_export] = ACTIONS(981), - [anon_sym_default] = ACTIONS(981), - [anon_sym_namespace] = ACTIONS(981), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_type] = ACTIONS(981), - [anon_sym_typeof] = ACTIONS(981), - [anon_sym_import] = ACTIONS(981), - [anon_sym_var] = ACTIONS(981), - [anon_sym_let] = ACTIONS(981), - [anon_sym_const] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_if] = ACTIONS(981), - [anon_sym_else] = ACTIONS(981), - [anon_sym_switch] = ACTIONS(981), - [anon_sym_for] = ACTIONS(981), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_await] = ACTIONS(981), - [anon_sym_while] = ACTIONS(981), - [anon_sym_do] = ACTIONS(981), - [anon_sym_try] = ACTIONS(981), - [anon_sym_with] = ACTIONS(981), - [anon_sym_break] = ACTIONS(981), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_debugger] = ACTIONS(981), - [anon_sym_return] = ACTIONS(981), - [anon_sym_throw] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_case] = ACTIONS(981), - [anon_sym_yield] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(981), - [anon_sym_class] = ACTIONS(981), - [anon_sym_async] = ACTIONS(981), - [anon_sym_function] = ACTIONS(981), - [anon_sym_new] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_TILDE] = ACTIONS(979), - [anon_sym_void] = ACTIONS(981), - [anon_sym_delete] = ACTIONS(981), - [anon_sym_PLUS_PLUS] = ACTIONS(979), - [anon_sym_DASH_DASH] = ACTIONS(979), - [anon_sym_DQUOTE] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(979), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(979), - [sym_number] = ACTIONS(979), - [sym_this] = ACTIONS(981), - [sym_super] = ACTIONS(981), - [sym_true] = ACTIONS(981), - [sym_false] = ACTIONS(981), - [sym_null] = ACTIONS(981), - [sym_undefined] = ACTIONS(981), - [anon_sym_AT] = ACTIONS(979), - [anon_sym_static] = ACTIONS(981), - [anon_sym_abstract] = ACTIONS(981), - [anon_sym_get] = ACTIONS(981), - [anon_sym_set] = ACTIONS(981), - [anon_sym_declare] = ACTIONS(981), - [anon_sym_public] = ACTIONS(981), - [anon_sym_private] = ACTIONS(981), - [anon_sym_protected] = ACTIONS(981), - [anon_sym_module] = ACTIONS(981), - [anon_sym_any] = ACTIONS(981), - [anon_sym_number] = ACTIONS(981), - [anon_sym_boolean] = ACTIONS(981), - [anon_sym_string] = ACTIONS(981), - [anon_sym_symbol] = ACTIONS(981), - [anon_sym_interface] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(981), - [sym_readonly] = ACTIONS(981), - [sym__automatic_semicolon] = ACTIONS(987), - }, - [529] = { - [ts_builtin_sym_end] = ACTIONS(989), - [sym_identifier] = ACTIONS(991), - [anon_sym_export] = ACTIONS(991), - [anon_sym_default] = ACTIONS(991), - [anon_sym_namespace] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(989), - [anon_sym_RBRACE] = ACTIONS(989), - [anon_sym_type] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(991), - [anon_sym_import] = ACTIONS(991), - [anon_sym_var] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_if] = ACTIONS(991), - [anon_sym_else] = ACTIONS(991), - [anon_sym_switch] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(989), - [anon_sym_await] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [anon_sym_do] = ACTIONS(991), - [anon_sym_try] = ACTIONS(991), - [anon_sym_with] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_debugger] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_throw] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(989), - [anon_sym_case] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_class] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_function] = ACTIONS(991), - [anon_sym_new] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(989), - [anon_sym_void] = ACTIONS(991), - [anon_sym_delete] = ACTIONS(991), - [anon_sym_PLUS_PLUS] = ACTIONS(989), - [anon_sym_DASH_DASH] = ACTIONS(989), - [anon_sym_DQUOTE] = ACTIONS(989), - [anon_sym_SQUOTE] = ACTIONS(989), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(989), - [sym_number] = ACTIONS(989), - [sym_this] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_true] = ACTIONS(991), - [sym_false] = ACTIONS(991), - [sym_null] = ACTIONS(991), - [sym_undefined] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(989), - [anon_sym_static] = ACTIONS(991), - [anon_sym_abstract] = ACTIONS(991), - [anon_sym_get] = ACTIONS(991), - [anon_sym_set] = ACTIONS(991), - [anon_sym_declare] = ACTIONS(991), - [anon_sym_public] = ACTIONS(991), - [anon_sym_private] = ACTIONS(991), - [anon_sym_protected] = ACTIONS(991), - [anon_sym_module] = ACTIONS(991), - [anon_sym_any] = ACTIONS(991), - [anon_sym_number] = ACTIONS(991), - [anon_sym_boolean] = ACTIONS(991), - [anon_sym_string] = ACTIONS(991), - [anon_sym_symbol] = ACTIONS(991), - [anon_sym_interface] = ACTIONS(991), - [anon_sym_enum] = ACTIONS(991), - [sym_readonly] = ACTIONS(991), - [sym__automatic_semicolon] = ACTIONS(997), - }, - [530] = { [ts_builtin_sym_end] = ACTIONS(969), [sym_identifier] = ACTIONS(971), [anon_sym_export] = ACTIONS(971), @@ -60759,161 +60746,395 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(971), [sym__automatic_semicolon] = ACTIONS(977), }, - [531] = { - [ts_builtin_sym_end] = ACTIONS(911), - [sym_identifier] = ACTIONS(913), - [anon_sym_export] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_namespace] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_type] = ACTIONS(913), - [anon_sym_typeof] = ACTIONS(913), - [anon_sym_import] = ACTIONS(913), - [anon_sym_var] = ACTIONS(913), - [anon_sym_let] = ACTIONS(913), - [anon_sym_const] = ACTIONS(913), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_if] = ACTIONS(913), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(913), - [anon_sym_for] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_await] = ACTIONS(913), - [anon_sym_while] = ACTIONS(913), - [anon_sym_do] = ACTIONS(913), - [anon_sym_try] = ACTIONS(913), - [anon_sym_with] = ACTIONS(913), - [anon_sym_break] = ACTIONS(913), - [anon_sym_continue] = ACTIONS(913), - [anon_sym_debugger] = ACTIONS(913), - [anon_sym_return] = ACTIONS(913), - [anon_sym_throw] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_case] = ACTIONS(913), - [anon_sym_yield] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(913), - [anon_sym_class] = ACTIONS(913), - [anon_sym_async] = ACTIONS(913), - [anon_sym_function] = ACTIONS(913), - [anon_sym_new] = ACTIONS(913), - [anon_sym_PLUS] = ACTIONS(913), - [anon_sym_DASH] = ACTIONS(913), - [anon_sym_TILDE] = ACTIONS(911), - [anon_sym_void] = ACTIONS(913), - [anon_sym_delete] = ACTIONS(913), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_DASH_DASH] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(911), + [528] = { + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1772), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_namespace] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_typeof] = ACTIONS(1772), + [anon_sym_import] = ACTIONS(1772), + [anon_sym_var] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_await] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_with] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_debugger] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_throw] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_case] = ACTIONS(1772), + [anon_sym_finally] = ACTIONS(1772), + [anon_sym_yield] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1772), + [anon_sym_class] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_function] = ACTIONS(1772), + [anon_sym_new] = ACTIONS(1772), + [anon_sym_PLUS] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_TILDE] = ACTIONS(1770), + [anon_sym_void] = ACTIONS(1772), + [anon_sym_delete] = ACTIONS(1772), + [anon_sym_PLUS_PLUS] = ACTIONS(1770), + [anon_sym_DASH_DASH] = ACTIONS(1770), + [anon_sym_DQUOTE] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(911), - [sym_number] = ACTIONS(911), - [sym_this] = ACTIONS(913), - [sym_super] = ACTIONS(913), - [sym_true] = ACTIONS(913), - [sym_false] = ACTIONS(913), - [sym_null] = ACTIONS(913), - [sym_undefined] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(911), - [anon_sym_static] = ACTIONS(913), - [anon_sym_abstract] = ACTIONS(913), - [anon_sym_get] = ACTIONS(913), - [anon_sym_set] = ACTIONS(913), - [anon_sym_declare] = ACTIONS(913), - [anon_sym_public] = ACTIONS(913), - [anon_sym_private] = ACTIONS(913), - [anon_sym_protected] = ACTIONS(913), - [anon_sym_module] = ACTIONS(913), - [anon_sym_any] = ACTIONS(913), - [anon_sym_number] = ACTIONS(913), - [anon_sym_boolean] = ACTIONS(913), - [anon_sym_string] = ACTIONS(913), - [anon_sym_symbol] = ACTIONS(913), - [anon_sym_interface] = ACTIONS(913), - [anon_sym_enum] = ACTIONS(913), - [sym_readonly] = ACTIONS(913), - [sym__automatic_semicolon] = ACTIONS(919), + [anon_sym_BQUOTE] = ACTIONS(1770), + [sym_number] = ACTIONS(1770), + [sym_this] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_true] = ACTIONS(1772), + [sym_false] = ACTIONS(1772), + [sym_null] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_abstract] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(1772), + [anon_sym_set] = ACTIONS(1772), + [anon_sym_declare] = ACTIONS(1772), + [anon_sym_public] = ACTIONS(1772), + [anon_sym_private] = ACTIONS(1772), + [anon_sym_protected] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_any] = ACTIONS(1772), + [anon_sym_number] = ACTIONS(1772), + [anon_sym_boolean] = ACTIONS(1772), + [anon_sym_string] = ACTIONS(1772), + [anon_sym_symbol] = ACTIONS(1772), + [anon_sym_interface] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [sym_readonly] = ACTIONS(1772), + }, + [529] = { + [ts_builtin_sym_end] = ACTIONS(951), + [sym_identifier] = ACTIONS(953), + [anon_sym_export] = ACTIONS(953), + [anon_sym_default] = ACTIONS(953), + [anon_sym_namespace] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(951), + [anon_sym_RBRACE] = ACTIONS(951), + [anon_sym_type] = ACTIONS(953), + [anon_sym_typeof] = ACTIONS(953), + [anon_sym_import] = ACTIONS(953), + [anon_sym_var] = ACTIONS(953), + [anon_sym_let] = ACTIONS(953), + [anon_sym_const] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_if] = ACTIONS(953), + [anon_sym_else] = ACTIONS(953), + [anon_sym_switch] = ACTIONS(953), + [anon_sym_for] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_await] = ACTIONS(953), + [anon_sym_while] = ACTIONS(953), + [anon_sym_do] = ACTIONS(953), + [anon_sym_try] = ACTIONS(953), + [anon_sym_with] = ACTIONS(953), + [anon_sym_break] = ACTIONS(953), + [anon_sym_continue] = ACTIONS(953), + [anon_sym_debugger] = ACTIONS(953), + [anon_sym_return] = ACTIONS(953), + [anon_sym_throw] = ACTIONS(953), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_case] = ACTIONS(953), + [anon_sym_yield] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(953), + [anon_sym_class] = ACTIONS(953), + [anon_sym_async] = ACTIONS(953), + [anon_sym_function] = ACTIONS(953), + [anon_sym_new] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(953), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_TILDE] = ACTIONS(951), + [anon_sym_void] = ACTIONS(953), + [anon_sym_delete] = ACTIONS(953), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_DASH_DASH] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [anon_sym_SQUOTE] = ACTIONS(951), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(951), + [sym_number] = ACTIONS(951), + [sym_this] = ACTIONS(953), + [sym_super] = ACTIONS(953), + [sym_true] = ACTIONS(953), + [sym_false] = ACTIONS(953), + [sym_null] = ACTIONS(953), + [sym_undefined] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(951), + [anon_sym_static] = ACTIONS(953), + [anon_sym_abstract] = ACTIONS(953), + [anon_sym_get] = ACTIONS(953), + [anon_sym_set] = ACTIONS(953), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_public] = ACTIONS(953), + [anon_sym_private] = ACTIONS(953), + [anon_sym_protected] = ACTIONS(953), + [anon_sym_module] = ACTIONS(953), + [anon_sym_any] = ACTIONS(953), + [anon_sym_number] = ACTIONS(953), + [anon_sym_boolean] = ACTIONS(953), + [anon_sym_string] = ACTIONS(953), + [anon_sym_symbol] = ACTIONS(953), + [anon_sym_interface] = ACTIONS(953), + [anon_sym_enum] = ACTIONS(953), + [sym_readonly] = ACTIONS(953), + [sym__automatic_semicolon] = ACTIONS(959), + }, + [530] = { + [ts_builtin_sym_end] = ACTIONS(931), + [sym_identifier] = ACTIONS(933), + [anon_sym_export] = ACTIONS(933), + [anon_sym_default] = ACTIONS(933), + [anon_sym_namespace] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_type] = ACTIONS(933), + [anon_sym_typeof] = ACTIONS(933), + [anon_sym_import] = ACTIONS(933), + [anon_sym_var] = ACTIONS(933), + [anon_sym_let] = ACTIONS(933), + [anon_sym_const] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_if] = ACTIONS(933), + [anon_sym_else] = ACTIONS(933), + [anon_sym_switch] = ACTIONS(933), + [anon_sym_for] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_await] = ACTIONS(933), + [anon_sym_while] = ACTIONS(933), + [anon_sym_do] = ACTIONS(933), + [anon_sym_try] = ACTIONS(933), + [anon_sym_with] = ACTIONS(933), + [anon_sym_break] = ACTIONS(933), + [anon_sym_continue] = ACTIONS(933), + [anon_sym_debugger] = ACTIONS(933), + [anon_sym_return] = ACTIONS(933), + [anon_sym_throw] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_case] = ACTIONS(933), + [anon_sym_yield] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(933), + [anon_sym_class] = ACTIONS(933), + [anon_sym_async] = ACTIONS(933), + [anon_sym_function] = ACTIONS(933), + [anon_sym_new] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(933), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_TILDE] = ACTIONS(931), + [anon_sym_void] = ACTIONS(933), + [anon_sym_delete] = ACTIONS(933), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(931), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(931), + [sym_number] = ACTIONS(931), + [sym_this] = ACTIONS(933), + [sym_super] = ACTIONS(933), + [sym_true] = ACTIONS(933), + [sym_false] = ACTIONS(933), + [sym_null] = ACTIONS(933), + [sym_undefined] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(931), + [anon_sym_static] = ACTIONS(933), + [anon_sym_abstract] = ACTIONS(933), + [anon_sym_get] = ACTIONS(933), + [anon_sym_set] = ACTIONS(933), + [anon_sym_declare] = ACTIONS(933), + [anon_sym_public] = ACTIONS(933), + [anon_sym_private] = ACTIONS(933), + [anon_sym_protected] = ACTIONS(933), + [anon_sym_module] = ACTIONS(933), + [anon_sym_any] = ACTIONS(933), + [anon_sym_number] = ACTIONS(933), + [anon_sym_boolean] = ACTIONS(933), + [anon_sym_string] = ACTIONS(933), + [anon_sym_symbol] = ACTIONS(933), + [anon_sym_interface] = ACTIONS(933), + [anon_sym_enum] = ACTIONS(933), + [sym_readonly] = ACTIONS(933), + [sym__automatic_semicolon] = ACTIONS(939), + }, + [531] = { + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_identifier] = ACTIONS(1051), + [anon_sym_export] = ACTIONS(1051), + [anon_sym_default] = ACTIONS(1051), + [anon_sym_namespace] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1051), + [anon_sym_typeof] = ACTIONS(1051), + [anon_sym_import] = ACTIONS(1051), + [anon_sym_var] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(1051), + [anon_sym_const] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1051), + [anon_sym_else] = ACTIONS(1051), + [anon_sym_switch] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1051), + [anon_sym_while] = ACTIONS(1051), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_try] = ACTIONS(1051), + [anon_sym_with] = ACTIONS(1051), + [anon_sym_break] = ACTIONS(1051), + [anon_sym_continue] = ACTIONS(1051), + [anon_sym_debugger] = ACTIONS(1051), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_throw] = ACTIONS(1051), + [anon_sym_SEMI] = ACTIONS(1049), + [anon_sym_case] = ACTIONS(1051), + [anon_sym_yield] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1051), + [anon_sym_class] = ACTIONS(1051), + [anon_sym_async] = ACTIONS(1051), + [anon_sym_function] = ACTIONS(1051), + [anon_sym_new] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1051), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_TILDE] = ACTIONS(1049), + [anon_sym_void] = ACTIONS(1051), + [anon_sym_delete] = ACTIONS(1051), + [anon_sym_PLUS_PLUS] = ACTIONS(1049), + [anon_sym_DASH_DASH] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1049), + [sym_number] = ACTIONS(1049), + [sym_this] = ACTIONS(1051), + [sym_super] = ACTIONS(1051), + [sym_true] = ACTIONS(1051), + [sym_false] = ACTIONS(1051), + [sym_null] = ACTIONS(1051), + [sym_undefined] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1051), + [anon_sym_abstract] = ACTIONS(1051), + [anon_sym_get] = ACTIONS(1051), + [anon_sym_set] = ACTIONS(1051), + [anon_sym_declare] = ACTIONS(1051), + [anon_sym_public] = ACTIONS(1051), + [anon_sym_private] = ACTIONS(1051), + [anon_sym_protected] = ACTIONS(1051), + [anon_sym_module] = ACTIONS(1051), + [anon_sym_any] = ACTIONS(1051), + [anon_sym_number] = ACTIONS(1051), + [anon_sym_boolean] = ACTIONS(1051), + [anon_sym_string] = ACTIONS(1051), + [anon_sym_symbol] = ACTIONS(1051), + [anon_sym_interface] = ACTIONS(1051), + [anon_sym_enum] = ACTIONS(1051), + [sym_readonly] = ACTIONS(1051), + [sym__automatic_semicolon] = ACTIONS(1057), }, [532] = { - [ts_builtin_sym_end] = ACTIONS(925), - [sym_identifier] = ACTIONS(927), - [anon_sym_export] = ACTIONS(927), - [anon_sym_default] = ACTIONS(927), - [anon_sym_namespace] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_type] = ACTIONS(927), - [anon_sym_typeof] = ACTIONS(927), - [anon_sym_import] = ACTIONS(927), - [anon_sym_var] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_if] = ACTIONS(927), - [anon_sym_else] = ACTIONS(927), - [anon_sym_switch] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_await] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [anon_sym_do] = ACTIONS(927), - [anon_sym_try] = ACTIONS(927), - [anon_sym_with] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_debugger] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_throw] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_case] = ACTIONS(927), - [anon_sym_yield] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_LT] = ACTIONS(925), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_class] = ACTIONS(927), - [anon_sym_async] = ACTIONS(927), - [anon_sym_function] = ACTIONS(927), - [anon_sym_new] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_TILDE] = ACTIONS(925), - [anon_sym_void] = ACTIONS(927), - [anon_sym_delete] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(925), - [anon_sym_DASH_DASH] = ACTIONS(925), - [anon_sym_DQUOTE] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(925), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(925), - [sym_number] = ACTIONS(925), - [sym_this] = ACTIONS(927), - [sym_super] = ACTIONS(927), - [sym_true] = ACTIONS(927), - [sym_false] = ACTIONS(927), - [sym_null] = ACTIONS(927), - [sym_undefined] = ACTIONS(927), - [anon_sym_AT] = ACTIONS(925), - [anon_sym_static] = ACTIONS(927), - [anon_sym_abstract] = ACTIONS(927), - [anon_sym_get] = ACTIONS(927), - [anon_sym_set] = ACTIONS(927), - [anon_sym_declare] = ACTIONS(927), - [anon_sym_public] = ACTIONS(927), - [anon_sym_private] = ACTIONS(927), - [anon_sym_protected] = ACTIONS(927), - [anon_sym_module] = ACTIONS(927), - [anon_sym_any] = ACTIONS(927), - [anon_sym_number] = ACTIONS(927), - [anon_sym_boolean] = ACTIONS(927), - [anon_sym_string] = ACTIONS(927), - [anon_sym_symbol] = ACTIONS(927), - [anon_sym_interface] = ACTIONS(927), - [anon_sym_enum] = ACTIONS(927), - [sym_readonly] = ACTIONS(927), - [sym__automatic_semicolon] = ACTIONS(933), + [ts_builtin_sym_end] = ACTIONS(941), + [sym_identifier] = ACTIONS(943), + [anon_sym_export] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_namespace] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_type] = ACTIONS(943), + [anon_sym_typeof] = ACTIONS(943), + [anon_sym_import] = ACTIONS(943), + [anon_sym_var] = ACTIONS(943), + [anon_sym_let] = ACTIONS(943), + [anon_sym_const] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_if] = ACTIONS(943), + [anon_sym_else] = ACTIONS(943), + [anon_sym_switch] = ACTIONS(943), + [anon_sym_for] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_await] = ACTIONS(943), + [anon_sym_while] = ACTIONS(943), + [anon_sym_do] = ACTIONS(943), + [anon_sym_try] = ACTIONS(943), + [anon_sym_with] = ACTIONS(943), + [anon_sym_break] = ACTIONS(943), + [anon_sym_continue] = ACTIONS(943), + [anon_sym_debugger] = ACTIONS(943), + [anon_sym_return] = ACTIONS(943), + [anon_sym_throw] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_case] = ACTIONS(943), + [anon_sym_yield] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(943), + [anon_sym_class] = ACTIONS(943), + [anon_sym_async] = ACTIONS(943), + [anon_sym_function] = ACTIONS(943), + [anon_sym_new] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_TILDE] = ACTIONS(941), + [anon_sym_void] = ACTIONS(943), + [anon_sym_delete] = ACTIONS(943), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [anon_sym_SQUOTE] = ACTIONS(941), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(941), + [sym_number] = ACTIONS(941), + [sym_this] = ACTIONS(943), + [sym_super] = ACTIONS(943), + [sym_true] = ACTIONS(943), + [sym_false] = ACTIONS(943), + [sym_null] = ACTIONS(943), + [sym_undefined] = ACTIONS(943), + [anon_sym_AT] = ACTIONS(941), + [anon_sym_static] = ACTIONS(943), + [anon_sym_abstract] = ACTIONS(943), + [anon_sym_get] = ACTIONS(943), + [anon_sym_set] = ACTIONS(943), + [anon_sym_declare] = ACTIONS(943), + [anon_sym_public] = ACTIONS(943), + [anon_sym_private] = ACTIONS(943), + [anon_sym_protected] = ACTIONS(943), + [anon_sym_module] = ACTIONS(943), + [anon_sym_any] = ACTIONS(943), + [anon_sym_number] = ACTIONS(943), + [anon_sym_boolean] = ACTIONS(943), + [anon_sym_string] = ACTIONS(943), + [anon_sym_symbol] = ACTIONS(943), + [anon_sym_interface] = ACTIONS(943), + [anon_sym_enum] = ACTIONS(943), + [sym_readonly] = ACTIONS(943), + [sym__automatic_semicolon] = ACTIONS(949), }, [533] = { [ts_builtin_sym_end] = ACTIONS(1774), @@ -61686,83 +61907,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(1812), }, [543] = { - [ts_builtin_sym_end] = ACTIONS(1055), - [sym_identifier] = ACTIONS(1057), - [anon_sym_export] = ACTIONS(1057), - [anon_sym_default] = ACTIONS(1057), - [anon_sym_namespace] = ACTIONS(1057), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_type] = ACTIONS(1057), - [anon_sym_typeof] = ACTIONS(1057), - [anon_sym_import] = ACTIONS(1057), - [anon_sym_var] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(1057), - [anon_sym_const] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_if] = ACTIONS(1057), - [anon_sym_else] = ACTIONS(1057), - [anon_sym_switch] = ACTIONS(1057), - [anon_sym_for] = ACTIONS(1057), - [anon_sym_LPAREN] = ACTIONS(1055), - [anon_sym_await] = ACTIONS(1057), - [anon_sym_while] = ACTIONS(1057), - [anon_sym_do] = ACTIONS(1057), - [anon_sym_try] = ACTIONS(1057), - [anon_sym_with] = ACTIONS(1057), - [anon_sym_break] = ACTIONS(1057), - [anon_sym_continue] = ACTIONS(1057), - [anon_sym_debugger] = ACTIONS(1057), - [anon_sym_return] = ACTIONS(1057), - [anon_sym_throw] = ACTIONS(1057), - [anon_sym_SEMI] = ACTIONS(1055), - [anon_sym_case] = ACTIONS(1057), - [anon_sym_yield] = ACTIONS(1057), - [anon_sym_LBRACK] = ACTIONS(1055), - [anon_sym_LT] = ACTIONS(1055), - [anon_sym_SLASH] = ACTIONS(1057), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_async] = ACTIONS(1057), - [anon_sym_function] = ACTIONS(1057), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_PLUS] = ACTIONS(1057), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_TILDE] = ACTIONS(1055), - [anon_sym_void] = ACTIONS(1057), - [anon_sym_delete] = ACTIONS(1057), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_DQUOTE] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1055), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1055), - [sym_number] = ACTIONS(1055), - [sym_this] = ACTIONS(1057), - [sym_super] = ACTIONS(1057), - [sym_true] = ACTIONS(1057), - [sym_false] = ACTIONS(1057), - [sym_null] = ACTIONS(1057), - [sym_undefined] = ACTIONS(1057), - [anon_sym_AT] = ACTIONS(1055), - [anon_sym_static] = ACTIONS(1057), - [anon_sym_abstract] = ACTIONS(1057), - [anon_sym_get] = ACTIONS(1057), - [anon_sym_set] = ACTIONS(1057), - [anon_sym_declare] = ACTIONS(1057), - [anon_sym_public] = ACTIONS(1057), - [anon_sym_private] = ACTIONS(1057), - [anon_sym_protected] = ACTIONS(1057), - [anon_sym_module] = ACTIONS(1057), - [anon_sym_any] = ACTIONS(1057), - [anon_sym_number] = ACTIONS(1057), - [anon_sym_boolean] = ACTIONS(1057), - [anon_sym_string] = ACTIONS(1057), - [anon_sym_symbol] = ACTIONS(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1057), - [sym_readonly] = ACTIONS(1057), - }, - [544] = { [ts_builtin_sym_end] = ACTIONS(1814), [sym_identifier] = ACTIONS(1816), [anon_sym_export] = ACTIONS(1816), @@ -61839,7 +61983,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1816), [sym_readonly] = ACTIONS(1816), }, - [545] = { + [544] = { [ts_builtin_sym_end] = ACTIONS(1818), [sym_identifier] = ACTIONS(1820), [anon_sym_export] = ACTIONS(1820), @@ -61916,7 +62060,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1820), [sym_readonly] = ACTIONS(1820), }, - [546] = { + [545] = { [ts_builtin_sym_end] = ACTIONS(1822), [sym_identifier] = ACTIONS(1824), [anon_sym_export] = ACTIONS(1824), @@ -61993,7 +62137,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1824), [sym_readonly] = ACTIONS(1824), }, - [547] = { + [546] = { [ts_builtin_sym_end] = ACTIONS(1826), [sym_identifier] = ACTIONS(1828), [anon_sym_export] = ACTIONS(1828), @@ -62070,7 +62214,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1828), [sym_readonly] = ACTIONS(1828), }, - [548] = { + [547] = { [ts_builtin_sym_end] = ACTIONS(1830), [sym_identifier] = ACTIONS(1832), [anon_sym_export] = ACTIONS(1832), @@ -62147,7 +62291,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1832), [sym_readonly] = ACTIONS(1832), }, - [549] = { + [548] = { [ts_builtin_sym_end] = ACTIONS(1834), [sym_identifier] = ACTIONS(1836), [anon_sym_export] = ACTIONS(1836), @@ -62224,7 +62368,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1836), [sym_readonly] = ACTIONS(1836), }, - [550] = { + [549] = { [ts_builtin_sym_end] = ACTIONS(1838), [sym_identifier] = ACTIONS(1840), [anon_sym_export] = ACTIONS(1840), @@ -62301,7 +62445,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1840), [sym_readonly] = ACTIONS(1840), }, - [551] = { + [550] = { [ts_builtin_sym_end] = ACTIONS(1842), [sym_identifier] = ACTIONS(1844), [anon_sym_export] = ACTIONS(1844), @@ -62378,7 +62522,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1844), [sym_readonly] = ACTIONS(1844), }, - [552] = { + [551] = { [ts_builtin_sym_end] = ACTIONS(1846), [sym_identifier] = ACTIONS(1848), [anon_sym_export] = ACTIONS(1848), @@ -62455,7 +62599,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1848), [sym_readonly] = ACTIONS(1848), }, - [553] = { + [552] = { [ts_builtin_sym_end] = ACTIONS(1850), [sym_identifier] = ACTIONS(1852), [anon_sym_export] = ACTIONS(1852), @@ -62532,7 +62676,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1852), [sym_readonly] = ACTIONS(1852), }, - [554] = { + [553] = { [ts_builtin_sym_end] = ACTIONS(1854), [sym_identifier] = ACTIONS(1856), [anon_sym_export] = ACTIONS(1856), @@ -62609,7 +62753,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1856), [sym_readonly] = ACTIONS(1856), }, - [555] = { + [554] = { [ts_builtin_sym_end] = ACTIONS(1858), [sym_identifier] = ACTIONS(1860), [anon_sym_export] = ACTIONS(1860), @@ -62686,7 +62830,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1860), [sym_readonly] = ACTIONS(1860), }, - [556] = { + [555] = { [ts_builtin_sym_end] = ACTIONS(1862), [sym_identifier] = ACTIONS(1864), [anon_sym_export] = ACTIONS(1864), @@ -62763,7 +62907,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1864), [sym_readonly] = ACTIONS(1864), }, - [557] = { + [556] = { [ts_builtin_sym_end] = ACTIONS(1866), [sym_identifier] = ACTIONS(1868), [anon_sym_export] = ACTIONS(1868), @@ -62840,7 +62984,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1868), [sym_readonly] = ACTIONS(1868), }, - [558] = { + [557] = { [ts_builtin_sym_end] = ACTIONS(1870), [sym_identifier] = ACTIONS(1872), [anon_sym_export] = ACTIONS(1872), @@ -62917,7 +63061,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1872), [sym_readonly] = ACTIONS(1872), }, - [559] = { + [558] = { [ts_builtin_sym_end] = ACTIONS(1874), [sym_identifier] = ACTIONS(1876), [anon_sym_export] = ACTIONS(1876), @@ -62994,7 +63138,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1876), [sym_readonly] = ACTIONS(1876), }, - [560] = { + [559] = { [ts_builtin_sym_end] = ACTIONS(1878), [sym_identifier] = ACTIONS(1880), [anon_sym_export] = ACTIONS(1880), @@ -63071,7 +63215,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1880), [sym_readonly] = ACTIONS(1880), }, - [561] = { + [560] = { [ts_builtin_sym_end] = ACTIONS(1882), [sym_identifier] = ACTIONS(1884), [anon_sym_export] = ACTIONS(1884), @@ -63148,7 +63292,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1884), [sym_readonly] = ACTIONS(1884), }, - [562] = { + [561] = { [ts_builtin_sym_end] = ACTIONS(1886), [sym_identifier] = ACTIONS(1888), [anon_sym_export] = ACTIONS(1888), @@ -63225,7 +63369,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1888), [sym_readonly] = ACTIONS(1888), }, - [563] = { + [562] = { [ts_builtin_sym_end] = ACTIONS(1890), [sym_identifier] = ACTIONS(1892), [anon_sym_export] = ACTIONS(1892), @@ -63302,7 +63446,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1892), [sym_readonly] = ACTIONS(1892), }, - [564] = { + [563] = { [ts_builtin_sym_end] = ACTIONS(1894), [sym_identifier] = ACTIONS(1896), [anon_sym_export] = ACTIONS(1896), @@ -63379,7 +63523,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1896), [sym_readonly] = ACTIONS(1896), }, - [565] = { + [564] = { [ts_builtin_sym_end] = ACTIONS(1898), [sym_identifier] = ACTIONS(1900), [anon_sym_export] = ACTIONS(1900), @@ -63456,84 +63600,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1900), [sym_readonly] = ACTIONS(1900), }, - [566] = { - [ts_builtin_sym_end] = ACTIONS(1017), - [sym_identifier] = ACTIONS(1019), - [anon_sym_export] = ACTIONS(1019), - [anon_sym_default] = ACTIONS(1019), - [anon_sym_namespace] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_type] = ACTIONS(1019), - [anon_sym_typeof] = ACTIONS(1019), - [anon_sym_import] = ACTIONS(1019), - [anon_sym_var] = ACTIONS(1019), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_const] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1017), - [anon_sym_if] = ACTIONS(1019), - [anon_sym_else] = ACTIONS(1019), - [anon_sym_switch] = ACTIONS(1019), - [anon_sym_for] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_await] = ACTIONS(1019), - [anon_sym_while] = ACTIONS(1019), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_try] = ACTIONS(1019), - [anon_sym_with] = ACTIONS(1019), - [anon_sym_break] = ACTIONS(1019), - [anon_sym_continue] = ACTIONS(1019), - [anon_sym_debugger] = ACTIONS(1019), - [anon_sym_return] = ACTIONS(1019), - [anon_sym_throw] = ACTIONS(1019), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_case] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LT] = ACTIONS(1017), - [anon_sym_SLASH] = ACTIONS(1019), - [anon_sym_class] = ACTIONS(1019), - [anon_sym_async] = ACTIONS(1019), - [anon_sym_function] = ACTIONS(1019), - [anon_sym_new] = ACTIONS(1019), - [anon_sym_PLUS] = ACTIONS(1019), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_TILDE] = ACTIONS(1017), - [anon_sym_void] = ACTIONS(1019), - [anon_sym_delete] = ACTIONS(1019), - [anon_sym_PLUS_PLUS] = ACTIONS(1017), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [anon_sym_SQUOTE] = ACTIONS(1017), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1017), - [sym_number] = ACTIONS(1017), - [sym_this] = ACTIONS(1019), - [sym_super] = ACTIONS(1019), - [sym_true] = ACTIONS(1019), - [sym_false] = ACTIONS(1019), - [sym_null] = ACTIONS(1019), - [sym_undefined] = ACTIONS(1019), - [anon_sym_AT] = ACTIONS(1017), - [anon_sym_static] = ACTIONS(1019), - [anon_sym_abstract] = ACTIONS(1019), - [anon_sym_get] = ACTIONS(1019), - [anon_sym_set] = ACTIONS(1019), - [anon_sym_declare] = ACTIONS(1019), - [anon_sym_public] = ACTIONS(1019), - [anon_sym_private] = ACTIONS(1019), - [anon_sym_protected] = ACTIONS(1019), - [anon_sym_module] = ACTIONS(1019), - [anon_sym_any] = ACTIONS(1019), - [anon_sym_number] = ACTIONS(1019), - [anon_sym_boolean] = ACTIONS(1019), - [anon_sym_string] = ACTIONS(1019), - [anon_sym_symbol] = ACTIONS(1019), - [anon_sym_interface] = ACTIONS(1019), - [anon_sym_enum] = ACTIONS(1019), - [sym_readonly] = ACTIONS(1019), - }, - [567] = { + [565] = { [ts_builtin_sym_end] = ACTIONS(1902), [sym_identifier] = ACTIONS(1904), [anon_sym_export] = ACTIONS(1904), @@ -63610,7 +63677,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1904), [sym_readonly] = ACTIONS(1904), }, - [568] = { + [566] = { [ts_builtin_sym_end] = ACTIONS(1906), [sym_identifier] = ACTIONS(1908), [anon_sym_export] = ACTIONS(1908), @@ -63687,7 +63754,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1908), [sym_readonly] = ACTIONS(1908), }, - [569] = { + [567] = { [ts_builtin_sym_end] = ACTIONS(1910), [sym_identifier] = ACTIONS(1912), [anon_sym_export] = ACTIONS(1912), @@ -63764,7 +63831,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1912), [sym_readonly] = ACTIONS(1912), }, - [570] = { + [568] = { [ts_builtin_sym_end] = ACTIONS(1914), [sym_identifier] = ACTIONS(1916), [anon_sym_export] = ACTIONS(1916), @@ -63841,84 +63908,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1916), [sym_readonly] = ACTIONS(1916), }, - [571] = { - [ts_builtin_sym_end] = ACTIONS(951), - [sym_identifier] = ACTIONS(953), - [anon_sym_export] = ACTIONS(953), - [anon_sym_default] = ACTIONS(953), - [anon_sym_namespace] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_type] = ACTIONS(953), - [anon_sym_typeof] = ACTIONS(953), - [anon_sym_import] = ACTIONS(953), - [anon_sym_var] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_if] = ACTIONS(953), - [anon_sym_else] = ACTIONS(953), - [anon_sym_switch] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_await] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [anon_sym_do] = ACTIONS(953), - [anon_sym_try] = ACTIONS(953), - [anon_sym_with] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_debugger] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_throw] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_case] = ACTIONS(953), - [anon_sym_yield] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(953), - [anon_sym_class] = ACTIONS(953), - [anon_sym_async] = ACTIONS(953), - [anon_sym_function] = ACTIONS(953), - [anon_sym_new] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_TILDE] = ACTIONS(951), - [anon_sym_void] = ACTIONS(953), - [anon_sym_delete] = ACTIONS(953), - [anon_sym_PLUS_PLUS] = ACTIONS(951), - [anon_sym_DASH_DASH] = ACTIONS(951), - [anon_sym_DQUOTE] = ACTIONS(951), - [anon_sym_SQUOTE] = ACTIONS(951), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(951), - [sym_number] = ACTIONS(951), - [sym_this] = ACTIONS(953), - [sym_super] = ACTIONS(953), - [sym_true] = ACTIONS(953), - [sym_false] = ACTIONS(953), - [sym_null] = ACTIONS(953), - [sym_undefined] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(951), - [anon_sym_static] = ACTIONS(953), - [anon_sym_abstract] = ACTIONS(953), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(953), - [anon_sym_declare] = ACTIONS(953), - [anon_sym_public] = ACTIONS(953), - [anon_sym_private] = ACTIONS(953), - [anon_sym_protected] = ACTIONS(953), - [anon_sym_module] = ACTIONS(953), - [anon_sym_any] = ACTIONS(953), - [anon_sym_number] = ACTIONS(953), - [anon_sym_boolean] = ACTIONS(953), - [anon_sym_string] = ACTIONS(953), - [anon_sym_symbol] = ACTIONS(953), - [anon_sym_interface] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(953), - [sym_readonly] = ACTIONS(953), - }, - [572] = { + [569] = { [ts_builtin_sym_end] = ACTIONS(1918), [sym_identifier] = ACTIONS(1920), [anon_sym_export] = ACTIONS(1920), @@ -63995,7 +63985,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1920), [sym_readonly] = ACTIONS(1920), }, - [573] = { + [570] = { [ts_builtin_sym_end] = ACTIONS(1922), [sym_identifier] = ACTIONS(1924), [anon_sym_export] = ACTIONS(1924), @@ -64072,7 +64062,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1924), [sym_readonly] = ACTIONS(1924), }, - [574] = { + [571] = { [ts_builtin_sym_end] = ACTIONS(1926), [sym_identifier] = ACTIONS(1928), [anon_sym_export] = ACTIONS(1928), @@ -64088,7 +64078,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1928), [anon_sym_BANG] = ACTIONS(1926), [anon_sym_if] = ACTIONS(1928), - [anon_sym_else] = ACTIONS(1928), + [anon_sym_else] = ACTIONS(1930), [anon_sym_switch] = ACTIONS(1928), [anon_sym_for] = ACTIONS(1928), [anon_sym_LPAREN] = ACTIONS(1926), @@ -64149,161 +64139,161 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1928), [sym_readonly] = ACTIONS(1928), }, - [575] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1932), - [anon_sym_export] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_namespace] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_RBRACE] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_typeof] = ACTIONS(1932), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_var] = ACTIONS(1932), - [anon_sym_let] = ACTIONS(1932), - [anon_sym_const] = ACTIONS(1932), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_else] = ACTIONS(1932), - [anon_sym_switch] = ACTIONS(1932), - [anon_sym_for] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1932), - [anon_sym_while] = ACTIONS(1932), - [anon_sym_do] = ACTIONS(1932), - [anon_sym_try] = ACTIONS(1932), - [anon_sym_with] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_debugger] = ACTIONS(1932), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_throw] = ACTIONS(1932), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_case] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1932), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(1932), - [anon_sym_function] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_void] = ACTIONS(1932), - [anon_sym_delete] = ACTIONS(1932), - [anon_sym_PLUS_PLUS] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(1930), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1930), - [sym_number] = ACTIONS(1930), - [sym_this] = ACTIONS(1932), - [sym_super] = ACTIONS(1932), - [sym_true] = ACTIONS(1932), - [sym_false] = ACTIONS(1932), - [sym_null] = ACTIONS(1932), - [sym_undefined] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_abstract] = ACTIONS(1932), - [anon_sym_get] = ACTIONS(1932), - [anon_sym_set] = ACTIONS(1932), - [anon_sym_declare] = ACTIONS(1932), - [anon_sym_public] = ACTIONS(1932), - [anon_sym_private] = ACTIONS(1932), - [anon_sym_protected] = ACTIONS(1932), - [anon_sym_module] = ACTIONS(1932), - [anon_sym_any] = ACTIONS(1932), - [anon_sym_number] = ACTIONS(1932), - [anon_sym_boolean] = ACTIONS(1932), - [anon_sym_string] = ACTIONS(1932), - [anon_sym_symbol] = ACTIONS(1932), - [anon_sym_interface] = ACTIONS(1932), - [anon_sym_enum] = ACTIONS(1932), - [sym_readonly] = ACTIONS(1932), + [572] = { + [ts_builtin_sym_end] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1934), + [anon_sym_export] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_namespace] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_type] = ACTIONS(1934), + [anon_sym_typeof] = ACTIONS(1934), + [anon_sym_import] = ACTIONS(1934), + [anon_sym_var] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_else] = ACTIONS(1934), + [anon_sym_switch] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_await] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_do] = ACTIONS(1934), + [anon_sym_try] = ACTIONS(1934), + [anon_sym_with] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_debugger] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_throw] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_case] = ACTIONS(1934), + [anon_sym_yield] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(1932), + [anon_sym_SLASH] = ACTIONS(1934), + [anon_sym_class] = ACTIONS(1934), + [anon_sym_async] = ACTIONS(1934), + [anon_sym_function] = ACTIONS(1934), + [anon_sym_new] = ACTIONS(1934), + [anon_sym_PLUS] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_TILDE] = ACTIONS(1932), + [anon_sym_void] = ACTIONS(1934), + [anon_sym_delete] = ACTIONS(1934), + [anon_sym_PLUS_PLUS] = ACTIONS(1932), + [anon_sym_DASH_DASH] = ACTIONS(1932), + [anon_sym_DQUOTE] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1932), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1932), + [sym_number] = ACTIONS(1932), + [sym_this] = ACTIONS(1934), + [sym_super] = ACTIONS(1934), + [sym_true] = ACTIONS(1934), + [sym_false] = ACTIONS(1934), + [sym_null] = ACTIONS(1934), + [sym_undefined] = ACTIONS(1934), + [anon_sym_AT] = ACTIONS(1932), + [anon_sym_static] = ACTIONS(1934), + [anon_sym_abstract] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1934), + [anon_sym_set] = ACTIONS(1934), + [anon_sym_declare] = ACTIONS(1934), + [anon_sym_public] = ACTIONS(1934), + [anon_sym_private] = ACTIONS(1934), + [anon_sym_protected] = ACTIONS(1934), + [anon_sym_module] = ACTIONS(1934), + [anon_sym_any] = ACTIONS(1934), + [anon_sym_number] = ACTIONS(1934), + [anon_sym_boolean] = ACTIONS(1934), + [anon_sym_string] = ACTIONS(1934), + [anon_sym_symbol] = ACTIONS(1934), + [anon_sym_interface] = ACTIONS(1934), + [anon_sym_enum] = ACTIONS(1934), + [sym_readonly] = ACTIONS(1934), }, - [576] = { - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1936), - [anon_sym_export] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_namespace] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_RBRACE] = ACTIONS(1934), - [anon_sym_type] = ACTIONS(1936), - [anon_sym_typeof] = ACTIONS(1936), - [anon_sym_import] = ACTIONS(1936), - [anon_sym_var] = ACTIONS(1936), - [anon_sym_let] = ACTIONS(1936), - [anon_sym_const] = ACTIONS(1936), - [anon_sym_BANG] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1936), + [573] = { + [ts_builtin_sym_end] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [anon_sym_export] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_namespace] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_typeof] = ACTIONS(1938), + [anon_sym_import] = ACTIONS(1938), + [anon_sym_var] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_const] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1938), [anon_sym_else] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1936), - [anon_sym_for] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_await] = ACTIONS(1936), - [anon_sym_while] = ACTIONS(1936), - [anon_sym_do] = ACTIONS(1936), - [anon_sym_try] = ACTIONS(1936), - [anon_sym_with] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_debugger] = ACTIONS(1936), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_throw] = ACTIONS(1936), - [anon_sym_SEMI] = ACTIONS(1934), - [anon_sym_case] = ACTIONS(1936), - [anon_sym_yield] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1936), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_function] = ACTIONS(1936), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_void] = ACTIONS(1936), - [anon_sym_delete] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1934), - [anon_sym_DASH_DASH] = ACTIONS(1934), - [anon_sym_DQUOTE] = ACTIONS(1934), - [anon_sym_SQUOTE] = ACTIONS(1934), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1934), - [sym_number] = ACTIONS(1934), - [sym_this] = ACTIONS(1936), - [sym_super] = ACTIONS(1936), - [sym_true] = ACTIONS(1936), - [sym_false] = ACTIONS(1936), - [sym_null] = ACTIONS(1936), - [sym_undefined] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(1934), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_abstract] = ACTIONS(1936), - [anon_sym_get] = ACTIONS(1936), - [anon_sym_set] = ACTIONS(1936), - [anon_sym_declare] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_protected] = ACTIONS(1936), - [anon_sym_module] = ACTIONS(1936), - [anon_sym_any] = ACTIONS(1936), - [anon_sym_number] = ACTIONS(1936), - [anon_sym_boolean] = ACTIONS(1936), - [anon_sym_string] = ACTIONS(1936), - [anon_sym_symbol] = ACTIONS(1936), - [anon_sym_interface] = ACTIONS(1936), - [anon_sym_enum] = ACTIONS(1936), - [sym_readonly] = ACTIONS(1936), + [anon_sym_switch] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_do] = ACTIONS(1938), + [anon_sym_try] = ACTIONS(1938), + [anon_sym_with] = ACTIONS(1938), + [anon_sym_break] = ACTIONS(1938), + [anon_sym_continue] = ACTIONS(1938), + [anon_sym_debugger] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_throw] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_case] = ACTIONS(1938), + [anon_sym_yield] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_SLASH] = ACTIONS(1938), + [anon_sym_class] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_function] = ACTIONS(1938), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_PLUS] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_TILDE] = ACTIONS(1936), + [anon_sym_void] = ACTIONS(1938), + [anon_sym_delete] = ACTIONS(1938), + [anon_sym_PLUS_PLUS] = ACTIONS(1936), + [anon_sym_DASH_DASH] = ACTIONS(1936), + [anon_sym_DQUOTE] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1936), + [sym_number] = ACTIONS(1936), + [sym_this] = ACTIONS(1938), + [sym_super] = ACTIONS(1938), + [sym_true] = ACTIONS(1938), + [sym_false] = ACTIONS(1938), + [sym_null] = ACTIONS(1938), + [sym_undefined] = ACTIONS(1938), + [anon_sym_AT] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_abstract] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1938), + [anon_sym_set] = ACTIONS(1938), + [anon_sym_declare] = ACTIONS(1938), + [anon_sym_public] = ACTIONS(1938), + [anon_sym_private] = ACTIONS(1938), + [anon_sym_protected] = ACTIONS(1938), + [anon_sym_module] = ACTIONS(1938), + [anon_sym_any] = ACTIONS(1938), + [anon_sym_number] = ACTIONS(1938), + [anon_sym_boolean] = ACTIONS(1938), + [anon_sym_string] = ACTIONS(1938), + [anon_sym_symbol] = ACTIONS(1938), + [anon_sym_interface] = ACTIONS(1938), + [anon_sym_enum] = ACTIONS(1938), + [sym_readonly] = ACTIONS(1938), }, - [577] = { + [574] = { [ts_builtin_sym_end] = ACTIONS(1940), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), @@ -64380,7 +64370,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1942), [sym_readonly] = ACTIONS(1942), }, - [578] = { + [575] = { [ts_builtin_sym_end] = ACTIONS(1944), [sym_identifier] = ACTIONS(1946), [anon_sym_export] = ACTIONS(1946), @@ -64457,7 +64447,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1946), [sym_readonly] = ACTIONS(1946), }, - [579] = { + [576] = { [ts_builtin_sym_end] = ACTIONS(1948), [sym_identifier] = ACTIONS(1950), [anon_sym_export] = ACTIONS(1950), @@ -64534,7 +64524,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1950), [sym_readonly] = ACTIONS(1950), }, - [580] = { + [577] = { [ts_builtin_sym_end] = ACTIONS(1952), [sym_identifier] = ACTIONS(1954), [anon_sym_export] = ACTIONS(1954), @@ -64611,7 +64601,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1954), [sym_readonly] = ACTIONS(1954), }, - [581] = { + [578] = { [ts_builtin_sym_end] = ACTIONS(1956), [sym_identifier] = ACTIONS(1958), [anon_sym_export] = ACTIONS(1958), @@ -64688,7 +64678,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1958), [sym_readonly] = ACTIONS(1958), }, - [582] = { + [579] = { [ts_builtin_sym_end] = ACTIONS(1960), [sym_identifier] = ACTIONS(1962), [anon_sym_export] = ACTIONS(1962), @@ -64765,7 +64755,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1962), [sym_readonly] = ACTIONS(1962), }, - [583] = { + [580] = { [ts_builtin_sym_end] = ACTIONS(1964), [sym_identifier] = ACTIONS(1966), [anon_sym_export] = ACTIONS(1966), @@ -64842,7 +64832,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1966), [sym_readonly] = ACTIONS(1966), }, - [584] = { + [581] = { [ts_builtin_sym_end] = ACTIONS(1968), [sym_identifier] = ACTIONS(1970), [anon_sym_export] = ACTIONS(1970), @@ -64919,7 +64909,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1970), [sym_readonly] = ACTIONS(1970), }, - [585] = { + [582] = { [ts_builtin_sym_end] = ACTIONS(1972), [sym_identifier] = ACTIONS(1974), [anon_sym_export] = ACTIONS(1974), @@ -64996,7 +64986,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1974), [sym_readonly] = ACTIONS(1974), }, - [586] = { + [583] = { [ts_builtin_sym_end] = ACTIONS(1976), [sym_identifier] = ACTIONS(1978), [anon_sym_export] = ACTIONS(1978), @@ -65073,7 +65063,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1978), [sym_readonly] = ACTIONS(1978), }, - [587] = { + [584] = { + [ts_builtin_sym_end] = ACTIONS(979), + [sym_identifier] = ACTIONS(981), + [anon_sym_export] = ACTIONS(981), + [anon_sym_default] = ACTIONS(981), + [anon_sym_namespace] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_type] = ACTIONS(981), + [anon_sym_typeof] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_var] = ACTIONS(981), + [anon_sym_let] = ACTIONS(981), + [anon_sym_const] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_switch] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(979), + [anon_sym_await] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_try] = ACTIONS(981), + [anon_sym_with] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_debugger] = ACTIONS(981), + [anon_sym_return] = ACTIONS(981), + [anon_sym_throw] = ACTIONS(981), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_case] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_class] = ACTIONS(981), + [anon_sym_async] = ACTIONS(981), + [anon_sym_function] = ACTIONS(981), + [anon_sym_new] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_TILDE] = ACTIONS(979), + [anon_sym_void] = ACTIONS(981), + [anon_sym_delete] = ACTIONS(981), + [anon_sym_PLUS_PLUS] = ACTIONS(979), + [anon_sym_DASH_DASH] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(979), + [sym_number] = ACTIONS(979), + [sym_this] = ACTIONS(981), + [sym_super] = ACTIONS(981), + [sym_true] = ACTIONS(981), + [sym_false] = ACTIONS(981), + [sym_null] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(979), + [anon_sym_static] = ACTIONS(981), + [anon_sym_abstract] = ACTIONS(981), + [anon_sym_get] = ACTIONS(981), + [anon_sym_set] = ACTIONS(981), + [anon_sym_declare] = ACTIONS(981), + [anon_sym_public] = ACTIONS(981), + [anon_sym_private] = ACTIONS(981), + [anon_sym_protected] = ACTIONS(981), + [anon_sym_module] = ACTIONS(981), + [anon_sym_any] = ACTIONS(981), + [anon_sym_number] = ACTIONS(981), + [anon_sym_boolean] = ACTIONS(981), + [anon_sym_string] = ACTIONS(981), + [anon_sym_symbol] = ACTIONS(981), + [anon_sym_interface] = ACTIONS(981), + [anon_sym_enum] = ACTIONS(981), + [sym_readonly] = ACTIONS(981), + }, + [585] = { [ts_builtin_sym_end] = ACTIONS(1980), [sym_identifier] = ACTIONS(1982), [anon_sym_export] = ACTIONS(1982), @@ -65150,7 +65217,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1982), [sym_readonly] = ACTIONS(1982), }, - [588] = { + [586] = { [ts_builtin_sym_end] = ACTIONS(1984), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1986), @@ -65227,7 +65294,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1986), [sym_readonly] = ACTIONS(1986), }, - [589] = { + [587] = { [ts_builtin_sym_end] = ACTIONS(1988), [sym_identifier] = ACTIONS(1990), [anon_sym_export] = ACTIONS(1990), @@ -65304,7 +65371,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1990), [sym_readonly] = ACTIONS(1990), }, - [590] = { + [588] = { [ts_builtin_sym_end] = ACTIONS(1992), [sym_identifier] = ACTIONS(1994), [anon_sym_export] = ACTIONS(1994), @@ -65381,7 +65448,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1994), [sym_readonly] = ACTIONS(1994), }, - [591] = { + [589] = { [ts_builtin_sym_end] = ACTIONS(1996), [sym_identifier] = ACTIONS(1998), [anon_sym_export] = ACTIONS(1998), @@ -65458,7 +65525,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1998), [sym_readonly] = ACTIONS(1998), }, - [592] = { + [590] = { [ts_builtin_sym_end] = ACTIONS(2000), [sym_identifier] = ACTIONS(2002), [anon_sym_export] = ACTIONS(2002), @@ -65535,7 +65602,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2002), [sym_readonly] = ACTIONS(2002), }, - [593] = { + [591] = { [ts_builtin_sym_end] = ACTIONS(2004), [sym_identifier] = ACTIONS(2006), [anon_sym_export] = ACTIONS(2006), @@ -65612,7 +65679,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2006), [sym_readonly] = ACTIONS(2006), }, - [594] = { + [592] = { [ts_builtin_sym_end] = ACTIONS(2008), [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(2010), @@ -65689,7 +65756,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2010), [sym_readonly] = ACTIONS(2010), }, - [595] = { + [593] = { [ts_builtin_sym_end] = ACTIONS(2012), [sym_identifier] = ACTIONS(2014), [anon_sym_export] = ACTIONS(2014), @@ -65766,7 +65833,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2014), [sym_readonly] = ACTIONS(2014), }, - [596] = { + [594] = { [ts_builtin_sym_end] = ACTIONS(2016), [sym_identifier] = ACTIONS(2018), [anon_sym_export] = ACTIONS(2018), @@ -65843,7 +65910,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2018), [sym_readonly] = ACTIONS(2018), }, - [597] = { + [595] = { + [ts_builtin_sym_end] = ACTIONS(1031), + [sym_identifier] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1033), + [anon_sym_default] = ACTIONS(1033), + [anon_sym_namespace] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_type] = ACTIONS(1033), + [anon_sym_typeof] = ACTIONS(1033), + [anon_sym_import] = ACTIONS(1033), + [anon_sym_var] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_else] = ACTIONS(1033), + [anon_sym_switch] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_await] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1033), + [anon_sym_with] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_debugger] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_throw] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_case] = ACTIONS(1033), + [anon_sym_yield] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1031), + [anon_sym_LT] = ACTIONS(1031), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(1033), + [anon_sym_async] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(1033), + [anon_sym_new] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_TILDE] = ACTIONS(1031), + [anon_sym_void] = ACTIONS(1033), + [anon_sym_delete] = ACTIONS(1033), + [anon_sym_PLUS_PLUS] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1031), + [sym_number] = ACTIONS(1031), + [sym_this] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_true] = ACTIONS(1033), + [sym_false] = ACTIONS(1033), + [sym_null] = ACTIONS(1033), + [sym_undefined] = ACTIONS(1033), + [anon_sym_AT] = ACTIONS(1031), + [anon_sym_static] = ACTIONS(1033), + [anon_sym_abstract] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(1033), + [anon_sym_set] = ACTIONS(1033), + [anon_sym_declare] = ACTIONS(1033), + [anon_sym_public] = ACTIONS(1033), + [anon_sym_private] = ACTIONS(1033), + [anon_sym_protected] = ACTIONS(1033), + [anon_sym_module] = ACTIONS(1033), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_interface] = ACTIONS(1033), + [anon_sym_enum] = ACTIONS(1033), + [sym_readonly] = ACTIONS(1033), + }, + [596] = { [ts_builtin_sym_end] = ACTIONS(2020), [sym_identifier] = ACTIONS(2022), [anon_sym_export] = ACTIONS(2022), @@ -65920,6 +66064,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2022), [sym_readonly] = ACTIONS(2022), }, + [597] = { + [ts_builtin_sym_end] = ACTIONS(1035), + [sym_identifier] = ACTIONS(1037), + [anon_sym_export] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_namespace] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_typeof] = ACTIONS(1037), + [anon_sym_import] = ACTIONS(1037), + [anon_sym_var] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(1037), + [anon_sym_switch] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_do] = ACTIONS(1037), + [anon_sym_try] = ACTIONS(1037), + [anon_sym_with] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_debugger] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_throw] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_case] = ACTIONS(1037), + [anon_sym_yield] = ACTIONS(1037), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_class] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_function] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1037), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_TILDE] = ACTIONS(1035), + [anon_sym_void] = ACTIONS(1037), + [anon_sym_delete] = ACTIONS(1037), + [anon_sym_PLUS_PLUS] = ACTIONS(1035), + [anon_sym_DASH_DASH] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1035), + [anon_sym_SQUOTE] = ACTIONS(1035), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1035), + [sym_number] = ACTIONS(1035), + [sym_this] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_true] = ACTIONS(1037), + [sym_false] = ACTIONS(1037), + [sym_null] = ACTIONS(1037), + [sym_undefined] = ACTIONS(1037), + [anon_sym_AT] = ACTIONS(1035), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_abstract] = ACTIONS(1037), + [anon_sym_get] = ACTIONS(1037), + [anon_sym_set] = ACTIONS(1037), + [anon_sym_declare] = ACTIONS(1037), + [anon_sym_public] = ACTIONS(1037), + [anon_sym_private] = ACTIONS(1037), + [anon_sym_protected] = ACTIONS(1037), + [anon_sym_module] = ACTIONS(1037), + [anon_sym_any] = ACTIONS(1037), + [anon_sym_number] = ACTIONS(1037), + [anon_sym_boolean] = ACTIONS(1037), + [anon_sym_string] = ACTIONS(1037), + [anon_sym_symbol] = ACTIONS(1037), + [anon_sym_interface] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [sym_readonly] = ACTIONS(1037), + }, [598] = { [ts_builtin_sym_end] = ACTIONS(2024), [sym_identifier] = ACTIONS(2026), @@ -66306,83 +66527,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(2042), }, [603] = { - [ts_builtin_sym_end] = ACTIONS(955), - [sym_identifier] = ACTIONS(957), - [anon_sym_export] = ACTIONS(957), - [anon_sym_default] = ACTIONS(957), - [anon_sym_namespace] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_type] = ACTIONS(957), - [anon_sym_typeof] = ACTIONS(957), - [anon_sym_import] = ACTIONS(957), - [anon_sym_var] = ACTIONS(957), - [anon_sym_let] = ACTIONS(957), - [anon_sym_const] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(955), - [anon_sym_if] = ACTIONS(957), - [anon_sym_else] = ACTIONS(957), - [anon_sym_switch] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_await] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [anon_sym_do] = ACTIONS(957), - [anon_sym_try] = ACTIONS(957), - [anon_sym_with] = ACTIONS(957), - [anon_sym_break] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_debugger] = ACTIONS(957), - [anon_sym_return] = ACTIONS(957), - [anon_sym_throw] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_case] = ACTIONS(957), - [anon_sym_yield] = ACTIONS(957), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_LT] = ACTIONS(955), - [anon_sym_SLASH] = ACTIONS(957), - [anon_sym_class] = ACTIONS(957), - [anon_sym_async] = ACTIONS(957), - [anon_sym_function] = ACTIONS(957), - [anon_sym_new] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_TILDE] = ACTIONS(955), - [anon_sym_void] = ACTIONS(957), - [anon_sym_delete] = ACTIONS(957), - [anon_sym_PLUS_PLUS] = ACTIONS(955), - [anon_sym_DASH_DASH] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(955), - [anon_sym_SQUOTE] = ACTIONS(955), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(955), - [sym_number] = ACTIONS(955), - [sym_this] = ACTIONS(957), - [sym_super] = ACTIONS(957), - [sym_true] = ACTIONS(957), - [sym_false] = ACTIONS(957), - [sym_null] = ACTIONS(957), - [sym_undefined] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(955), - [anon_sym_static] = ACTIONS(957), - [anon_sym_abstract] = ACTIONS(957), - [anon_sym_get] = ACTIONS(957), - [anon_sym_set] = ACTIONS(957), - [anon_sym_declare] = ACTIONS(957), - [anon_sym_public] = ACTIONS(957), - [anon_sym_private] = ACTIONS(957), - [anon_sym_protected] = ACTIONS(957), - [anon_sym_module] = ACTIONS(957), - [anon_sym_any] = ACTIONS(957), - [anon_sym_number] = ACTIONS(957), - [anon_sym_boolean] = ACTIONS(957), - [anon_sym_string] = ACTIONS(957), - [anon_sym_symbol] = ACTIONS(957), - [anon_sym_interface] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(957), - [sym_readonly] = ACTIONS(957), - }, - [604] = { [ts_builtin_sym_end] = ACTIONS(2044), [sym_identifier] = ACTIONS(2046), [anon_sym_export] = ACTIONS(2046), @@ -66459,6 +66603,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2046), [sym_readonly] = ACTIONS(2046), }, + [604] = { + [ts_builtin_sym_end] = ACTIONS(961), + [sym_identifier] = ACTIONS(963), + [anon_sym_export] = ACTIONS(963), + [anon_sym_default] = ACTIONS(963), + [anon_sym_namespace] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_type] = ACTIONS(963), + [anon_sym_typeof] = ACTIONS(963), + [anon_sym_import] = ACTIONS(963), + [anon_sym_var] = ACTIONS(963), + [anon_sym_let] = ACTIONS(963), + [anon_sym_const] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_if] = ACTIONS(963), + [anon_sym_else] = ACTIONS(963), + [anon_sym_switch] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_await] = ACTIONS(963), + [anon_sym_while] = ACTIONS(963), + [anon_sym_do] = ACTIONS(963), + [anon_sym_try] = ACTIONS(963), + [anon_sym_with] = ACTIONS(963), + [anon_sym_break] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(963), + [anon_sym_debugger] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_throw] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_case] = ACTIONS(963), + [anon_sym_yield] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_class] = ACTIONS(963), + [anon_sym_async] = ACTIONS(963), + [anon_sym_function] = ACTIONS(963), + [anon_sym_new] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_TILDE] = ACTIONS(961), + [anon_sym_void] = ACTIONS(963), + [anon_sym_delete] = ACTIONS(963), + [anon_sym_PLUS_PLUS] = ACTIONS(961), + [anon_sym_DASH_DASH] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(961), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(961), + [sym_number] = ACTIONS(961), + [sym_this] = ACTIONS(963), + [sym_super] = ACTIONS(963), + [sym_true] = ACTIONS(963), + [sym_false] = ACTIONS(963), + [sym_null] = ACTIONS(963), + [sym_undefined] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(961), + [anon_sym_static] = ACTIONS(963), + [anon_sym_abstract] = ACTIONS(963), + [anon_sym_get] = ACTIONS(963), + [anon_sym_set] = ACTIONS(963), + [anon_sym_declare] = ACTIONS(963), + [anon_sym_public] = ACTIONS(963), + [anon_sym_private] = ACTIONS(963), + [anon_sym_protected] = ACTIONS(963), + [anon_sym_module] = ACTIONS(963), + [anon_sym_any] = ACTIONS(963), + [anon_sym_number] = ACTIONS(963), + [anon_sym_boolean] = ACTIONS(963), + [anon_sym_string] = ACTIONS(963), + [anon_sym_symbol] = ACTIONS(963), + [anon_sym_interface] = ACTIONS(963), + [anon_sym_enum] = ACTIONS(963), + [sym_readonly] = ACTIONS(963), + }, [605] = { [ts_builtin_sym_end] = ACTIONS(2048), [sym_identifier] = ACTIONS(2050), @@ -67488,148 +67709,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_readonly] = ACTIONS(2100), }, [619] = { - [sym_nested_identifier] = STATE(999), - [sym_string] = STATE(998), - [sym_arguments] = STATE(1118), - [sym__module] = STATE(1135), - [sym_type_arguments] = STATE(1012), + [sym_nested_identifier] = STATE(1017), + [sym_string] = STATE(1018), + [sym_arguments] = STATE(1132), + [sym__module] = STATE(1105), + [sym_type_arguments] = STATE(987), [sym_identifier] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1505), [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_RPAREN] = ACTIONS(1453), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_COLON] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_RBRACK] = ACTIONS(1453), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_COLON] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_RBRACK] = ACTIONS(1509), [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_QMARK_DOT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_GT_GT_GT] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_QMARK_QMARK] = ACTIONS(1449), - [anon_sym_instanceof] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_EQ_GT] = ACTIONS(1517), + [anon_sym_QMARK_DOT] = ACTIONS(1519), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_STAR_STAR] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_QMARK_QMARK] = ACTIONS(1505), + [anon_sym_instanceof] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), [anon_sym_DQUOTE] = ACTIONS(501), [anon_sym_SQUOTE] = ACTIONS(503), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1453), + [anon_sym_BQUOTE] = ACTIONS(1509), }, [620] = { - [sym_nested_identifier] = STATE(999), - [sym_string] = STATE(998), - [sym_arguments] = STATE(1487), - [sym__module] = STATE(1135), - [sym_type_arguments] = STATE(1342), - [sym_identifier] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_in] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1146), - [anon_sym_EQ_GT] = ACTIONS(1154), - [anon_sym_QMARK_DOT] = ACTIONS(1156), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1465), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1465), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1465), - [anon_sym_QMARK] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_GT_GT_GT] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_QMARK_QMARK] = ACTIONS(1449), - [anon_sym_instanceof] = ACTIONS(1449), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_DASH_DASH] = ACTIONS(1453), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1453), - [sym__automatic_semicolon] = ACTIONS(1453), - }, - [621] = { - [sym_nested_identifier] = STATE(80), - [sym_string] = STATE(79), - [sym__module] = STATE(89), - [aux_sym_object_repeat1] = STATE(2778), - [sym_identifier] = ACTIONS(2114), + [sym_nested_identifier] = STATE(512), + [sym_string] = STATE(521), + [sym__module] = STATE(608), + [aux_sym_object_repeat1] = STATE(2746), + [sym_identifier] = ACTIONS(2110), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), [anon_sym_COMMA] = ACTIONS(1119), [anon_sym_RBRACE] = ACTIONS(1170), @@ -67683,23 +67837,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1133), [anon_sym_PLUS_PLUS] = ACTIONS(1119), [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1381), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym__automatic_semicolon] = ACTIONS(1119), }, + [621] = { + [sym_nested_identifier] = STATE(1017), + [sym_string] = STATE(1018), + [sym_arguments] = STATE(1421), + [sym__module] = STATE(1105), + [sym_type_arguments] = STATE(1406), + [sym_identifier] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_COMMA] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(2112), + [anon_sym_in] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1509), + [anon_sym_LBRACK] = ACTIONS(1141), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1146), + [anon_sym_EQ_GT] = ACTIONS(1154), + [anon_sym_QMARK_DOT] = ACTIONS(1156), + [anon_sym_PLUS_EQ] = ACTIONS(1521), + [anon_sym_DASH_EQ] = ACTIONS(1521), + [anon_sym_STAR_EQ] = ACTIONS(1521), + [anon_sym_SLASH_EQ] = ACTIONS(1521), + [anon_sym_PERCENT_EQ] = ACTIONS(1521), + [anon_sym_CARET_EQ] = ACTIONS(1521), + [anon_sym_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1521), + [anon_sym_LT_LT_EQ] = ACTIONS(1521), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1521), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1521), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1521), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_GT_GT_GT] = ACTIONS(1505), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_STAR_STAR] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1509), + [anon_sym_BANG_EQ] = ACTIONS(1505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1509), + [anon_sym_QMARK_QMARK] = ACTIONS(1505), + [anon_sym_instanceof] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1509), + [anon_sym_DASH_DASH] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(501), + [anon_sym_SQUOTE] = ACTIONS(503), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1509), + [sym__automatic_semicolon] = ACTIONS(1509), + }, [622] = { - [sym_nested_identifier] = STATE(508), - [sym_string] = STATE(522), - [sym__module] = STATE(539), - [aux_sym_object_repeat1] = STATE(2740), - [sym_identifier] = ACTIONS(2120), + [sym_nested_identifier] = STATE(512), + [sym_string] = STATE(521), + [sym__module] = STATE(608), + [aux_sym_object_repeat1] = STATE(2742), + [sym_identifier] = ACTIONS(2110), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1121), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -67757,16 +67978,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1119), }, [623] = { - [sym_nested_identifier] = STATE(508), - [sym_string] = STATE(522), - [sym__module] = STATE(539), - [aux_sym_object_repeat1] = STATE(2782), - [sym_identifier] = ACTIONS(2120), + [sym_nested_identifier] = STATE(512), + [sym_string] = STATE(521), + [sym__module] = STATE(608), + [aux_sym_object_repeat1] = STATE(2824), + [sym_identifier] = ACTIONS(2110), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_RBRACE] = ACTIONS(1172), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -67824,16 +68045,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1119), }, [624] = { - [sym_nested_identifier] = STATE(508), - [sym_string] = STATE(522), - [sym__module] = STATE(539), - [aux_sym_object_repeat1] = STATE(2778), - [sym_identifier] = ACTIONS(2120), + [sym_nested_identifier] = STATE(81), + [sym_string] = STATE(80), + [sym__module] = STATE(90), + [aux_sym_object_repeat1] = STATE(2824), + [sym_identifier] = ACTIONS(2116), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_RBRACE] = ACTIONS(1172), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -67884,23 +68105,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1133), [anon_sym_PLUS_PLUS] = ACTIONS(1119), [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2120), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym__automatic_semicolon] = ACTIONS(1119), }, [625] = { - [sym_nested_identifier] = STATE(80), - [sym_string] = STATE(79), - [sym__module] = STATE(89), - [aux_sym_object_repeat1] = STATE(2740), - [sym_identifier] = ACTIONS(2114), + [sym_nested_identifier] = STATE(81), + [sym_string] = STATE(80), + [sym__module] = STATE(90), + [aux_sym_object_repeat1] = STATE(2742), + [sym_identifier] = ACTIONS(2116), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_RBRACE] = ACTIONS(1121), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -67951,23 +68172,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1133), [anon_sym_PLUS_PLUS] = ACTIONS(1119), [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2120), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym__automatic_semicolon] = ACTIONS(1119), }, [626] = { - [sym_nested_identifier] = STATE(80), - [sym_string] = STATE(79), - [sym__module] = STATE(89), - [aux_sym_object_repeat1] = STATE(2782), - [sym_identifier] = ACTIONS(2114), + [sym_nested_identifier] = STATE(81), + [sym_string] = STATE(80), + [sym__module] = STATE(90), + [aux_sym_object_repeat1] = STATE(2746), + [sym_identifier] = ACTIONS(2116), [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_EQ] = ACTIONS(1188), + [anon_sym_EQ] = ACTIONS(1204), [anon_sym_as] = ACTIONS(1133), [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1121), + [anon_sym_RBRACE] = ACTIONS(1170), [anon_sym_BANG] = ACTIONS(1133), [anon_sym_LPAREN] = ACTIONS(1135), [anon_sym_in] = ACTIONS(1133), @@ -68018,8 +68239,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_instanceof] = ACTIONS(1133), [anon_sym_PLUS_PLUS] = ACTIONS(1119), [anon_sym_DASH_DASH] = ACTIONS(1119), - [anon_sym_DQUOTE] = ACTIONS(2116), - [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2120), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1119), [sym__automatic_semicolon] = ACTIONS(1119), @@ -68027,30 +68248,114 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static uint16_t ts_small_parse_table[] = { - [0] = 15, + [0] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(501), 1, anon_sym_DQUOTE, ACTIONS(503), 1, anon_sym_SQUOTE, - ACTIONS(1455), 1, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1519), 1, + anon_sym_QMARK_DOT, + ACTIONS(1551), 1, anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(2104), 1, + sym_identifier, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, + anon_sym_LT, + STATE(987), 1, + sym_type_arguments, + STATE(1017), 1, + sym_nested_identifier, + STATE(1018), 1, + sym_string, + STATE(1105), 1, + sym__module, + STATE(1132), 1, + sym_arguments, + ACTIONS(1509), 9, + anon_sym_LBRACE, + anon_sym_COMMA, + 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(1521), 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(1505), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_implements, + [103] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(501), 1, + anon_sym_DQUOTE, + ACTIONS(503), 1, + anon_sym_SQUOTE, + ACTIONS(1511), 1, + anon_sym_LBRACK, + ACTIONS(1513), 1, + anon_sym_DOT, + ACTIONS(1517), 1, + anon_sym_EQ_GT, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1567), 1, + ACTIONS(1553), 1, anon_sym_EQ, ACTIONS(2104), 1, sym_identifier, - STATE(998), 1, - sym_string, - STATE(999), 1, + STATE(1017), 1, sym_nested_identifier, - STATE(1135), 1, + STATE(1018), 1, + sym_string, + STATE(1105), 1, sym__module, ACTIONS(1119), 13, anon_sym_COMMA, @@ -68066,7 +68371,335 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1575), 15, + ACTIONS(1561), 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(1133), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [198] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(501), 1, + anon_sym_DQUOTE, + ACTIONS(503), 1, + anon_sym_SQUOTE, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_DOT, + ACTIONS(1573), 1, + anon_sym_EQ_GT, + ACTIONS(1575), 1, + anon_sym_QMARK_DOT, + ACTIONS(2104), 1, + sym_identifier, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_LT, + STATE(1017), 1, + sym_nested_identifier, + STATE(1018), 1, + sym_string, + STATE(1105), 1, + sym__module, + STATE(1447), 1, + sym_type_arguments, + STATE(1612), 1, + sym_arguments, + ACTIONS(1509), 9, + anon_sym_COMMA, + 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, + anon_sym_LBRACE_PIPE, + ACTIONS(1521), 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(1505), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [301] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(501), 1, + anon_sym_DQUOTE, + ACTIONS(503), 1, + anon_sym_SQUOTE, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1511), 1, + anon_sym_LBRACK, + ACTIONS(1513), 1, + anon_sym_DOT, + ACTIONS(1519), 1, + anon_sym_QMARK_DOT, + ACTIONS(1545), 1, + anon_sym_EQ_GT, + ACTIONS(2104), 1, + sym_identifier, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, + anon_sym_LT, + STATE(987), 1, + sym_type_arguments, + STATE(1017), 1, + sym_nested_identifier, + STATE(1018), 1, + sym_string, + STATE(1105), 1, + sym__module, + STATE(1132), 1, + sym_arguments, + ACTIONS(1509), 10, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + 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(1521), 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(1505), 23, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [404] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1141), 1, + anon_sym_LBRACK, + ACTIONS(1146), 1, + anon_sym_DOT, + ACTIONS(1154), 1, + anon_sym_EQ_GT, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1210), 1, + anon_sym_COLON, + ACTIONS(1242), 1, + anon_sym_EQ, + ACTIONS(2126), 1, + sym_identifier, + STATE(1009), 1, + sym_nested_identifier, + STATE(1010), 1, + sym_string, + STATE(1236), 1, + sym__module, + ACTIONS(1119), 11, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + 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(1158), 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(1133), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [500] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_LBRACK, + ACTIONS(1146), 1, + anon_sym_DOT, + ACTIONS(1154), 1, + anon_sym_EQ_GT, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1188), 1, + anon_sym_COLON, + ACTIONS(1242), 1, + anon_sym_EQ, + ACTIONS(2116), 1, + sym_identifier, + ACTIONS(2118), 1, + anon_sym_DQUOTE, + ACTIONS(2120), 1, + anon_sym_SQUOTE, + STATE(80), 1, + sym_string, + STATE(81), 1, + sym_nested_identifier, + STATE(90), 1, + sym__module, + ACTIONS(1119), 11, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + 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(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -68107,42 +68740,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95] = 19, + [596] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1455), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1541), 1, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(2104), 1, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1192), 1, + anon_sym_COLON, + ACTIONS(1242), 1, + anon_sym_EQ, + ACTIONS(2126), 1, sym_identifier, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LT, - STATE(998), 1, - sym_string, - STATE(999), 1, + STATE(1009), 1, sym_nested_identifier, - STATE(1012), 1, - sym_type_arguments, - STATE(1118), 1, - sym_arguments, - STATE(1135), 1, + STATE(1010), 1, + sym_string, + STATE(1236), 1, sym__module, - ACTIONS(1453), 9, - anon_sym_LBRACE, + ACTIONS(1119), 11, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68150,7 +68779,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1465), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -68166,11 +68795,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1449), 24, + ACTIONS(1133), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -68190,42 +68820,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [198] = 19, + [692] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1547), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1549), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1553), 1, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(1555), 1, + ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(2104), 1, + ACTIONS(1242), 1, + anon_sym_EQ, + ACTIONS(2126), 1, sym_identifier, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_LT, - STATE(998), 1, - sym_string, - STATE(999), 1, + STATE(1009), 1, sym_nested_identifier, - STATE(1135), 1, + STATE(1010), 1, + sym_string, + STATE(1236), 1, sym__module, - STATE(1416), 1, - sym_type_arguments, - STATE(1568), 1, - sym_arguments, - ACTIONS(1453), 9, + ACTIONS(1119), 12, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68233,8 +68858,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1465), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -68250,12 +68874,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1449), 24, + ACTIONS(1133), 24, anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -68275,43 +68899,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [301] = 19, + [786] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1455), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1565), 1, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(2104), 1, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1188), 1, + anon_sym_COLON, + ACTIONS(1242), 1, + anon_sym_EQ, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(2110), 1, sym_identifier, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LT, - STATE(998), 1, - sym_string, - STATE(999), 1, + STATE(512), 1, sym_nested_identifier, - STATE(1012), 1, - sym_type_arguments, - STATE(1118), 1, - sym_arguments, - STATE(1135), 1, + STATE(521), 1, + sym_string, + STATE(608), 1, sym__module, - ACTIONS(1453), 10, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(1119), 11, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68319,7 +68938,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1465), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -68335,11 +68954,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1449), 23, + ACTIONS(1133), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -68359,37 +68979,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [404] = 16, + [882] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, ACTIONS(1141), 1, anon_sym_LBRACK, ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(1196), 1, - anon_sym_COLON, - ACTIONS(1238), 1, + ACTIONS(1507), 1, anon_sym_EQ, - ACTIONS(2126), 1, + ACTIONS(1594), 1, + anon_sym_EQ_GT, + ACTIONS(2104), 1, sym_identifier, - STATE(1016), 1, - sym_string, - STATE(1026), 1, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2114), 1, + anon_sym_LT, + STATE(1017), 1, sym_nested_identifier, - STATE(1257), 1, + STATE(1018), 1, + sym_string, + STATE(1105), 1, sym__module, - ACTIONS(1119), 11, + STATE(1406), 1, + sym_type_arguments, + STATE(1421), 1, + sym_arguments, + ACTIONS(1509), 9, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -68398,7 +69022,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1158), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -68414,12 +69038,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 24, + ACTIONS(1505), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -68439,9 +69062,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [500] = 16, + [984] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, ACTIONS(1141), 1, anon_sym_LBRACK, ACTIONS(1146), 1, @@ -68450,21 +69077,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(1200), 1, - anon_sym_COLON, - ACTIONS(1238), 1, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(2120), 1, + ACTIONS(1596), 1, + anon_sym_in, + ACTIONS(1599), 1, + anon_sym_of, + ACTIONS(2126), 1, sym_identifier, - STATE(508), 1, + STATE(1009), 1, sym_nested_identifier, - STATE(522), 1, + STATE(1010), 1, sym_string, - STATE(539), 1, + STATE(1236), 1, sym__module, ACTIONS(1119), 11, sym__automatic_semicolon, @@ -68494,11 +69119,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 24, + ACTIONS(1133), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -68519,13 +69143,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [596] = 16, + [1082] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, ACTIONS(1141), 1, anon_sym_LBRACK, ACTIONS(1146), 1, @@ -68534,18 +69154,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(1204), 1, + ACTIONS(1192), 1, anon_sym_COLON, - ACTIONS(1238), 1, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(2126), 1, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(2128), 1, sym_identifier, - STATE(1016), 1, + STATE(521), 1, sym_string, - STATE(1026), 1, - sym_nested_identifier, - STATE(1257), 1, + STATE(608), 1, sym__module, + STATE(2622), 1, + sym_nested_identifier, ACTIONS(1119), 11, sym__automatic_semicolon, anon_sym_COMMA, @@ -68599,7 +69223,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [692] = 16, + [1178] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 1, @@ -68610,21 +69234,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(1196), 1, + ACTIONS(1210), 1, anon_sym_COLON, - ACTIONS(1238), 1, + ACTIONS(1242), 1, anon_sym_EQ, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2120), 1, + ACTIONS(2110), 1, sym_identifier, - STATE(508), 1, + STATE(512), 1, sym_nested_identifier, - STATE(522), 1, + STATE(521), 1, sym_string, - STATE(539), 1, + STATE(608), 1, sym__module, ACTIONS(1119), 11, sym__automatic_semicolon, @@ -68679,42 +69303,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [788] = 19, + [1274] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(757), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, - ACTIONS(1141), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(1569), 1, anon_sym_DOT, - ACTIONS(1156), 1, + ACTIONS(1573), 1, + anon_sym_EQ_GT, + ACTIONS(1575), 1, anon_sym_QMARK_DOT, - ACTIONS(1451), 1, + ACTIONS(1648), 1, anon_sym_EQ, - ACTIONS(1594), 1, - anon_sym_EQ_GT, - ACTIONS(2104), 1, + ACTIONS(2130), 1, sym_identifier, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_LT, - STATE(998), 1, + STATE(1552), 1, sym_string, - STATE(999), 1, + STATE(1556), 1, sym_nested_identifier, - STATE(1135), 1, + STATE(1630), 1, sym__module, - STATE(1342), 1, - sym_type_arguments, - STATE(1487), 1, - sym_arguments, - ACTIONS(1453), 9, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(1119), 10, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68722,7 +69338,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1465), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1650), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -68738,11 +69355,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1449), 23, + ACTIONS(1133), 25, anon_sym_STAR, anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -68762,38 +69381,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [890] = 16, + [1367] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(501), 1, + anon_sym_DQUOTE, + ACTIONS(503), 1, + anon_sym_SQUOTE, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1204), 1, - anon_sym_COLON, - ACTIONS(1238), 1, + ACTIONS(1601), 1, anon_sym_EQ, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(2128), 1, + ACTIONS(1607), 1, + anon_sym_QMARK, + ACTIONS(2104), 1, sym_identifier, - STATE(522), 1, + STATE(1017), 1, + sym_nested_identifier, + STATE(1018), 1, sym_string, - STATE(539), 1, + STATE(1105), 1, sym__module, - STATE(2568), 1, - sym_nested_identifier, - ACTIONS(1119), 11, - sym__automatic_semicolon, + ACTIONS(1604), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1119), 8, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68801,7 +69421,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1158), 15, + ACTIONS(1561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -68817,7 +69437,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 24, + ACTIONS(1133), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -68825,7 +69445,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -68842,38 +69461,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [986] = 16, + [1464] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(501), 1, + anon_sym_DQUOTE, + ACTIONS(503), 1, + anon_sym_SQUOTE, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1200), 1, - anon_sym_COLON, - ACTIONS(1238), 1, + ACTIONS(1551), 1, + anon_sym_EQ_GT, + ACTIONS(1640), 1, anon_sym_EQ, - ACTIONS(2114), 1, + ACTIONS(2104), 1, sym_identifier, - ACTIONS(2116), 1, - anon_sym_DQUOTE, - ACTIONS(2118), 1, - anon_sym_SQUOTE, - STATE(79), 1, - sym_string, - STATE(80), 1, + STATE(1017), 1, sym_nested_identifier, - STATE(89), 1, + STATE(1018), 1, + sym_string, + STATE(1105), 1, sym__module, - ACTIONS(1119), 11, - sym__automatic_semicolon, + ACTIONS(1119), 10, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68881,7 +69497,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1158), 15, + ACTIONS(1642), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -68897,7 +69513,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 24, + ACTIONS(1133), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -68922,40 +69538,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1082] = 17, + anon_sym_implements, + [1557] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, - ACTIONS(1141), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1238), 1, + ACTIONS(1553), 1, anon_sym_EQ, - ACTIONS(1596), 1, - anon_sym_in, - ACTIONS(1599), 1, - anon_sym_of, - ACTIONS(2126), 1, + ACTIONS(1616), 1, + anon_sym_COLON, + ACTIONS(2104), 1, sym_identifier, - STATE(1016), 1, - sym_string, - STATE(1026), 1, + STATE(1017), 1, sym_nested_identifier, - STATE(1257), 1, + STATE(1018), 1, + sym_string, + STATE(1105), 1, sym__module, - ACTIONS(1119), 11, - sym__automatic_semicolon, + ACTIONS(1119), 10, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -68963,7 +69577,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1158), 15, + ACTIONS(1561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -68979,10 +69593,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 23, + ACTIONS(1133), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -69003,37 +69618,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1180] = 15, + [1652] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, - ACTIONS(1141), 1, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1238), 1, - anon_sym_EQ, - ACTIONS(2126), 1, + ACTIONS(1545), 1, + anon_sym_EQ_GT, + ACTIONS(2104), 1, sym_identifier, - STATE(1016), 1, - sym_string, - STATE(1026), 1, + STATE(1017), 1, sym_nested_identifier, - STATE(1257), 1, + STATE(1018), 1, + sym_string, + STATE(1105), 1, sym__module, - ACTIONS(1119), 12, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(1119), 11, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69041,7 +69655,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1158), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69082,33 +69696,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1274] = 15, + [1745] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, - ACTIONS(1547), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1549), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1553), 1, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(1555), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1628), 1, + ACTIONS(1601), 1, anon_sym_EQ, - ACTIONS(2130), 1, + ACTIONS(1607), 1, + anon_sym_QMARK, + ACTIONS(1614), 1, + anon_sym_COLON, + ACTIONS(2104), 1, sym_identifier, - STATE(1494), 1, + STATE(1017), 1, sym_nested_identifier, - STATE(1495), 1, + STATE(1018), 1, sym_string, - STATE(1686), 1, + STATE(1105), 1, sym__module, - ACTIONS(1119), 10, + ACTIONS(1604), 2, anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1119), 8, anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -69117,8 +69737,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1630), 15, + ACTIONS(1561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69134,16 +69753,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 25, + ACTIONS(1133), 23, anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -69160,48 +69777,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1367] = 18, + [1844] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(1455), 1, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, + anon_sym_LT, + ACTIONS(2134), 1, + anon_sym_EQ, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1613), 1, - anon_sym_EQ, - ACTIONS(1621), 1, - anon_sym_COLON, - ACTIONS(1625), 1, - anon_sym_QMARK, - ACTIONS(2104), 1, - sym_identifier, - STATE(998), 1, - sym_string, - STATE(999), 1, - sym_nested_identifier, - STATE(1135), 1, - sym__module, - ACTIONS(1618), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1119), 8, - anon_sym_LPAREN, - 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(1575), 15, + STATE(988), 1, + sym_type_arguments, + STATE(1130), 1, + sym_arguments, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69217,14 +69812,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 23, - anon_sym_STAR, + ACTIONS(2136), 16, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + 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, + anon_sym_implements, + ACTIONS(2132), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -69240,36 +69851,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1466] = 16, + [1930] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(501), 1, anon_sym_DQUOTE, ACTIONS(503), 1, anon_sym_SQUOTE, - ACTIONS(1455), 1, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1567), 1, - anon_sym_EQ, - ACTIONS(1603), 1, + ACTIONS(1545), 1, + anon_sym_EQ_GT, + ACTIONS(1616), 1, anon_sym_COLON, ACTIONS(2104), 1, sym_identifier, - STATE(998), 1, - sym_string, - STATE(999), 1, + STATE(1017), 1, sym_nested_identifier, - STATE(1135), 1, + STATE(1018), 1, + sym_string, + STATE(1105), 1, sym__module, - ACTIONS(1119), 10, - anon_sym_COMMA, + ACTIONS(1119), 9, anon_sym_LPAREN, anon_sym_RBRACK, anon_sym_LT_EQ, @@ -69279,7 +69888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1575), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69320,39 +69929,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1561] = 17, + [2024] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1455), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(1613), 1, + ACTIONS(1594), 1, + anon_sym_EQ_GT, + ACTIONS(1690), 1, anon_sym_EQ, - ACTIONS(1625), 1, - anon_sym_QMARK, - ACTIONS(2104), 1, + ACTIONS(2126), 1, sym_identifier, - STATE(998), 1, - sym_string, - STATE(999), 1, + STATE(1009), 1, sym_nested_identifier, - STATE(1135), 1, + STATE(1010), 1, + sym_string, + STATE(1236), 1, sym__module, - ACTIONS(1618), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1119), 8, + ACTIONS(1119), 10, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69360,7 +69965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1575), 15, + ACTIONS(1692), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69376,7 +69981,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 23, + ACTIONS(1133), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -69384,6 +69989,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [2116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2146), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -69399,37 +70033,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(2148), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - [1658] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [2183] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(501), 1, anon_sym_DQUOTE, ACTIONS(503), 1, anon_sym_SQUOTE, - ACTIONS(1451), 1, + ACTIONS(1507), 1, anon_sym_EQ, - ACTIONS(1455), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1463), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1565), 1, + ACTIONS(1545), 1, anon_sym_EQ_GT, + ACTIONS(1719), 1, + anon_sym_in, + ACTIONS(1722), 1, + anon_sym_of, ACTIONS(2104), 1, sym_identifier, - STATE(998), 1, - sym_string, - STATE(999), 1, + STATE(1017), 1, sym_nested_identifier, - STATE(1135), 1, + STATE(1018), 1, + sym_string, + STATE(1105), 1, sym__module, - ACTIONS(1119), 11, - anon_sym_RBRACE, + ACTIONS(1119), 8, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69437,7 +70108,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1465), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69453,11 +70124,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 24, + ACTIONS(1133), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -69478,35 +70148,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1751] = 15, + [2278] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(1455), 1, + ACTIONS(1121), 1, + anon_sym_RBRACE, + ACTIONS(1135), 1, + anon_sym_LPAREN, + ACTIONS(1138), 1, + anon_sym_COLON, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1541), 1, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(1646), 1, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1204), 1, anon_sym_EQ, - ACTIONS(2104), 1, + ACTIONS(2150), 1, sym_identifier, - STATE(998), 1, - sym_string, - STATE(999), 1, - sym_nested_identifier, - STATE(1135), 1, - sym__module, + STATE(2742), 1, + aux_sym_object_repeat1, + ACTIONS(1143), 2, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(1119), 10, - anon_sym_LBRACE, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69514,7 +70185,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1648), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69530,15 +70201,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 25, + ACTIONS(1133), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -69555,27 +70224,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [1844] = 12, + [2369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LT, - ACTIONS(2134), 1, + ACTIONS(2152), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2138), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2154), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2140), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2142), 1, anon_sym_QMARK_DOT, - STATE(1009), 1, - sym_type_arguments, - STATE(1124), 1, - sym_arguments, - ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69591,14 +70279,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2136), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69608,13 +70288,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - ACTIONS(2132), 21, + [2436] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + anon_sym_LPAREN, + ACTIONS(1138), 1, + anon_sym_COLON, + ACTIONS(1141), 1, + anon_sym_LBRACK, + ACTIONS(1146), 1, + anon_sym_DOT, + ACTIONS(1154), 1, + anon_sym_EQ_GT, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1172), 1, + anon_sym_RBRACE, + ACTIONS(1204), 1, + anon_sym_EQ, + ACTIONS(2150), 1, + sym_identifier, + STATE(2824), 1, + aux_sym_object_repeat1, + ACTIONS(1143), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1119), 10, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + 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(1158), 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(1133), 22, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -69630,36 +70363,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1930] = 16, + anon_sym_instanceof, + [2527] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1455), 1, + ACTIONS(1135), 1, + anon_sym_LPAREN, + ACTIONS(1138), 1, + anon_sym_COLON, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1565), 1, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(1603), 1, - anon_sym_COLON, - ACTIONS(2104), 1, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1170), 1, + anon_sym_RBRACE, + ACTIONS(1204), 1, + anon_sym_EQ, + ACTIONS(2150), 1, sym_identifier, - STATE(998), 1, - sym_string, - STATE(999), 1, - sym_nested_identifier, - STATE(1135), 1, - sym__module, - ACTIONS(1119), 9, - anon_sym_LPAREN, - anon_sym_RBRACK, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(1143), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1119), 10, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69667,7 +70401,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1465), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69683,11 +70417,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 24, + ACTIONS(1133), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [2618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2096), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -69707,44 +70467,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(2098), 36, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - [2024] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [2685] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1141), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, - anon_sym_DOT, - ACTIONS(1156), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1594), 1, - anon_sym_EQ_GT, - ACTIONS(1699), 1, + ACTIONS(2156), 1, anon_sym_EQ, - ACTIONS(2126), 1, - sym_identifier, - STATE(1016), 1, - sym_string, - STATE(1026), 1, - sym_nested_identifier, - STATE(1257), 1, - sym__module, - ACTIONS(1119), 10, + ACTIONS(2161), 1, + anon_sym_LT, + ACTIONS(2164), 1, + anon_sym_DOT, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(2173), 1, + anon_sym_is, + STATE(1987), 1, + sym_type_arguments, + ACTIONS(2158), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2170), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1579), 3, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1075), 10, + anon_sym_as, + anon_sym_LPAREN, 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(1701), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69760,12 +70560,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 24, + ACTIONS(1073), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -69774,9 +70572,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -69784,35 +70580,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2116] = 13, + [2776] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LT, - ACTIONS(2134), 1, - anon_sym_EQ, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2146), 1, + ACTIONS(2175), 1, + anon_sym_EQ, + ACTIONS(2179), 1, + anon_sym_BANG, + ACTIONS(2181), 1, + anon_sym_in, + ACTIONS(2184), 1, + anon_sym_of, + ACTIONS(2186), 1, + anon_sym_COLON, + ACTIONS(2188), 1, anon_sym_EQ_GT, - STATE(1009), 1, - sym_type_arguments, - STATE(1124), 1, - sym_arguments, - ACTIONS(2136), 14, - anon_sym_as, + STATE(2452), 1, + sym_type_annotation, + STATE(2764), 1, + sym__initializer, + ACTIONS(2177), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(1075), 10, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -69837,10 +70636,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2132), 21, + ACTIONS(1073), 20, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -69859,10 +70657,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2203] = 3, + [2869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 23, + ACTIONS(2190), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -69886,7 +70684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2150), 36, + ACTIONS(2192), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -69923,15 +70721,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [2270] = 3, + [2936] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 23, - anon_sym_STAR, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, + anon_sym_LT, + ACTIONS(2134), 1, anon_sym_EQ, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + STATE(988), 1, + sym_type_arguments, + STATE(1130), 1, + sym_arguments, + ACTIONS(2136), 14, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + 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(2144), 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(2132), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -69950,19 +70795,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2154), 36, - anon_sym_as, - anon_sym_LBRACE, + [3023] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2156), 1, + anon_sym_EQ, + ACTIONS(2158), 1, anon_sym_COMMA, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(2194), 1, + anon_sym_LT, + ACTIONS(2197), 1, + anon_sym_DOT, + ACTIONS(2199), 1, + anon_sym_is, + STATE(426), 1, + sym_type_arguments, + ACTIONS(2170), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1075), 14, + anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -69978,19 +70851,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [2337] = 3, + ACTIONS(1073), 18, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [3112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 23, + ACTIONS(2084), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -70014,7 +70897,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2102), 36, + ACTIONS(2086), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -70051,10 +70934,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [2404] = 3, + [3179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 23, + ACTIONS(2201), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -70078,7 +70961,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 36, + ACTIONS(2203), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -70115,44 +70998,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [2471] = 15, + [3246] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1135), 1, - anon_sym_LPAREN, - ACTIONS(1138), 1, - anon_sym_COLON, - ACTIONS(1141), 1, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1172), 1, - anon_sym_RBRACE, - ACTIONS(1188), 1, - anon_sym_EQ, - ACTIONS(2160), 1, - sym_identifier, - STATE(2740), 1, - aux_sym_object_repeat1, - ACTIONS(1143), 2, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1119), 10, - sym__automatic_semicolon, + STATE(987), 1, + sym_type_arguments, + STATE(1132), 1, + sym_arguments, + ACTIONS(1509), 14, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, 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(1158), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70168,13 +71050,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 22, + ACTIONS(1505), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -70190,44 +71072,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2562] = 13, + [3333] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, + ACTIONS(501), 1, + anon_sym_DQUOTE, + ACTIONS(503), 1, + anon_sym_SQUOTE, + ACTIONS(1507), 1, anon_sym_EQ, - ACTIONS(1455), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(2106), 1, + ACTIONS(1545), 1, + anon_sym_EQ_GT, + ACTIONS(1596), 1, + anon_sym_in, + ACTIONS(1599), 1, + anon_sym_of, + ACTIONS(2104), 1, + sym_identifier, + STATE(1017), 1, + sym_nested_identifier, + STATE(1018), 1, + sym_string, + STATE(1105), 1, + sym__module, + ACTIONS(1119), 8, anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LT, - STATE(1012), 1, - sym_type_arguments, - STATE(1118), 1, - sym_arguments, - ACTIONS(1453), 14, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, 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(1465), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70243,10 +71126,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1449), 21, + ACTIONS(1133), 23, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -70265,10 +71149,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2649] = 3, + anon_sym_instanceof, + [3428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 23, + ACTIONS(2205), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -70292,7 +71177,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2164), 36, + ACTIONS(2207), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -70329,86 +71214,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [2716] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1135), 1, - anon_sym_LPAREN, - ACTIONS(1138), 1, - anon_sym_COLON, - ACTIONS(1141), 1, - anon_sym_LBRACK, - ACTIONS(1146), 1, - anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, - anon_sym_QMARK_DOT, - ACTIONS(1170), 1, - anon_sym_RBRACE, - ACTIONS(1188), 1, - anon_sym_EQ, - ACTIONS(2160), 1, - sym_identifier, - STATE(2778), 1, - aux_sym_object_repeat1, - ACTIONS(1143), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1119), 10, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - 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(1158), 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(1133), 22, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2807] = 3, + [3495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 23, + ACTIONS(2209), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -70432,7 +71241,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2168), 36, + ACTIONS(2211), 36, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -70469,38 +71278,109 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [2874] = 16, + [3562] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1121), 1, + anon_sym_RBRACE, + ACTIONS(1138), 1, + anon_sym_COLON, + ACTIONS(2213), 1, + anon_sym_EQ, + ACTIONS(2215), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2142), 1, + ACTIONS(2225), 1, + anon_sym_EQ_GT, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(2170), 1, - anon_sym_EQ, - ACTIONS(2174), 1, + STATE(2742), 1, + aux_sym_object_repeat1, + ACTIONS(2220), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1075), 12, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + 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(2229), 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(1073), 20, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2176), 1, anon_sym_in, - ACTIONS(2179), 1, - anon_sym_of, - ACTIONS(2181), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [3650] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1135), 1, + anon_sym_LPAREN, + ACTIONS(1138), 1, anon_sym_COLON, - ACTIONS(2183), 1, + ACTIONS(1141), 1, + anon_sym_LBRACK, + ACTIONS(1146), 1, + anon_sym_DOT, + ACTIONS(1154), 1, anon_sym_EQ_GT, - STATE(2294), 1, - sym_type_annotation, - STATE(2812), 1, - sym__initializer, - ACTIONS(2172), 3, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1170), 1, + anon_sym_RBRACE, + ACTIONS(1204), 1, + anon_sym_EQ, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(1143), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1119), 12, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(1037), 10, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -70509,7 +71389,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2144), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70525,12 +71405,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 20, + ACTIONS(1133), 20, anon_sym_STAR, - anon_sym_LT, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -70546,38 +71426,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2967] = 15, + [3738] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1135), 1, + anon_sym_LPAREN, + ACTIONS(1138), 1, + anon_sym_COLON, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2146), 1, + ACTIONS(1146), 1, + anon_sym_DOT, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(2185), 1, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1172), 1, + anon_sym_RBRACE, + ACTIONS(1204), 1, anon_sym_EQ, - ACTIONS(2190), 1, + STATE(2824), 1, + aux_sym_object_repeat1, + ACTIONS(1143), 2, anon_sym_LT, - ACTIONS(2193), 1, - anon_sym_DOT, - ACTIONS(2200), 1, - anon_sym_is, - STATE(1995), 1, - sym_type_arguments, - ACTIONS(2187), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2197), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1577), 3, + anon_sym_QMARK, + ACTIONS(1119), 12, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1037), 10, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -70586,7 +71463,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70602,19 +71479,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 19, + ACTIONS(1133), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -70622,45 +71500,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3058] = 17, + [3826] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(1451), 1, + ACTIONS(1579), 1, + anon_sym_COMMA, + ACTIONS(2134), 1, anon_sym_EQ, - ACTIONS(1455), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1463), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1565), 1, + ACTIONS(2188), 1, anon_sym_EQ_GT, - ACTIONS(1745), 1, - anon_sym_in, - ACTIONS(1748), 1, - anon_sym_of, - ACTIONS(2104), 1, - sym_identifier, - STATE(998), 1, - sym_string, - STATE(999), 1, - sym_nested_identifier, - STATE(1135), 1, - sym__module, - ACTIONS(1119), 8, + ACTIONS(2194), 1, + anon_sym_LT, + ACTIONS(2199), 1, + anon_sym_is, + ACTIONS(2231), 1, + anon_sym_DOT, + STATE(426), 1, + sym_type_arguments, + ACTIONS(2170), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1075), 13, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, 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(1465), 15, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70676,12 +71555,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 23, + ACTIONS(1073), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_in, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -70689,9 +71566,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -70699,39 +71574,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3153] = 14, + [3914] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2158), 1, + anon_sym_COMMA, + ACTIONS(2194), 1, + anon_sym_LT, + ACTIONS(2199), 1, + anon_sym_is, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2146), 1, + ACTIONS(2225), 1, anon_sym_EQ_GT, - ACTIONS(2185), 1, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(2233), 1, anon_sym_EQ, - ACTIONS(2187), 1, - anon_sym_COMMA, - ACTIONS(2202), 1, - anon_sym_LT, - ACTIONS(2205), 1, + ACTIONS(2235), 1, anon_sym_DOT, - ACTIONS(2207), 1, - anon_sym_is, - STATE(420), 1, + STATE(426), 1, sym_type_arguments, - ACTIONS(2197), 3, + ACTIONS(2170), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1037), 14, + ACTIONS(1075), 13, + sym__automatic_semicolon, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -70740,7 +71613,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + ACTIONS(2229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70756,7 +71629,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 18, + ACTIONS(1073), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -70775,16 +71648,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3242] = 3, + [4002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 23, + ACTIONS(2243), 1, + anon_sym_DOT, + ACTIONS(2237), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2240), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2190), 19, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -70792,9 +71673,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -70802,18 +71681,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2211), 36, + ACTIONS(2192), 32, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -70839,18 +71714,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [3309] = 3, + [4074] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 23, - anon_sym_STAR, + ACTIONS(1138), 1, + anon_sym_COLON, + ACTIONS(1170), 1, + anon_sym_RBRACE, + ACTIONS(2213), 1, anon_sym_EQ, + ACTIONS(2215), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2225), 1, + anon_sym_EQ_GT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(2220), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1075), 12, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + 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(2229), 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(1073), 20, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -70866,18 +71788,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2094), 36, + [4162] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2243), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(2246), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2190), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2192), 32, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -70903,44 +71853,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [3376] = 15, + [4232] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1121), 1, - anon_sym_RBRACE, - ACTIONS(1135), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(1138), 1, - anon_sym_COLON, - ACTIONS(1141), 1, + ACTIONS(2114), 1, + anon_sym_LT, + ACTIONS(2134), 1, + anon_sym_EQ, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(2225), 1, anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(1188), 1, - anon_sym_EQ, - ACTIONS(2160), 1, - sym_identifier, - STATE(2782), 1, - aux_sym_object_repeat1, - ACTIONS(1143), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1119), 10, + STATE(1403), 1, + sym_type_arguments, + STATE(1418), 1, + sym_arguments, + ACTIONS(2136), 13, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, 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(1158), 15, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -70956,13 +71904,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 22, + ACTIONS(2132), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -70978,46 +71926,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3467] = 17, + [4318] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1455), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1565), 1, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(1596), 1, - anon_sym_in, - ACTIONS(1599), 1, - anon_sym_of, - ACTIONS(2104), 1, - sym_identifier, - STATE(998), 1, - sym_string, - STATE(999), 1, - sym_nested_identifier, - STATE(1135), 1, - sym__module, - ACTIONS(1119), 8, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(2112), 1, anon_sym_LPAREN, + ACTIONS(2114), 1, + anon_sym_LT, + STATE(1406), 1, + sym_type_arguments, + STATE(1421), 1, + sym_arguments, + ACTIONS(1509), 13, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, 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(1465), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71033,11 +71977,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 23, + ACTIONS(1505), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -71056,37 +71999,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [3562] = 14, + [4404] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2187), 1, - anon_sym_COMMA, - ACTIONS(2202), 1, - anon_sym_LT, - ACTIONS(2207), 1, - anon_sym_is, + ACTIONS(1138), 1, + anon_sym_COLON, + ACTIONS(1172), 1, + anon_sym_RBRACE, ACTIONS(2213), 1, anon_sym_EQ, ACTIONS(2215), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2217), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2219), 1, + ACTIONS(2225), 1, anon_sym_EQ_GT, - ACTIONS(2221), 1, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - STATE(420), 1, - sym_type_arguments, - ACTIONS(2197), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1037), 13, + STATE(2824), 1, + aux_sym_object_repeat1, + ACTIONS(2220), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1075), 12, sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -71096,7 +72036,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(2229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71112,18 +72052,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 18, + ACTIONS(1073), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -71131,32 +72073,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3650] = 6, + [4492] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2231), 1, - anon_sym_DOT, - ACTIONS(2225), 2, - anon_sym_COMMA, + ACTIONS(1121), 1, + anon_sym_RBRACE, + ACTIONS(1135), 1, + anon_sym_LPAREN, + ACTIONS(1138), 1, + anon_sym_COLON, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(2228), 4, + ACTIONS(1146), 1, + anon_sym_DOT, + ACTIONS(1154), 1, + anon_sym_EQ_GT, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1204), 1, + anon_sym_EQ, + STATE(2742), 1, + aux_sym_object_repeat1, + ACTIONS(1143), 2, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2156), 19, + anon_sym_QMARK, + ACTIONS(1119), 12, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + 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(1158), 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(1133), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -71164,15 +72147,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 32, + [4580] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2156), 1, + anon_sym_EQ, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(1075), 15, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71188,32 +72192,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [3722] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2231), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(2234), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2156), 20, + ACTIONS(1073), 22, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -71221,7 +72205,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -71229,15 +72215,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 32, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + [4657] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(1569), 1, + anon_sym_DOT, + ACTIONS(1573), 1, + anon_sym_EQ_GT, + ACTIONS(1575), 1, anon_sym_QMARK_DOT, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_LT, + STATE(1447), 1, + sym_type_arguments, + STATE(1612), 1, + sym_arguments, + ACTIONS(1509), 11, + anon_sym_as, + anon_sym_COMMA, + 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, + anon_sym_LBRACE_PIPE, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71253,44 +72264,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [3792] = 14, + ACTIONS(1505), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [4742] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1121), 1, - anon_sym_RBRACE, - ACTIONS(1135), 1, - anon_sym_LPAREN, - ACTIONS(1138), 1, - anon_sym_COLON, - ACTIONS(1141), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, - anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1188), 1, - anon_sym_EQ, - STATE(2782), 1, - aux_sym_object_repeat1, - ACTIONS(1143), 2, + ACTIONS(2158), 1, + anon_sym_COMMA, + ACTIONS(2194), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1119), 12, - sym__automatic_semicolon, + ACTIONS(2197), 1, + anon_sym_DOT, + ACTIONS(2199), 1, + anon_sym_is, + ACTIONS(2249), 1, + anon_sym_EQ, + ACTIONS(2251), 1, + anon_sym_EQ_GT, + STATE(426), 1, + sym_type_arguments, + ACTIONS(2170), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1075), 12, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -71299,7 +72324,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1158), 15, + anon_sym_implements, + ACTIONS(2253), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71315,20 +72341,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 20, + ACTIONS(1073), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -71336,35 +72360,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3880] = 14, + [4829] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 1, + ACTIONS(1705), 1, anon_sym_COMMA, - ACTIONS(2134), 1, - anon_sym_EQ, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2183), 1, + ACTIONS(2156), 1, + anon_sym_EQ, + ACTIONS(2166), 1, anon_sym_EQ_GT, - ACTIONS(2202), 1, - anon_sym_LT, - ACTIONS(2207), 1, - anon_sym_is, - ACTIONS(2237), 1, + ACTIONS(2255), 1, anon_sym_DOT, - STATE(420), 1, - sym_type_arguments, - ACTIONS(2197), 3, + ACTIONS(1707), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1037), 13, + ACTIONS(1075), 14, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_LT_EQ, @@ -71375,7 +72394,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2144), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71391,10 +72410,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 18, + ACTIONS(1073), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -71410,33 +72430,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3968] = 13, + [4910] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, + anon_sym_LT, + ACTIONS(2134), 1, + anon_sym_EQ, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_LT, - STATE(1342), 1, + ACTIONS(2188), 1, + anon_sym_EQ_GT, + STATE(988), 1, sym_type_arguments, - STATE(1487), 1, + STATE(1130), 1, sym_arguments, - ACTIONS(1453), 13, - sym__automatic_semicolon, + ACTIONS(2136), 12, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -71445,7 +72464,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1465), 15, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71461,7 +72480,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1449), 21, + ACTIONS(2132), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -71483,35 +72502,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4054] = 14, + [4995] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1121), 1, - anon_sym_RBRACE, - ACTIONS(1138), 1, - anon_sym_COLON, - ACTIONS(2215), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(2219), 1, + ACTIONS(1513), 1, + anon_sym_DOT, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(2221), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(2239), 1, + ACTIONS(1553), 1, anon_sym_EQ, - ACTIONS(2241), 1, - anon_sym_LPAREN, - ACTIONS(2247), 1, - anon_sym_DOT, - STATE(2782), 1, - aux_sym_object_repeat1, - ACTIONS(2244), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1037), 12, - sym__automatic_semicolon, + ACTIONS(1119), 15, anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -71520,7 +72531,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(1561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71536,12 +72547,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 20, + ACTIONS(1133), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -71557,13 +72570,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4142] = 14, + [5072] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1135), 1, - anon_sym_LPAREN, - ACTIONS(1138), 1, - anon_sym_COLON, ACTIONS(1141), 1, anon_sym_LBRACK, ACTIONS(1146), 1, @@ -71572,25 +72581,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(1172), 1, - anon_sym_RBRACE, - ACTIONS(1188), 1, + ACTIONS(1210), 1, + anon_sym_COLON, + ACTIONS(1242), 1, anon_sym_EQ, - STATE(2740), 1, - aux_sym_object_repeat1, - ACTIONS(1143), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1119), 12, + ACTIONS(2150), 1, + sym_identifier, + ACTIONS(1119), 11, sym__automatic_semicolon, - anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, 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, @@ -71610,12 +72615,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 20, + ACTIONS(1133), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -71631,35 +72639,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4230] = 14, + anon_sym_instanceof, + [5153] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1138), 1, - anon_sym_COLON, - ACTIONS(1170), 1, - anon_sym_RBRACE, - ACTIONS(2215), 1, + ACTIONS(2257), 1, + anon_sym_EQ, + ACTIONS(2259), 1, + anon_sym_LBRACE, + ACTIONS(2261), 1, + anon_sym_COMMA, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2219), 1, + ACTIONS(2265), 1, + anon_sym_LT, + ACTIONS(2268), 1, + anon_sym_DOT, + ACTIONS(2270), 1, anon_sym_EQ_GT, - ACTIONS(2221), 1, + ACTIONS(2272), 1, anon_sym_QMARK_DOT, - ACTIONS(2239), 1, - anon_sym_EQ, - ACTIONS(2241), 1, - anon_sym_LPAREN, - ACTIONS(2247), 1, - anon_sym_DOT, - STATE(2778), 1, - aux_sym_object_repeat1, - ACTIONS(2244), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1037), 12, - sym__automatic_semicolon, + ACTIONS(2276), 1, + anon_sym_LBRACE_PIPE, + STATE(2637), 1, + aux_sym_extends_clause_repeat1, + STATE(2779), 1, + sym_type_arguments, + ACTIONS(1075), 10, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -71668,7 +72676,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(2274), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71684,12 +72692,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 20, + ACTIONS(1073), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -71705,35 +72714,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4318] = 14, + [5242] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1138), 1, - anon_sym_COLON, - ACTIONS(1172), 1, - anon_sym_RBRACE, - ACTIONS(2215), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(2219), 1, + ACTIONS(1513), 1, + anon_sym_DOT, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(2221), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(2239), 1, + ACTIONS(1553), 1, anon_sym_EQ, - ACTIONS(2241), 1, - anon_sym_LPAREN, - ACTIONS(2247), 1, - anon_sym_DOT, - STATE(2740), 1, - aux_sym_object_repeat1, - ACTIONS(2244), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1037), 12, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(2278), 1, anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(2281), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1119), 14, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -71742,7 +72748,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(1561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71758,20 +72764,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 20, + ACTIONS(1133), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -71779,26 +72784,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4406] = 13, + [5323] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, - anon_sym_LPAREN, ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2114), 1, anon_sym_LT, ACTIONS(2134), 1, anon_sym_EQ, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2219), 1, - anon_sym_EQ_GT, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - STATE(1318), 1, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + STATE(1403), 1, sym_type_arguments, - STATE(1467), 1, + STATE(1418), 1, sym_arguments, ACTIONS(2136), 13, sym__automatic_semicolon, @@ -71852,103 +72855,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4492] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1135), 1, - anon_sym_LPAREN, - ACTIONS(1138), 1, - anon_sym_COLON, - ACTIONS(1141), 1, - anon_sym_LBRACK, - ACTIONS(1146), 1, - anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, - anon_sym_QMARK_DOT, - ACTIONS(1170), 1, - anon_sym_RBRACE, - ACTIONS(1188), 1, - anon_sym_EQ, - STATE(2778), 1, - aux_sym_object_repeat1, - ACTIONS(1143), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1119), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - 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(1158), 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(1133), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [4580] = 11, + [5406] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2146), 1, - anon_sym_EQ_GT, - ACTIONS(2185), 1, - anon_sym_EQ, ACTIONS(2249), 1, - anon_sym_DOT, - ACTIONS(1705), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1703), 5, - sym__automatic_semicolon, + anon_sym_EQ, + ACTIONS(2251), 1, + anon_sym_EQ_GT, + ACTIONS(2284), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1037), 10, + ACTIONS(2286), 1, + anon_sym_LT, + ACTIONS(2289), 1, + anon_sym_DOT, + STATE(426), 1, + sym_type_arguments, + STATE(2522), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(2276), 2, + anon_sym_LBRACE, + anon_sym_implements, + ACTIONS(1075), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -71959,7 +72890,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + ACTIONS(2253), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -71975,11 +72906,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 20, + ACTIONS(1073), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -71988,7 +72918,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -71996,7 +72928,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4661] = 11, + [5493] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 1, @@ -72007,11 +72939,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(1196), 1, + ACTIONS(1188), 1, anon_sym_COLON, - ACTIONS(1238), 1, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(2160), 1, + ACTIONS(2150), 1, sym_identifier, ACTIONS(1119), 11, sym__automatic_semicolon, @@ -72066,35 +72998,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [4742] = 14, + [5574] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2187), 1, - anon_sym_COMMA, - ACTIONS(2202), 1, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, anon_sym_LT, - ACTIONS(2205), 1, - anon_sym_DOT, - ACTIONS(2207), 1, - anon_sym_is, - ACTIONS(2251), 1, + ACTIONS(2134), 1, anon_sym_EQ, - ACTIONS(2253), 1, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2270), 1, anon_sym_EQ_GT, - STATE(420), 1, + ACTIONS(2272), 1, + anon_sym_QMARK_DOT, + ACTIONS(2291), 1, + anon_sym_DOT, + STATE(1451), 1, sym_type_arguments, - ACTIONS(2197), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1037), 12, + STATE(1604), 1, + sym_arguments, + ACTIONS(2136), 11, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72103,8 +73030,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2255), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72120,10 +73047,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 18, + ACTIONS(2132), 22, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -72131,7 +73060,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -72139,36 +73070,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4829] = 11, + [5659] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1204), 1, - anon_sym_COLON, - ACTIONS(1238), 1, - anon_sym_EQ, - ACTIONS(2160), 1, - sym_identifier, - ACTIONS(1119), 11, - sym__automatic_semicolon, + ACTIONS(1551), 1, + anon_sym_EQ_GT, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, + anon_sym_LT, + STATE(987), 1, + sym_type_arguments, + STATE(1132), 1, + sym_arguments, + ACTIONS(1509), 12, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, 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(1158), 15, + anon_sym_implements, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72184,12 +73120,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 24, + ACTIONS(1505), 21, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -72208,37 +73142,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [4910] = 16, + [5744] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2146), 1, + ACTIONS(1513), 1, + anon_sym_DOT, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(2202), 1, - anon_sym_LT, - ACTIONS(2257), 1, + ACTIONS(1519), 1, + anon_sym_QMARK_DOT, + ACTIONS(1553), 1, anon_sym_EQ, - ACTIONS(2263), 1, - anon_sym_RPAREN, - ACTIONS(2267), 1, - anon_sym_DOT, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2272), 1, - anon_sym_is, - STATE(420), 1, - sym_type_arguments, - ACTIONS(2197), 2, + ACTIONS(2278), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2281), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2260), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1037), 10, + ACTIONS(1095), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1119), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -72249,7 +73176,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + ACTIONS(1561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72265,12 +73192,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 18, + ACTIONS(1133), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -72284,32 +73213,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5001] = 14, + [5827] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1577), 1, + ACTIONS(1579), 1, anon_sym_COMMA, - ACTIONS(2202), 1, + ACTIONS(2194), 1, anon_sym_LT, - ACTIONS(2207), 1, + ACTIONS(2199), 1, anon_sym_is, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(2274), 1, + ACTIONS(2293), 1, anon_sym_EQ, - ACTIONS(2276), 1, + ACTIONS(2295), 1, anon_sym_DOT, - ACTIONS(2278), 1, + ACTIONS(2297), 1, anon_sym_EQ_GT, - STATE(420), 1, + STATE(426), 1, sym_type_arguments, - ACTIONS(2197), 3, + ACTIONS(2170), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1037), 12, + ACTIONS(1075), 12, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -72322,7 +73251,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2280), 15, + ACTIONS(2299), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72338,7 +73267,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 18, + ACTIONS(1073), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -72357,40 +73286,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5088] = 13, + [5914] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_LT, - ACTIONS(2134), 1, - anon_sym_EQ, - ACTIONS(2282), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(2286), 1, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(2288), 1, + ACTIONS(1156), 1, anon_sym_QMARK_DOT, - STATE(1413), 1, - sym_type_arguments, - STATE(1565), 1, - sym_arguments, - ACTIONS(2136), 11, - anon_sym_as, + ACTIONS(1192), 1, + anon_sym_COLON, + ACTIONS(1242), 1, + anon_sym_EQ, + ACTIONS(2150), 1, + sym_identifier, + ACTIONS(1119), 11, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, 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, - anon_sym_LBRACE_PIPE, - ACTIONS(2144), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72406,11 +73331,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2132), 22, + ACTIONS(1133), 24, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -72429,27 +73355,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5173] = 9, + anon_sym_instanceof, + [5995] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2146), 1, - anon_sym_EQ_GT, - ACTIONS(2185), 1, + ACTIONS(2156), 1, anon_sym_EQ, - ACTIONS(1037), 15, - anon_sym_as, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(2301), 1, + anon_sym_DOT, + ACTIONS(1707), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1705), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1075), 10, + anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72458,7 +73389,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72474,7 +73405,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1073), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -72487,9 +73418,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -72497,31 +73426,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5250] = 13, + [6076] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1455), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1463), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1541), 1, + ACTIONS(2166), 1, anon_sym_EQ_GT, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2194), 1, anon_sym_LT, - STATE(1012), 1, + ACTIONS(2303), 1, + anon_sym_EQ, + ACTIONS(2309), 1, + anon_sym_RPAREN, + ACTIONS(2313), 1, + anon_sym_DOT, + ACTIONS(2315), 1, + anon_sym_QMARK, + ACTIONS(2318), 1, + anon_sym_is, + STATE(426), 1, sym_type_arguments, - STATE(1118), 1, - sym_arguments, - ACTIONS(1453), 12, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2170), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2306), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1075), 10, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72530,8 +73466,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(1465), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72547,21 +73482,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1449), 21, + ACTIONS(1073), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -72569,32 +73501,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5335] = 13, + [6167] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2158), 1, + anon_sym_COMMA, + ACTIONS(2194), 1, anon_sym_LT, - ACTIONS(2134), 1, + ACTIONS(2199), 1, + anon_sym_is, + ACTIONS(2257), 1, anon_sym_EQ, - ACTIONS(2138), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2183), 1, + ACTIONS(2270), 1, anon_sym_EQ_GT, - STATE(1009), 1, + ACTIONS(2272), 1, + anon_sym_QMARK_DOT, + ACTIONS(2320), 1, + anon_sym_DOT, + STATE(426), 1, sym_type_arguments, - STATE(1124), 1, - sym_arguments, - ACTIONS(2136), 12, + ACTIONS(2170), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1075), 11, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72603,7 +73537,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2144), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(2274), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72619,11 +73554,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2132), 21, + ACTIONS(1073), 19, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -72631,9 +73566,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -72641,27 +73574,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5420] = 9, + [6254] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, + anon_sym_LT, + ACTIONS(2134), 1, + anon_sym_EQ, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1567), 1, - anon_sym_EQ, - ACTIONS(1119), 15, + ACTIONS(2251), 1, + anon_sym_EQ_GT, + STATE(988), 1, + sym_type_arguments, + STATE(1130), 1, + sym_arguments, + ACTIONS(2136), 12, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72670,7 +73607,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1575), 15, + anon_sym_implements, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72686,11 +73624,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 22, + ACTIONS(2132), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -72709,33 +73646,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5497] = 14, + [6339] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, + ACTIONS(1513), 1, + anon_sym_DOT, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(2251), 1, - anon_sym_EQ, - ACTIONS(2253), 1, + ACTIONS(1545), 1, anon_sym_EQ_GT, - ACTIONS(2292), 1, - anon_sym_COMMA, - ACTIONS(2294), 1, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, anon_sym_LT, - ACTIONS(2297), 1, - anon_sym_DOT, - STATE(420), 1, + STATE(987), 1, sym_type_arguments, - STATE(2602), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(2290), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(1037), 10, + STATE(1132), 1, + sym_arguments, + ACTIONS(1509), 12, anon_sym_as, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72744,7 +73680,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2255), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72760,7 +73696,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 21, + ACTIONS(1505), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -72782,59 +73718,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5584] = 12, + [6424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_LT, - ACTIONS(2134), 1, - anon_sym_EQ, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - STATE(1318), 1, - sym_type_arguments, - STATE(1467), 1, - sym_arguments, - ACTIONS(2136), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - 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(2144), 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(2132), 21, + ACTIONS(2190), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -72853,41 +73745,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5667] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_EQ_GT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1567), 1, - anon_sym_EQ, - ACTIONS(2299), 1, - anon_sym_COMMA, - ACTIONS(2302), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1119), 14, + ACTIONS(2192), 33, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - 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(1575), 15, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72903,52 +73771,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [5748] = 12, + 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, + [6488] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(1567), 1, + ACTIONS(1188), 1, + anon_sym_COLON, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(2299), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2302), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1095), 3, + ACTIONS(1119), 13, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1119), 10, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -72957,7 +73808,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1575), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -72973,7 +73824,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 20, + ACTIONS(1133), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -72986,7 +73837,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -72994,33 +73847,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5831] = 15, + [6566] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2286), 1, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2225), 1, anon_sym_EQ_GT, - ACTIONS(2288), 1, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(2290), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2305), 1, + ACTIONS(2233), 1, anon_sym_EQ, - ACTIONS(2307), 1, - anon_sym_LBRACE, - ACTIONS(2309), 1, - anon_sym_COMMA, - ACTIONS(2311), 1, - anon_sym_LT, - ACTIONS(2314), 1, - anon_sym_DOT, - STATE(2606), 1, - aux_sym_extends_clause_repeat1, - STATE(2757), 1, - sym_type_arguments, - ACTIONS(1037), 10, + ACTIONS(2322), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1075), 12, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -73030,7 +73876,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2316), 15, + ACTIONS(2229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73046,10 +73892,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 21, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -73068,60 +73915,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5920] = 13, + [6644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1547), 1, - anon_sym_LBRACK, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1553), 1, - anon_sym_EQ_GT, - ACTIONS(1555), 1, - anon_sym_QMARK_DOT, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_LT, - STATE(1416), 1, - sym_type_arguments, - STATE(1568), 1, - sym_arguments, - ACTIONS(1453), 11, - anon_sym_as, - anon_sym_COMMA, - 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, - anon_sym_LBRACE_PIPE, - ACTIONS(1465), 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(1449), 22, + ACTIONS(2146), 23, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -73140,41 +73942,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6005] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 1, + ACTIONS(2148), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LT, - ACTIONS(2134), 1, - anon_sym_EQ, - ACTIONS(2138), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - STATE(1009), 1, - sym_type_arguments, - STATE(1124), 1, - sym_arguments, - ACTIONS(2136), 12, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - 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, - anon_sym_implements, - ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73190,10 +73968,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2132), 21, + 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, + [6708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2096), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -73212,34 +74003,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6090] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, + ACTIONS(2098), 33, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2202), 1, - anon_sym_LT, - ACTIONS(2207), 1, - anon_sym_is, - ACTIONS(2282), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2286), 1, - anon_sym_EQ_GT, - ACTIONS(2288), 1, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2305), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [6772] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1095), 1, + anon_sym_COMMA, + ACTIONS(1507), 1, anon_sym_EQ, - ACTIONS(2318), 1, + ACTIONS(1511), 1, + anon_sym_LBRACK, + ACTIONS(1513), 1, anon_sym_DOT, - STATE(420), 1, - sym_type_arguments, - ACTIONS(2197), 3, + ACTIONS(1519), 1, + anon_sym_QMARK_DOT, + ACTIONS(1545), 1, + anon_sym_EQ_GT, + ACTIONS(2281), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1037), 11, + ACTIONS(1119), 13, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -73248,8 +74070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(2316), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73265,11 +74086,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 19, + ACTIONS(1133), 19, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -73285,32 +74106,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6177] = 13, + [6852] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1455), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1463), 1, + ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(1565), 1, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1594), 1, anon_sym_EQ_GT, - ACTIONS(2106), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2108), 1, + ACTIONS(2114), 1, anon_sym_LT, - STATE(1012), 1, + STATE(1406), 1, sym_type_arguments, - STATE(1118), 1, + STATE(1421), 1, sym_arguments, - ACTIONS(1453), 12, + ACTIONS(1509), 11, + sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -73319,7 +74139,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1465), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73335,7 +74155,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1449), 21, + ACTIONS(1505), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -73357,32 +74177,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6262] = 11, + [6936] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, + ACTIONS(1705), 1, anon_sym_COMMA, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2146), 1, + ACTIONS(2225), 1, anon_sym_EQ_GT, - ACTIONS(2185), 1, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(2233), 1, anon_sym_EQ, - ACTIONS(2320), 1, + ACTIONS(2324), 1, anon_sym_DOT, - ACTIONS(1705), 3, + ACTIONS(1707), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1037), 14, + ACTIONS(1075), 13, + sym__automatic_semicolon, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -73391,7 +74210,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + ACTIONS(2229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73407,7 +74226,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 19, + ACTIONS(1073), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -73427,7 +74246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6343] = 11, + [7016] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 1, @@ -73438,14 +74257,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(1200), 1, + ACTIONS(1192), 1, anon_sym_COLON, - ACTIONS(1238), 1, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(2160), 1, - sym_identifier, - ACTIONS(1119), 11, + ACTIONS(1119), 13, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -73453,6 +74271,7 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -73472,9 +74291,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 24, + ACTIONS(1133), 22, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -73496,95 +74314,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [6424] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2231), 1, - anon_sym_DOT, - ACTIONS(1407), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2225), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(2228), 3, - anon_sym_LT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2156), 20, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2158), 26, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [6496] = 11, + [7094] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_COMMA, - ACTIONS(2213), 1, - anon_sym_EQ, - ACTIONS(2215), 1, + ACTIONS(1192), 1, + anon_sym_COLON, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2219), 1, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2225), 1, anon_sym_EQ_GT, - ACTIONS(2221), 1, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(2322), 1, - anon_sym_DOT, - ACTIONS(1705), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1037), 13, + ACTIONS(2233), 1, + anon_sym_EQ, + ACTIONS(1075), 13, sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, @@ -73595,7 +74343,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(2229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73611,11 +74359,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 19, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -73623,7 +74372,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -73631,31 +74382,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6576] = 11, + [7172] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_COMMA, - ACTIONS(2134), 1, - anon_sym_EQ, - ACTIONS(2138), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2183), 1, - anon_sym_EQ_GT, - ACTIONS(2324), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1705), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1037), 13, + ACTIONS(1154), 1, + anon_sym_EQ_GT, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1242), 1, + anon_sym_EQ, + ACTIONS(1119), 14, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -73664,7 +74410,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2144), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73680,11 +74426,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 19, + ACTIONS(1133), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -73692,7 +74439,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -73700,14 +74449,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6656] = 35, + [7248] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(123), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1670), 1, anon_sym_LT, @@ -73741,23 +74490,23 @@ static uint16_t ts_small_parse_table[] = { sym_readonly, ACTIONS(2360), 1, anon_sym_PIPE_RBRACE, - STATE(1874), 1, + STATE(1868), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2823), 1, + STATE(2792), 1, aux_sym_object_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - STATE(3256), 1, + STATE(3299), 1, sym_object, - STATE(3265), 1, + STATE(3300), 1, sym_array, ACTIONS(2354), 2, anon_sym_get, @@ -73766,16 +74515,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1929), 3, + STATE(1931), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2824), 4, + STATE(2795), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - STATE(2254), 6, + STATE(2235), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -73793,25 +74542,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [6784] = 35, + [7376] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(123), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2330), 1, anon_sym_STAR, - ACTIONS(2332), 1, - anon_sym_COMMA, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(2338), 1, - anon_sym_SEMI, ACTIONS(2340), 1, anon_sym_LBRACK, ACTIONS(2344), 1, @@ -73822,435 +74567,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2350), 1, sym_number, - ACTIONS(2360), 1, - anon_sym_PIPE_RBRACE, ACTIONS(2364), 1, anon_sym_export, ACTIONS(2366), 1, - anon_sym_RBRACE, - ACTIONS(2368), 1, - anon_sym_async, - ACTIONS(2370), 1, - anon_sym_static, - ACTIONS(2376), 1, - sym_readonly, - STATE(1874), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2656), 1, - aux_sym_object_repeat1, - STATE(2909), 1, - sym_type_parameters, - STATE(3256), 1, - sym_object, - STATE(3265), 1, - sym_array, - ACTIONS(2372), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2374), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2654), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2254), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2362), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [6912] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1095), 1, - anon_sym_COMMA, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1565), 1, - anon_sym_EQ_GT, - ACTIONS(2302), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1119), 13, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - 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(1465), 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(1133), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2092), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2094), 33, - sym__automatic_semicolon, - anon_sym_as, anon_sym_COMMA, + ACTIONS(2368), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7056] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2328), 1, - anon_sym_export, - ACTIONS(2330), 1, - anon_sym_STAR, - ACTIONS(2332), 1, - anon_sym_COMMA, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2338), 1, + ACTIONS(2370), 1, anon_sym_SEMI, - ACTIONS(2340), 1, - anon_sym_LBRACK, - ACTIONS(2342), 1, + ACTIONS(2372), 1, anon_sym_async, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2350), 1, - sym_number, - ACTIONS(2352), 1, + ACTIONS(2374), 1, anon_sym_static, - ACTIONS(2358), 1, + ACTIONS(2380), 1, sym_readonly, - ACTIONS(2360), 1, + ACTIONS(2382), 1, anon_sym_PIPE_RBRACE, - ACTIONS(2378), 1, - anon_sym_RBRACE, - STATE(1874), 1, + STATE(1868), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2823), 1, + STATE(2733), 1, aux_sym_object_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - STATE(3256), 1, + STATE(3299), 1, sym_object, - STATE(3265), 1, + STATE(3300), 1, sym_array, - ACTIONS(2354), 2, + ACTIONS(2376), 2, anon_sym_get, anon_sym_set, - ACTIONS(2356), 3, + ACTIONS(2378), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1929), 3, + STATE(1931), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2824), 4, + STATE(2731), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - STATE(2254), 6, + STATE(2245), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2326), 10, + ACTIONS(2362), 10, anon_sym_namespace, anon_sym_type, sym_identifier, anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [7184] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1141), 1, - anon_sym_LBRACK, - ACTIONS(1146), 1, - anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, - anon_sym_QMARK_DOT, - ACTIONS(1196), 1, - anon_sym_COLON, - ACTIONS(1238), 1, - anon_sym_EQ, - ACTIONS(1119), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - 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(1158), 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(1133), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7262] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2251), 1, - anon_sym_EQ, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2294), 1, - anon_sym_LT, - ACTIONS(2297), 1, - anon_sym_DOT, - STATE(420), 1, - sym_type_arguments, - ACTIONS(2380), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(1037), 10, - anon_sym_as, - anon_sym_LPAREN, - 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(2255), 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(1035), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7344] = 3, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [7504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 23, + ACTIONS(2205), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -74274,7 +74662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2102), 33, + ACTIONS(2207), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -74308,22 +74696,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7408] = 10, + [7568] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1196), 1, - anon_sym_COLON, - ACTIONS(2213), 1, - anon_sym_EQ, - ACTIONS(2215), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(2219), 1, + ACTIONS(1146), 1, + anon_sym_DOT, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(2221), 1, + ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(1037), 13, + ACTIONS(1210), 1, + anon_sym_COLON, + ACTIONS(1242), 1, + anon_sym_EQ, + ACTIONS(1119), 13, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -74337,7 +74725,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74353,7 +74741,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1133), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -74376,27 +74764,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7486] = 10, + [7646] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1200), 1, - anon_sym_COLON, - ACTIONS(2213), 1, - anon_sym_EQ, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2219), 1, - anon_sym_EQ_GT, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(1037), 13, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2156), 1, + anon_sym_EQ, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(2384), 2, sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1075), 12, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74405,7 +74793,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74421,7 +74809,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -74444,14 +74832,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7564] = 35, + [7724] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(123), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1670), 1, anon_sym_LT, @@ -74459,12 +74847,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_export, ACTIONS(2330), 1, anon_sym_STAR, - ACTIONS(2332), 1, - anon_sym_COMMA, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(2338), 1, - anon_sym_SEMI, ACTIONS(2340), 1, anon_sym_LBRACK, ACTIONS(2342), 1, @@ -74481,27 +74865,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, ACTIONS(2358), 1, sym_readonly, - ACTIONS(2360), 1, - anon_sym_PIPE_RBRACE, + ACTIONS(2366), 1, + anon_sym_COMMA, + ACTIONS(2370), 1, + anon_sym_SEMI, ACTIONS(2382), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(2386), 1, anon_sym_RBRACE, - STATE(1874), 1, + STATE(1868), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2823), 1, + STATE(2792), 1, aux_sym_object_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - STATE(3256), 1, + STATE(3299), 1, sym_object, - STATE(3265), 1, + STATE(3300), 1, sym_array, ACTIONS(2354), 2, anon_sym_get, @@ -74510,16 +74898,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1929), 3, + STATE(1931), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2824), 4, + STATE(2795), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - STATE(2254), 6, + STATE(2245), 6, sym_export_statement, sym_method_signature, sym_call_signature, @@ -74537,27 +74925,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [7692] = 10, + [7852] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(1705), 1, + anon_sym_COMMA, + ACTIONS(2134), 1, + anon_sym_EQ, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, - anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1200), 1, - anon_sym_COLON, - ACTIONS(1238), 1, - anon_sym_EQ, - ACTIONS(1119), 13, - sym__automatic_semicolon, + ACTIONS(2188), 1, + anon_sym_EQ_GT, + ACTIONS(2388), 1, + anon_sym_DOT, + ACTIONS(1707), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1075), 13, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74566,7 +74958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1158), 15, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74582,12 +74974,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 22, + ACTIONS(1073), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -74595,9 +74986,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -74605,27 +74994,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7770] = 10, + [7932] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2146), 1, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(2185), 1, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1242), 1, anon_sym_EQ, - ACTIONS(2384), 2, + ACTIONS(2278), 1, + anon_sym_COMMA, + ACTIONS(2281), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1119), 13, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1037), 12, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74634,7 +75027,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74650,12 +75043,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1133), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -74663,9 +75055,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -74673,27 +75063,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7848] = 10, + [8012] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_EQ, - ACTIONS(2215), 1, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(2219), 1, + ACTIONS(1146), 1, + anon_sym_DOT, + ACTIONS(1154), 1, anon_sym_EQ_GT, - ACTIONS(2221), 1, + ACTIONS(1156), 1, anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2386), 2, + ACTIONS(1242), 1, + anon_sym_EQ, + ACTIONS(1596), 1, + anon_sym_in, + ACTIONS(2390), 1, + anon_sym_of, + ACTIONS(1119), 13, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1037), 12, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -74702,7 +75094,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(1158), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74718,10 +75110,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1133), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -74741,150 +75132,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7926] = 3, + [8092] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2154), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(2218), 1, anon_sym_LBRACK, + ACTIONS(2223), 1, anon_sym_DOT, + ACTIONS(2225), 1, + anon_sym_EQ_GT, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2209), 23, - anon_sym_STAR, + ACTIONS(2233), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2211), 33, + ACTIONS(1075), 14, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [8054] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_EQ, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2219), 1, - anon_sym_EQ_GT, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2388), 1, - anon_sym_in, - ACTIONS(2391), 1, - anon_sym_of, - ACTIONS(1037), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -74894,7 +75160,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(2229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -74910,9 +75176,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 21, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -74932,10 +75199,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8134] = 3, + [8168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 23, + ACTIONS(2201), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -74959,7 +75226,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2164), 33, + ACTIONS(2203), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -74993,92 +75260,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8198] = 9, + [8232] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2330), 1, + anon_sym_STAR, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, - anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, - anon_sym_QMARK_DOT, - ACTIONS(1238), 1, - anon_sym_EQ, - ACTIONS(1119), 14, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2350), 1, + sym_number, + ACTIONS(2366), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2370), 1, anon_sym_SEMI, - 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(1158), 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(1133), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8274] = 8, + ACTIONS(2382), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(2394), 1, + anon_sym_export, + ACTIONS(2396), 1, + anon_sym_RBRACE, + ACTIONS(2398), 1, + anon_sym_async, + ACTIONS(2400), 1, + anon_sym_static, + ACTIONS(2406), 1, + sym_readonly, + STATE(1868), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2692), 1, + aux_sym_object_repeat1, + STATE(2990), 1, + sym_type_parameters, + STATE(3299), 1, + sym_object, + STATE(3300), 1, + sym_array, + ACTIONS(2402), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2404), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1931), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2686), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2245), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2392), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [8360] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1210), 1, + anon_sym_COLON, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2142), 1, + ACTIONS(2225), 1, + anon_sym_EQ_GT, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(2185), 1, + ACTIONS(2233), 1, anon_sym_EQ, - ACTIONS(1037), 15, + ACTIONS(1075), 13, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75087,7 +75382,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + ACTIONS(2229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75103,7 +75398,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -75126,22 +75421,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8348] = 6, + [8438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 2, + ACTIONS(2246), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1051), 3, + ACTIONS(983), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2231), 4, + ACTIONS(2243), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(2156), 21, + ACTIONS(2190), 21, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -75163,7 +75458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 26, + ACTIONS(2192), 26, anon_sym_as, anon_sym_LPAREN, anon_sym_QMARK_DOT, @@ -75190,26 +75485,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8418] = 9, + [8508] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_EQ, - ACTIONS(2215), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2328), 1, + anon_sym_export, + ACTIONS(2330), 1, + anon_sym_STAR, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, anon_sym_LBRACK, - ACTIONS(2219), 1, - anon_sym_EQ_GT, - ACTIONS(2221), 1, + ACTIONS(2342), 1, + anon_sym_async, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2350), 1, + sym_number, + ACTIONS(2352), 1, + anon_sym_static, + ACTIONS(2358), 1, + sym_readonly, + ACTIONS(2366), 1, + anon_sym_COMMA, + ACTIONS(2370), 1, + anon_sym_SEMI, + ACTIONS(2382), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(2408), 1, + anon_sym_RBRACE, + STATE(1868), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2792), 1, + aux_sym_object_repeat1, + STATE(2990), 1, + sym_type_parameters, + STATE(3299), 1, + sym_object, + STATE(3300), 1, + sym_array, + ACTIONS(2354), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2356), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1931), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2795), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2245), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2326), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [8636] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2249), 1, + anon_sym_EQ, + ACTIONS(2251), 1, + anon_sym_EQ_GT, + ACTIONS(2286), 1, + anon_sym_LT, + ACTIONS(2289), 1, anon_sym_DOT, - ACTIONS(1037), 14, - sym__automatic_semicolon, - anon_sym_as, + STATE(426), 1, + sym_type_arguments, + ACTIONS(2410), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_implements, + ACTIONS(1075), 10, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75218,7 +75610,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(2253), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75234,11 +75626,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1073), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75257,40 +75648,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8494] = 13, + [8718] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2286), 1, - anon_sym_EQ_GT, - ACTIONS(2288), 1, - anon_sym_QMARK_DOT, - ACTIONS(2305), 1, - anon_sym_EQ, - ACTIONS(2311), 1, - anon_sym_LT, - ACTIONS(2314), 1, + ACTIONS(2243), 1, anon_sym_DOT, - ACTIONS(2393), 1, - anon_sym_LBRACE, - STATE(2757), 1, - sym_type_arguments, - ACTIONS(2380), 2, + ACTIONS(1407), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2237), 3, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(1037), 10, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(2240), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2190), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2192), 26, anon_sym_as, anon_sym_LPAREN, - 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(2316), 15, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75306,10 +75705,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 21, + 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, + [8790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2084), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75328,34 +75740,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8578] = 14, + ACTIONS(2086), 33, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8854] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2146), 1, - anon_sym_EQ_GT, - ACTIONS(2185), 1, + ACTIONS(2156), 1, anon_sym_EQ, - ACTIONS(2202), 1, - anon_sym_LT, - ACTIONS(2272), 1, - anon_sym_is, - ACTIONS(2395), 1, - anon_sym_DOT, - STATE(420), 1, - sym_type_arguments, - ACTIONS(2187), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2197), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1037), 10, + ACTIONS(1075), 15, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75364,7 +75801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75380,10 +75817,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 19, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75392,7 +75830,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -75400,28 +75840,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8664] = 12, + [8928] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_LT, - ACTIONS(2134), 1, + ACTIONS(2257), 1, anon_sym_EQ, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2265), 1, + anon_sym_LT, + ACTIONS(2268), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(2270), 1, + anon_sym_EQ_GT, + ACTIONS(2272), 1, anon_sym_QMARK_DOT, - STATE(1413), 1, + ACTIONS(2412), 1, + anon_sym_LBRACE, + STATE(2779), 1, sym_type_arguments, - STATE(1565), 1, - sym_arguments, - ACTIONS(2136), 11, - anon_sym_as, + ACTIONS(2410), 2, anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(1075), 10, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75430,8 +75873,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(2144), 15, + ACTIONS(2274), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75447,9 +75889,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2132), 22, + ACTIONS(1073), 21, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -75470,31 +75911,127 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8746] = 11, + [9012] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2330), 1, + anon_sym_STAR, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, - anon_sym_DOT, - ACTIONS(1154), 1, - anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2350), 1, + sym_number, + ACTIONS(2366), 1, + anon_sym_COMMA, + ACTIONS(2370), 1, + anon_sym_SEMI, + ACTIONS(2382), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(2416), 1, + anon_sym_export, + ACTIONS(2418), 1, + anon_sym_RBRACE, + ACTIONS(2420), 1, + anon_sym_async, + ACTIONS(2422), 1, + anon_sym_static, + ACTIONS(2428), 1, + sym_readonly, + STATE(1868), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2670), 1, + aux_sym_object_repeat1, + STATE(2990), 1, + sym_type_parameters, + STATE(3299), 1, + sym_object, + STATE(3300), 1, + sym_array, + ACTIONS(2424), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2426), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1931), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2668), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2245), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2414), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [9140] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1238), 1, + ACTIONS(2156), 1, anon_sym_EQ, - ACTIONS(2299), 1, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(2194), 1, + anon_sym_LT, + ACTIONS(2318), 1, + anon_sym_is, + ACTIONS(2430), 1, + anon_sym_DOT, + STATE(426), 1, + sym_type_arguments, + ACTIONS(2158), 2, anon_sym_COMMA, - ACTIONS(2302), 3, - anon_sym_GT, + anon_sym_RBRACK, + ACTIONS(2170), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1119), 13, - sym__automatic_semicolon, + ACTIONS(1075), 10, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75503,7 +76040,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1158), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75519,11 +76056,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 19, + ACTIONS(1073), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -75539,31 +76076,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8826] = 13, + [9226] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(1156), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1451), 1, + ACTIONS(2156), 1, anon_sym_EQ, - ACTIONS(1594), 1, + ACTIONS(2166), 1, anon_sym_EQ_GT, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_LT, - STATE(1342), 1, - sym_type_arguments, - STATE(1487), 1, - sym_arguments, - ACTIONS(1453), 11, - sym__automatic_semicolon, + ACTIONS(2435), 1, + anon_sym_COLON, + STATE(3040), 1, + sym_type_annotation, + ACTIONS(2432), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1075), 10, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75572,7 +76107,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1465), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75588,10 +76123,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1449), 21, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75610,29 +76146,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8910] = 12, + [9308] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, + anon_sym_LT, + ACTIONS(2134), 1, + anon_sym_EQ, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, + ACTIONS(2272), 1, anon_sym_QMARK_DOT, - ACTIONS(2146), 1, - anon_sym_EQ_GT, - ACTIONS(2185), 1, - anon_sym_EQ, - ACTIONS(2400), 1, - anon_sym_COLON, - STATE(2982), 1, - sym_type_annotation, - ACTIONS(2397), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1037), 10, + ACTIONS(2291), 1, + anon_sym_DOT, + STATE(1451), 1, + sym_type_arguments, + STATE(1604), 1, + sym_arguments, + ACTIONS(2136), 11, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -75641,7 +76176,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75657,11 +76193,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(2132), 22, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -75680,10 +76216,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8992] = 3, + [9390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 23, + ACTIONS(2152), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -75707,7 +76243,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2150), 33, + ACTIONS(2154), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -75741,10 +76277,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9056] = 3, + [9454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 23, + ACTIONS(2209), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -75768,7 +76304,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2168), 33, + ACTIONS(2211), 33, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -75802,24 +76338,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9120] = 11, + [9518] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(2225), 1, anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(1238), 1, + ACTIONS(2233), 1, anon_sym_EQ, - ACTIONS(1596), 1, + ACTIONS(2437), 1, anon_sym_in, - ACTIONS(2402), 1, + ACTIONS(2440), 1, anon_sym_of, - ACTIONS(1119), 13, + ACTIONS(1075), 13, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -75833,7 +76369,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1158), 15, + ACTIONS(2229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -75849,7 +76385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 21, + ACTIONS(1073), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -75871,27 +76407,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9200] = 35, + [9598] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(123), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(2328), 1, + anon_sym_export, ACTIONS(2330), 1, anon_sym_STAR, - ACTIONS(2332), 1, - anon_sym_COMMA, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(2338), 1, - anon_sym_SEMI, ACTIONS(2340), 1, anon_sym_LBRACK, + ACTIONS(2342), 1, + anon_sym_async, ACTIONS(2344), 1, anon_sym_new, ACTIONS(2346), 1, @@ -75900,60 +76436,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2350), 1, sym_number, - ACTIONS(2360), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2406), 1, - anon_sym_export, - ACTIONS(2408), 1, - anon_sym_RBRACE, - ACTIONS(2410), 1, - anon_sym_async, - ACTIONS(2412), 1, + ACTIONS(2352), 1, anon_sym_static, - ACTIONS(2418), 1, + ACTIONS(2358), 1, sym_readonly, - STATE(1874), 1, + ACTIONS(2366), 1, + anon_sym_COMMA, + ACTIONS(2370), 1, + anon_sym_SEMI, + ACTIONS(2382), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(2442), 1, + anon_sym_RBRACE, + STATE(1868), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2727), 1, + STATE(2792), 1, aux_sym_object_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - STATE(3256), 1, + STATE(3299), 1, sym_object, - STATE(3265), 1, + STATE(3300), 1, sym_array, - ACTIONS(2414), 2, + ACTIONS(2354), 2, anon_sym_get, anon_sym_set, - ACTIONS(2416), 3, + ACTIONS(2356), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1929), 3, + STATE(1931), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2725), 4, + STATE(2795), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - STATE(2254), 6, + STATE(2245), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2404), 10, + ACTIONS(2326), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -75964,14 +76500,193 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [9328] = 3, + [9726] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1188), 1, + anon_sym_COLON, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2225), 1, + anon_sym_EQ_GT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(2233), 1, + anon_sym_EQ, + ACTIONS(1075), 13, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + 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(2229), 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(1073), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9804] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 23, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2114), 1, + anon_sym_LT, + ACTIONS(2134), 1, + anon_sym_EQ, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(2297), 1, + anon_sym_EQ_GT, + STATE(1403), 1, + sym_type_arguments, + STATE(1418), 1, + sym_arguments, + ACTIONS(2136), 11, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + 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(2144), 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(2132), 21, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9888] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(2233), 1, anon_sym_EQ, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2440), 1, + anon_sym_of, + ACTIONS(1075), 13, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + 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(2229), 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(1073), 21, + anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -75991,17 +76706,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 33, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + [9965] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, anon_sym_LBRACK, + ACTIONS(1513), 1, anon_sym_DOT, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, + ACTIONS(1551), 1, + anon_sym_EQ_GT, + ACTIONS(1640), 1, + anon_sym_EQ, + ACTIONS(1119), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, + anon_sym_implements, + ACTIONS(1642), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76017,128 +76749,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [9392] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2328), 1, - anon_sym_export, - ACTIONS(2330), 1, + ACTIONS(1133), 22, anon_sym_STAR, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2340), 1, - anon_sym_LBRACK, - ACTIONS(2342), 1, - anon_sym_async, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2350), 1, - sym_number, - ACTIONS(2352), 1, - anon_sym_static, - ACTIONS(2358), 1, - sym_readonly, - ACTIONS(2420), 1, - anon_sym_COMMA, - ACTIONS(2422), 1, - anon_sym_RBRACE, - ACTIONS(2424), 1, - anon_sym_SEMI, - ACTIONS(2426), 1, - anon_sym_PIPE_RBRACE, - STATE(1874), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2823), 1, - aux_sym_object_repeat1, - STATE(2909), 1, - sym_type_parameters, - STATE(3256), 1, - sym_object, - STATE(3265), 1, - sym_array, - ACTIONS(2354), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2356), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2824), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2210), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2326), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [9520] = 10, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10040] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 1, - anon_sym_COLON, - ACTIONS(2213), 1, + ACTIONS(1507), 1, anon_sym_EQ, - ACTIONS(2215), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(2219), 1, - anon_sym_EQ_GT, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1037), 13, - sym__automatic_semicolon, + ACTIONS(1519), 1, + anon_sym_QMARK_DOT, + ACTIONS(1545), 1, + anon_sym_EQ_GT, + ACTIONS(1119), 13, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76147,7 +76799,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76163,7 +76815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1133), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -76186,27 +76838,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9598] = 10, + [10115] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1154), 1, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(1156), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1204), 1, - anon_sym_COLON, - ACTIONS(1238), 1, + ACTIONS(1601), 1, anon_sym_EQ, - ACTIONS(1119), 13, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(1607), 1, + anon_sym_QMARK, + ACTIONS(1604), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1119), 10, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76215,7 +76868,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1158), 15, + ACTIONS(1561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76231,14 +76884,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 22, + ACTIONS(1133), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -76254,124 +76906,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9676] = 35, + [10194] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2330), 1, - anon_sym_STAR, - ACTIONS(2332), 1, + ACTIONS(1705), 1, anon_sym_COMMA, - ACTIONS(2336), 1, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(2293), 1, + anon_sym_EQ, + ACTIONS(2297), 1, + anon_sym_EQ_GT, + ACTIONS(2444), 1, + anon_sym_DOT, + ACTIONS(1707), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1075), 12, + sym__automatic_semicolon, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(2338), 1, anon_sym_SEMI, - ACTIONS(2340), 1, - anon_sym_LBRACK, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2350), 1, - sym_number, - ACTIONS(2360), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(2430), 1, - anon_sym_export, - ACTIONS(2432), 1, - anon_sym_RBRACE, - ACTIONS(2434), 1, - anon_sym_async, - ACTIONS(2436), 1, - anon_sym_static, - ACTIONS(2442), 1, - sym_readonly, - STATE(1874), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2641), 1, - aux_sym_object_repeat1, - STATE(2909), 1, - sym_type_parameters, - STATE(3256), 1, - sym_object, - STATE(3265), 1, - sym_array, - ACTIONS(2438), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2440), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2738), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2254), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2428), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [9804] = 13, + 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(2299), 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(1073), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10273] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_LT, - ACTIONS(2134), 1, + ACTIONS(2257), 1, anon_sym_EQ, - ACTIONS(2215), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, + ACTIONS(2270), 1, + anon_sym_EQ_GT, + ACTIONS(2272), 1, anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2278), 1, - anon_sym_EQ_GT, - STATE(1318), 1, - sym_type_arguments, - STATE(1467), 1, - sym_arguments, - ACTIONS(2136), 11, - sym__automatic_semicolon, + ACTIONS(1075), 12, anon_sym_as, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76380,7 +76999,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2144), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(2274), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76396,10 +77016,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(2132), 21, + ACTIONS(1073), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -76418,26 +77040,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9888] = 11, + [10348] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1613), 1, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(2303), 1, anon_sym_EQ, - ACTIONS(1625), 1, + ACTIONS(2315), 1, anon_sym_QMARK, - ACTIONS(1618), 3, + ACTIONS(2306), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(1119), 10, + ACTIONS(1075), 10, anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, @@ -76448,7 +77070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1575), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76464,7 +77086,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 21, + ACTIONS(1073), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -76486,27 +77108,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9967] = 11, + [10427] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(1569), 1, anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2146), 1, + ACTIONS(1573), 1, anon_sym_EQ_GT, - ACTIONS(2257), 1, + ACTIONS(1575), 1, + anon_sym_QMARK_DOT, + ACTIONS(1648), 1, anon_sym_EQ, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2260), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1037), 10, + ACTIONS(1119), 12, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -76516,7 +77133,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1650), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76532,13 +77150,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 21, + ACTIONS(1133), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -76554,25 +77174,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10046] = 10, + [10502] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_EQ, - ACTIONS(2215), 1, + ACTIONS(1095), 1, + anon_sym_COMMA, + ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(2388), 1, - anon_sym_in, - ACTIONS(2391), 1, - anon_sym_of, - ACTIONS(1037), 13, + ACTIONS(1156), 1, + anon_sym_QMARK_DOT, + ACTIONS(1594), 1, + anon_sym_EQ_GT, + ACTIONS(1690), 1, + anon_sym_EQ, + ACTIONS(2281), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1119), 12, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LT_EQ, @@ -76583,7 +77206,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(1692), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76599,11 +77222,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 21, + ACTIONS(1133), 19, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -76611,9 +77234,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10581] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1407), 1, + anon_sym_COMMA, + ACTIONS(2237), 1, + anon_sym_LBRACK, + ACTIONS(2243), 1, + anon_sym_DOT, + ACTIONS(2240), 4, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2190), 19, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2192), 29, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2243), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(2246), 3, + anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2190), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -76621,23 +77338,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10123] = 9, + ACTIONS(2192), 29, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10719] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1549), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1553), 1, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(1555), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1628), 1, + ACTIONS(1553), 1, anon_sym_EQ, + ACTIONS(1616), 1, + anon_sym_COLON, ACTIONS(1119), 12, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76646,8 +77396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1630), 15, + ACTIONS(1561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76663,9 +77412,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 23, + ACTIONS(1133), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -76687,28 +77435,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10198] = 11, + [10796] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(1705), 1, + anon_sym_COMMA, + ACTIONS(2257), 1, + anon_sym_EQ, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2146), 1, + ACTIONS(2270), 1, anon_sym_EQ_GT, - ACTIONS(2185), 1, - anon_sym_EQ, - ACTIONS(2444), 1, - anon_sym_in, + ACTIONS(2272), 1, + anon_sym_QMARK_DOT, ACTIONS(2446), 1, - anon_sym_COLON, - ACTIONS(1037), 12, + anon_sym_DOT, + ACTIONS(1707), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1075), 11, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -76717,7 +77465,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(2274), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76733,11 +77482,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 21, + ACTIONS(1073), 20, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, + anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -76745,9 +77495,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -76755,22 +77503,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10277] = 9, + [10875] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2286), 1, - anon_sym_EQ_GT, - ACTIONS(2288), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2305), 1, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(2303), 1, anon_sym_EQ, - ACTIONS(1037), 12, - anon_sym_as, + ACTIONS(2315), 1, + anon_sym_QMARK, + ACTIONS(2448), 1, + anon_sym_COLON, + ACTIONS(2306), 2, anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1075), 10, + anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -76780,8 +77534,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(2316), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76797,15 +77550,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 23, + ACTIONS(1073), 21, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -76821,31 +77572,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10352] = 13, + [10956] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1613), 1, + ACTIONS(2249), 1, anon_sym_EQ, - ACTIONS(1625), 1, - anon_sym_QMARK, - ACTIONS(2448), 1, - anon_sym_RPAREN, - ACTIONS(1618), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2302), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1119), 10, + ACTIONS(2251), 1, + anon_sym_EQ_GT, + ACTIONS(1075), 13, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -76855,7 +77598,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1575), 15, + anon_sym_implements, + ACTIONS(2253), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -76871,52 +77615,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 19, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10435] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2231), 1, - anon_sym_DOT, - ACTIONS(2225), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2228), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2156), 19, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -76924,54 +77638,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 29, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10504] = 12, + [11031] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1461), 1, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1613), 1, + ACTIONS(1601), 1, anon_sym_EQ, - ACTIONS(1621), 1, - anon_sym_COLON, - ACTIONS(1625), 1, + ACTIONS(1607), 1, anon_sym_QMARK, - ACTIONS(1618), 2, + ACTIONS(1614), 1, + anon_sym_COLON, + ACTIONS(1604), 2, anon_sym_COMMA, anon_sym_RPAREN, ACTIONS(1119), 10, @@ -76985,7 +77669,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1575), 15, + ACTIONS(1561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77023,23 +77707,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10585] = 9, + [11112] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1541), 1, + ACTIONS(1517), 1, anon_sym_EQ_GT, - ACTIONS(1646), 1, + ACTIONS(1519), 1, + anon_sym_QMARK_DOT, + ACTIONS(1601), 1, anon_sym_EQ, - ACTIONS(1119), 13, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1607), 1, + anon_sym_QMARK, + ACTIONS(2450), 1, + anon_sym_RPAREN, + ACTIONS(1604), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2281), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1119), 10, + anon_sym_as, anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -77049,8 +77741,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(1648), 15, + ACTIONS(1561), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77066,22 +77757,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 22, + ACTIONS(1133), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77089,25 +77777,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10660] = 9, + [11195] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2134), 1, - anon_sym_EQ, - ACTIONS(2138), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(1569), 1, anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2183), 1, + ACTIONS(1573), 1, anon_sym_EQ_GT, - ACTIONS(1037), 13, + ACTIONS(1575), 1, + anon_sym_QMARK_DOT, + ACTIONS(1648), 1, + anon_sym_EQ, + ACTIONS(2278), 1, + anon_sym_COMMA, + ACTIONS(2281), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1119), 11, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77116,7 +77807,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2144), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1650), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77132,12 +77824,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1133), 20, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77145,9 +77837,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77155,18 +77845,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10735] = 5, + [11274] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2231), 3, + ACTIONS(983), 1, anon_sym_COMMA, + ACTIONS(2243), 2, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(2234), 3, + ACTIONS(2246), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2156), 20, + ACTIONS(2190), 20, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -77187,12 +77878,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 29, - sym__automatic_semicolon, + ACTIONS(2192), 29, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -77217,26 +77908,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10802] = 11, + [11343] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1705), 1, + anon_sym_COMMA, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1463), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1541), 1, - anon_sym_EQ_GT, - ACTIONS(1646), 1, + ACTIONS(2249), 1, anon_sym_EQ, - ACTIONS(2299), 1, - anon_sym_COMMA, - ACTIONS(2302), 3, + ACTIONS(2251), 1, + anon_sym_EQ_GT, + ACTIONS(2255), 1, + anon_sym_DOT, + ACTIONS(1707), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1119), 12, + ACTIONS(1075), 12, anon_sym_as, anon_sym_LBRACE, anon_sym_LPAREN, @@ -77249,7 +77940,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - ACTIONS(1648), 15, + ACTIONS(2253), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77265,7 +77956,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 19, + ACTIONS(1073), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -77285,25 +77976,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10881] = 7, + [11422] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, - anon_sym_COMMA, - ACTIONS(2225), 1, + ACTIONS(2134), 1, + anon_sym_EQ, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2228), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2156), 19, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2188), 1, + anon_sym_EQ_GT, + ACTIONS(1075), 13, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + 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(2144), 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(1073), 22, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77311,7 +78032,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77319,13 +78042,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 29, + [11497] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_LBRACK, + ACTIONS(1513), 1, + anon_sym_DOT, + ACTIONS(1519), 1, + anon_sym_QMARK_DOT, + ACTIONS(1551), 1, + anon_sym_EQ_GT, + ACTIONS(1640), 1, + anon_sym_EQ, + ACTIONS(2278), 1, + anon_sym_COMMA, + ACTIONS(2281), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1119), 12, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(1642), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77341,37 +78090,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10952] = 11, + ACTIONS(1133), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11576] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_COMMA, ACTIONS(2138), 1, anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2251), 1, + ACTIONS(2156), 1, anon_sym_EQ, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(2320), 1, - anon_sym_DOT, - ACTIONS(1705), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1037), 12, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(2454), 1, + anon_sym_in, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(1075), 12, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77380,8 +78140,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(2255), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77397,11 +78156,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 19, + ACTIONS(1073), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77409,7 +78168,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77417,28 +78178,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11031] = 11, + [11655] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_COMMA, - ACTIONS(2282), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2286), 1, - anon_sym_EQ_GT, - ACTIONS(2288), 1, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(2305), 1, + ACTIONS(2233), 1, anon_sym_EQ, - ACTIONS(2452), 1, - anon_sym_DOT, - ACTIONS(1705), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1037), 11, + ACTIONS(1075), 14, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77447,8 +78204,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(2316), 15, + ACTIONS(2229), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77464,12 +78220,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 20, + ACTIONS(1073), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77477,7 +78233,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77485,24 +78243,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11110] = 6, + [11728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, + ACTIONS(2243), 1, + anon_sym_DOT, + ACTIONS(2237), 2, anon_sym_COMMA, - ACTIONS(2231), 2, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(2234), 3, + ACTIONS(2240), 4, + anon_sym_LT, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2156), 20, + ACTIONS(2190), 19, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77518,12 +78276,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 29, + ACTIONS(2192), 29, + sym__automatic_semicolon, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -77548,26 +78306,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11179] = 10, + [11797] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1455), 1, + ACTIONS(1705), 1, + anon_sym_RPAREN, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_EQ_GT, - ACTIONS(1463), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1567), 1, + ACTIONS(2156), 1, anon_sym_EQ, - ACTIONS(1603), 1, - anon_sym_COLON, - ACTIONS(1119), 12, + ACTIONS(2166), 1, + anon_sym_EQ_GT, + ACTIONS(2458), 1, + anon_sym_DOT, + ACTIONS(1707), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1075), 12, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77576,7 +78337,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1575), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77592,7 +78353,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 22, + ACTIONS(1073), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -77605,9 +78366,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77615,55 +78374,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11256] = 9, + [11876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(2243), 1, anon_sym_DOT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1565), 1, - anon_sym_EQ_GT, - ACTIONS(1119), 13, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - 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(1465), 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(1133), 22, + ACTIONS(2237), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2240), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2190), 20, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77671,9 +78400,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77681,38 +78408,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11331] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1703), 1, - anon_sym_RPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2146), 1, - anon_sym_EQ_GT, - ACTIONS(2185), 1, - anon_sym_EQ, - ACTIONS(2454), 1, - anon_sym_DOT, - ACTIONS(1705), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1037), 12, + ACTIONS(2192), 27, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, - 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(2195), 15, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77728,51 +78427,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11410] = 11, + 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, + anon_sym_LBRACE_PIPE, + [11944] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1703), 1, - anon_sym_COMMA, - ACTIONS(2215), 1, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, + ACTIONS(1513), 1, + anon_sym_DOT, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(2274), 1, - anon_sym_EQ, - ACTIONS(2278), 1, + ACTIONS(1545), 1, anon_sym_EQ_GT, - ACTIONS(2456), 1, - anon_sym_DOT, - ACTIONS(1705), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1037), 12, - sym__automatic_semicolon, + ACTIONS(1616), 1, + anon_sym_COLON, + ACTIONS(1119), 11, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77781,7 +78463,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2280), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77797,11 +78479,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 19, + ACTIONS(1133), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -77809,7 +78492,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -77817,24 +78502,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11489] = 8, + [12020] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 1, + ACTIONS(2134), 1, anon_sym_EQ, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(1037), 14, - sym__automatic_semicolon, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(1075), 13, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77843,7 +78527,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2223), 15, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77859,7 +78543,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -77882,29 +78566,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11562] = 12, + [12092] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2142), 1, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(2146), 1, - anon_sym_EQ_GT, - ACTIONS(2257), 1, + ACTIONS(2293), 1, anon_sym_EQ, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2458), 1, - anon_sym_COLON, - ACTIONS(2260), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1037), 10, + ACTIONS(2297), 1, + anon_sym_EQ_GT, + ACTIONS(1075), 12, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -77913,7 +78592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + ACTIONS(2299), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -77929,13 +78608,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 21, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -77951,56 +78631,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11643] = 11, + [12166] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1095), 1, + ACTIONS(2243), 3, anon_sym_COMMA, - ACTIONS(1141), 1, anon_sym_LBRACK, - ACTIONS(1146), 1, anon_sym_DOT, - ACTIONS(1156), 1, - anon_sym_QMARK_DOT, - ACTIONS(1594), 1, - anon_sym_EQ_GT, - ACTIONS(1699), 1, - anon_sym_EQ, - ACTIONS(2302), 3, + ACTIONS(2246), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1119), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - 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(1701), 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(1133), 19, + ACTIONS(2190), 21, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -78019,38 +78664,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11722] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1547), 1, - anon_sym_LBRACK, - ACTIONS(1549), 1, - anon_sym_DOT, - ACTIONS(1553), 1, - anon_sym_EQ_GT, - ACTIONS(1555), 1, - anon_sym_QMARK_DOT, - ACTIONS(1628), 1, - anon_sym_EQ, - ACTIONS(2299), 1, - anon_sym_COMMA, - ACTIONS(2302), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1119), 11, + ACTIONS(2192), 27, anon_sym_as, anon_sym_LPAREN, - 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, - anon_sym_LBRACE_PIPE, - ACTIONS(1630), 15, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78066,12 +78683,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 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, + anon_sym_LBRACE_PIPE, + [12232] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1407), 1, + anon_sym_COMMA, + ACTIONS(2237), 1, + anon_sym_LBRACK, + ACTIONS(2243), 1, + anon_sym_DOT, + ACTIONS(2240), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2190), 19, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -78087,34 +78726,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11801] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2251), 1, - anon_sym_EQ, - ACTIONS(2253), 1, - anon_sym_EQ_GT, - ACTIONS(1037), 13, + ACTIONS(2192), 28, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - 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, - anon_sym_implements, - ACTIONS(2255), 15, + anon_sym_SEMI, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78130,46 +78747,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11876] = 6, + 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, + [12302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2231), 1, - anon_sym_DOT, - ACTIONS(2225), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2228), 3, - anon_sym_LT, + ACTIONS(2246), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2156), 20, + ACTIONS(2243), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(2190), 21, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -78186,7 +78787,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 28, + ACTIONS(2192), 28, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -78215,10 +78816,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11944] = 3, + [12368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 24, + ACTIONS(2209), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -78243,7 +78844,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2164), 30, + ACTIONS(2211), 30, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -78274,10 +78875,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [12006] = 3, + [12430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 24, + ACTIONS(2146), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -78302,7 +78903,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2211), 30, + ACTIONS(2148), 30, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -78333,19 +78934,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [12068] = 6, + [12492] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(757), 1, + anon_sym_DQUOTE, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(761), 1, + anon_sym_BQUOTE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2460), 1, + sym_identifier, + ACTIONS(2462), 1, + anon_sym_STAR, + ACTIONS(2464), 1, + anon_sym_LBRACE, + ACTIONS(2466), 1, + anon_sym_typeof, + ACTIONS(2468), 1, + anon_sym_LPAREN, + ACTIONS(2470), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_new, + ACTIONS(2474), 1, + anon_sym_QMARK, + ACTIONS(2476), 1, + anon_sym_AMP, + ACTIONS(2478), 1, + anon_sym_PIPE, + ACTIONS(2484), 1, + sym_number, + ACTIONS(2486), 1, + sym_this, + ACTIONS(2490), 1, + anon_sym_keyof, + ACTIONS(2492), 1, + anon_sym_LBRACE_PIPE, + STATE(1488), 1, + sym_nested_type_identifier, + STATE(1571), 1, + sym_template_string, + STATE(3042), 1, + sym_type_parameters, + STATE(3111), 1, + sym_nested_identifier, + STATE(3218), 1, + sym_formal_parameters, + ACTIONS(2480), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2488), 2, + sym_true, + sym_false, + STATE(1644), 2, + sym_string, + sym__number, + STATE(1570), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2482), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1598), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [12608] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, + ACTIONS(983), 1, anon_sym_COMMA, - ACTIONS(2231), 2, + ACTIONS(2243), 2, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(2234), 3, + ACTIONS(2246), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2156), 20, + ACTIONS(2190), 20, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -78366,7 +79053,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 28, + ACTIONS(2192), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -78395,25 +79082,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12136] = 6, + [12676] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2231), 1, + ACTIONS(2243), 1, anon_sym_DOT, - ACTIONS(2225), 2, - anon_sym_COMMA, + ACTIONS(2237), 2, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2228), 4, + ACTIONS(2240), 3, anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2156), 20, + ACTIONS(2190), 20, anon_sym_STAR, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -78429,9 +79115,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 27, + ACTIONS(2192), 28, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -78456,25 +79144,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [12204] = 5, + [12744] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1511), 1, + anon_sym_LBRACK, + ACTIONS(1513), 1, + anon_sym_DOT, + ACTIONS(1517), 1, + anon_sym_EQ_GT, + ACTIONS(1519), 1, + anon_sym_QMARK_DOT, + ACTIONS(1553), 1, + anon_sym_EQ, + ACTIONS(2278), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2281), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1119), 10, + anon_sym_as, + anon_sym_LPAREN, + 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(1561), 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(1133), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2231), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(2234), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2156), 21, + ACTIONS(2201), 23, anon_sym_STAR, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -78482,7 +79228,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -78490,9 +79238,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 27, + ACTIONS(2203), 31, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -78517,11 +79270,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [12270] = 3, + [12884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 24, + ACTIONS(2084), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -78546,7 +79298,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 30, + ACTIONS(2086), 30, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -78577,10 +79329,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [12332] = 3, + [12946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 23, + ACTIONS(2494), 1, + anon_sym_COLON, + ACTIONS(2201), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -78604,12 +79358,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2164), 31, + ACTIONS(2203), 30, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -78636,25 +79389,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12394] = 7, + [13010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1407), 1, - anon_sym_COMMA, - ACTIONS(2225), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_DOT, - ACTIONS(2228), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2156), 19, + ACTIONS(2152), 24, anon_sym_STAR, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -78662,7 +79407,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -78670,11 +79417,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 28, - sym__automatic_semicolon, + ACTIONS(2154), 30, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -78699,113 +79447,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12464] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - anon_sym_SQUOTE, - ACTIONS(719), 1, - anon_sym_BQUOTE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2460), 1, - sym_identifier, - ACTIONS(2462), 1, - anon_sym_STAR, - ACTIONS(2464), 1, - anon_sym_LBRACE, - ACTIONS(2466), 1, - anon_sym_typeof, - ACTIONS(2468), 1, - anon_sym_LPAREN, - ACTIONS(2470), 1, - anon_sym_LBRACK, - ACTIONS(2472), 1, - anon_sym_new, - ACTIONS(2474), 1, - anon_sym_QMARK, - ACTIONS(2476), 1, - anon_sym_AMP, - ACTIONS(2478), 1, - anon_sym_PIPE, - ACTIONS(2484), 1, - sym_number, - ACTIONS(2486), 1, - sym_this, - ACTIONS(2490), 1, - anon_sym_keyof, - ACTIONS(2492), 1, anon_sym_LBRACE_PIPE, - STATE(1473), 1, - sym_nested_type_identifier, - STATE(1588), 1, - sym_template_string, - STATE(3020), 1, - sym_type_parameters, - STATE(3109), 1, - sym_nested_identifier, - STATE(3273), 1, - sym_formal_parameters, - ACTIONS(2480), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2488), 2, - sym_true, - sym_false, - STATE(1673), 2, - sym_string, - sym__number, - STATE(1597), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2482), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1687), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [12580] = 11, + [13072] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2134), 1, - anon_sym_EQ, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2183), 1, - anon_sym_EQ_GT, - ACTIONS(2444), 1, - anon_sym_in, - ACTIONS(2446), 1, - anon_sym_COLON, - ACTIONS(1037), 11, + ACTIONS(2249), 1, + anon_sym_EQ, + ACTIONS(1075), 13, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -78814,7 +79472,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2144), 15, + anon_sym_implements, + ACTIONS(2253), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78830,9 +79489,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 21, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -78852,54 +79512,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12658] = 10, + [13144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(2243), 1, anon_sym_DOT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1565), 1, - anon_sym_EQ_GT, - ACTIONS(1603), 1, - anon_sym_COLON, - ACTIONS(1119), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - 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(1465), 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(1133), 22, + ACTIONS(2237), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(2240), 2, + anon_sym_LBRACE, + anon_sym_LT, + ACTIONS(2190), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -78918,37 +79546,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12734] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1461), 1, - anon_sym_EQ_GT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1567), 1, - anon_sym_EQ, - ACTIONS(2299), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2302), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1119), 10, + ACTIONS(2192), 27, anon_sym_as, anon_sym_LPAREN, - 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(1575), 15, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -78964,8 +79566,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1133), 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, + [13212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2190), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -78977,7 +79592,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -78985,7 +79602,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12812] = 9, + ACTIONS(2192), 30, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [13274] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1141), 1, @@ -78996,7 +79644,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(1594), 1, anon_sym_EQ_GT, - ACTIONS(1699), 1, + ACTIONS(1690), 1, anon_sym_EQ, ACTIONS(1119), 12, sym__automatic_semicolon, @@ -79011,7 +79659,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1701), 15, + ACTIONS(1692), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79050,110 +79698,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12886] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2494), 1, - sym_identifier, - ACTIONS(2496), 1, - anon_sym_STAR, - ACTIONS(2498), 1, - anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_typeof, - ACTIONS(2502), 1, - anon_sym_LPAREN, - ACTIONS(2504), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_new, - ACTIONS(2508), 1, - anon_sym_QMARK, - ACTIONS(2510), 1, - anon_sym_AMP, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2518), 1, - sym_number, - ACTIONS(2520), 1, - sym_this, - ACTIONS(2524), 1, - anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, - sym_nested_type_identifier, - STATE(1523), 1, - sym_template_string, - STATE(2910), 1, - sym_type_parameters, - STATE(3209), 1, - sym_formal_parameters, - STATE(3239), 1, - sym_nested_identifier, - ACTIONS(2514), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2522), 2, - sym_true, - sym_false, - STATE(1449), 2, - sym_string, - sym__number, - STATE(1524), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2516), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1452), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [13002] = 9, + [13348] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2274), 1, + ACTIONS(2156), 1, anon_sym_EQ, - ACTIONS(2278), 1, + ACTIONS(2166), 1, anon_sym_EQ_GT, - ACTIONS(1037), 12, - sym__automatic_semicolon, + ACTIONS(2496), 1, + anon_sym_DOT, + ACTIONS(1705), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1707), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1075), 10, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -79162,7 +79728,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2280), 15, + ACTIONS(2168), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79178,7 +79744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1073), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -79191,9 +79757,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -79201,16 +79765,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13076] = 3, + [13426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 24, + ACTIONS(2240), 1, + anon_sym_LT, + ACTIONS(2243), 1, + anon_sym_DOT, + ACTIONS(2237), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(2190), 22, anon_sym_STAR, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -79229,12 +79799,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2150), 30, + ACTIONS(2192), 27, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -79259,161 +79827,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [13138] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_QMARK_DOT, - ACTIONS(2305), 1, - anon_sym_EQ, - ACTIONS(1037), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, - anon_sym_LBRACE_PIPE, - ACTIONS(2316), 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(1035), 23, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13210] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2528), 1, - sym_identifier, - ACTIONS(2530), 1, - anon_sym_STAR, - ACTIONS(2532), 1, - anon_sym_LBRACE, - ACTIONS(2534), 1, - anon_sym_typeof, - ACTIONS(2536), 1, - anon_sym_LPAREN, - ACTIONS(2538), 1, - anon_sym_LBRACK, - ACTIONS(2540), 1, - anon_sym_new, - ACTIONS(2542), 1, - anon_sym_QMARK, - ACTIONS(2544), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(2552), 1, - sym_number, - ACTIONS(2554), 1, - sym_this, - ACTIONS(2558), 1, - anon_sym_keyof, - ACTIONS(2560), 1, - anon_sym_LBRACE_PIPE, - STATE(991), 1, - sym_nested_type_identifier, - STATE(1134), 1, - sym_template_string, - STATE(3033), 1, - sym_type_parameters, - STATE(3087), 1, - sym_nested_identifier, - STATE(3164), 1, - sym_formal_parameters, - ACTIONS(2548), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2556), 2, - sym_true, - sym_false, - STATE(1103), 2, - sym_string, - sym__number, - STATE(1138), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2550), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1148), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [13326] = 3, + [13494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 24, + ACTIONS(2096), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -79438,7 +79855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2168), 30, + ACTIONS(2098), 30, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -79469,10 +79886,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [13388] = 3, + [13556] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2500), 1, + anon_sym_STAR, + ACTIONS(2502), 1, + anon_sym_LBRACE, + ACTIONS(2504), 1, + anon_sym_typeof, + ACTIONS(2506), 1, + anon_sym_LPAREN, + ACTIONS(2508), 1, + anon_sym_LBRACK, + ACTIONS(2510), 1, + anon_sym_new, + ACTIONS(2512), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_AMP, + ACTIONS(2516), 1, + anon_sym_PIPE, + ACTIONS(2522), 1, + sym_number, + ACTIONS(2524), 1, + sym_this, + ACTIONS(2528), 1, + anon_sym_keyof, + ACTIONS(2530), 1, + anon_sym_LBRACE_PIPE, + STATE(1384), 1, + sym_nested_type_identifier, + STATE(1486), 1, + sym_template_string, + STATE(2912), 1, + sym_type_parameters, + STATE(3270), 1, + sym_nested_identifier, + STATE(3316), 1, + sym_formal_parameters, + ACTIONS(2518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2526), 2, + sym_true, + sym_false, + STATE(1457), 2, + sym_string, + sym__number, + STATE(1440), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2520), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1460), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [13672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 24, + ACTIONS(2205), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -79497,7 +80000,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2154), 30, + ACTIONS(2207), 30, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -79528,74 +80031,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [13450] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2251), 1, - anon_sym_EQ, - ACTIONS(1037), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - 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, - anon_sym_implements, - ACTIONS(2255), 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(1035), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13522] = 3, + [13734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2092), 24, + ACTIONS(2201), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -79620,7 +80059,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2094), 30, + ACTIONS(2203), 30, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -79651,22 +80090,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [13584] = 6, + [13796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2231), 1, - anon_sym_DOT, - ACTIONS(2225), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(2228), 2, - anon_sym_LBRACE, - anon_sym_LT, - ACTIONS(2156), 22, + ACTIONS(2201), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -79685,10 +80117,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 27, + ACTIONS(2203), 31, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -79713,27 +80149,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13652] = 11, + [13858] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2257), 1, + anon_sym_EQ, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2142), 1, + ACTIONS(2272), 1, anon_sym_QMARK_DOT, - ACTIONS(2146), 1, - anon_sym_EQ_GT, - ACTIONS(2185), 1, - anon_sym_EQ, - ACTIONS(2562), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(1703), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1705), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1037), 10, + ACTIONS(1075), 12, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -79743,7 +80172,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2195), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(2274), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -79759,8 +80189,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 20, + ACTIONS(1073), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -79772,7 +80203,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -79780,7 +80213,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13730] = 8, + [13930] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2134), 1, @@ -79791,11 +80224,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(1037), 13, + ACTIONS(2188), 1, + anon_sym_EQ_GT, + ACTIONS(2454), 1, + anon_sym_in, + ACTIONS(2456), 1, + anon_sym_COLON, + ACTIONS(1075), 11, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -79821,10 +80258,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 22, + ACTIONS(1073), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -79844,116 +80280,450 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13802] = 3, + [14008] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(501), 1, + anon_sym_DQUOTE, + ACTIONS(503), 1, + anon_sym_SQUOTE, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2532), 1, + sym_identifier, + ACTIONS(2534), 1, + anon_sym_STAR, + ACTIONS(2536), 1, + anon_sym_LBRACE, + ACTIONS(2538), 1, + anon_sym_typeof, + ACTIONS(2540), 1, + anon_sym_LPAREN, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, + anon_sym_new, + ACTIONS(2546), 1, + anon_sym_QMARK, + ACTIONS(2548), 1, + anon_sym_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2556), 1, + sym_number, + ACTIONS(2558), 1, + sym_this, + ACTIONS(2562), 1, + anon_sym_keyof, + ACTIONS(2564), 1, + anon_sym_LBRACE_PIPE, + STATE(1021), 1, + sym_nested_type_identifier, + STATE(1122), 1, + sym_template_string, + STATE(3047), 1, + sym_type_parameters, + STATE(3089), 1, + sym_nested_identifier, + STATE(3115), 1, + sym_formal_parameters, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2560), 2, + sym_true, + sym_false, + STATE(1086), 2, + sym_string, + sym__number, + STATE(1121), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2554), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1081), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14124] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1666), 1, + anon_sym_LPAREN, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2572), 1, + anon_sym_GT, + ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, + sym_this, + STATE(1924), 1, + sym_nested_type_identifier, + STATE(3057), 1, + sym_type_parameters, + STATE(3195), 1, + sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2580), 2, + sym_true, + sym_false, + STATE(2376), 2, + sym_string, + sym__number, + STATE(2525), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(1676), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(451), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14237] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1666), 1, + anon_sym_LPAREN, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, + sym_this, + ACTIONS(2582), 1, + anon_sym_GT, + STATE(1924), 1, + sym_nested_type_identifier, + STATE(3057), 1, + sym_type_parameters, + STATE(3195), 1, + sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2580), 2, + sym_true, + sym_false, + STATE(2376), 2, + sym_string, + sym__number, + STATE(2525), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(1676), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(451), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14350] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1666), 1, + anon_sym_LPAREN, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, + sym_this, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2586), 1, + anon_sym_asserts, + STATE(1924), 1, + sym_nested_type_identifier, + STATE(2931), 1, + sym_type_parameters, + STATE(3280), 1, + sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1682), 2, + sym_true, + sym_false, + STATE(431), 2, + sym_string, + sym__number, + STATE(2104), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(1676), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(451), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14463] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2330), 1, + anon_sym_STAR, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2340), 1, + anon_sym_LBRACK, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2350), 1, + sym_number, + ACTIONS(2590), 1, + anon_sym_export, + ACTIONS(2594), 1, + anon_sym_async, + ACTIONS(2596), 1, + anon_sym_static, + ACTIONS(2602), 1, + sym_readonly, + STATE(1868), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + STATE(3299), 1, + sym_object, + STATE(3300), 1, + sym_array, + ACTIONS(2592), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2598), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2600), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1931), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2881), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2258), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2588), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14580] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 24, - anon_sym_STAR, + ACTIONS(2134), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2102), 30, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2138), 1, anon_sym_LBRACK, + ACTIONS(2140), 1, anon_sym_DOT, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [13864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2162), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, + ACTIONS(2181), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2164), 31, - sym__automatic_semicolon, + ACTIONS(2184), 1, + anon_sym_of, + ACTIONS(2188), 1, + anon_sym_EQ_GT, + ACTIONS(1075), 10, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -79962,44 +80732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13926] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2234), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2231), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(2156), 21, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2158), 28, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -80015,30 +80748,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13992] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2228), 1, - anon_sym_LT, - ACTIONS(2231), 1, - anon_sym_DOT, - ACTIONS(2225), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(2156), 22, + ACTIONS(1073), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, - anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -80057,109 +80770,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 27, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14060] = 4, + [14657] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2564), 1, - anon_sym_COLON, - ACTIONS(2162), 23, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(613), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(615), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2164), 30, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1666), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14124] = 29, + ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, + sym_this, + ACTIONS(2604), 1, + anon_sym_GT, + STATE(1924), 1, + sym_nested_type_identifier, + STATE(3057), 1, + sym_type_parameters, + STATE(3195), 1, + sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2580), 2, + sym_true, + sym_false, + STATE(2376), 2, + sym_string, + sym__number, + STATE(2525), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(1676), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(451), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14770] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -80170,38 +80879,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, ACTIONS(2566), 1, sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2572), 1, - anon_sym_RBRACK, ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2606), 1, + anon_sym_GT, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2749), 5, + STATE(2525), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80214,7 +80923,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -80229,7 +80938,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14237] = 29, + [14883] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -80238,11 +80947,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(653), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(655), 1, + ACTIONS(615), 1, anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -80254,38 +80963,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, - sym_this, + anon_sym_new, ACTIONS(2576), 1, - sym_identifier, + sym_number, ACTIONS(2578), 1, + sym_this, + ACTIONS(2608), 1, anon_sym_GT, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2525), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80298,7 +81007,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -80313,7 +81022,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14350] = 29, + [14996] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -80342,34 +81051,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2586), 1, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(2610), 1, anon_sym_RBRACK, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2774), 5, + STATE(2644), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80382,7 +81091,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -80397,21 +81106,105 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14463] = 29, + [15109] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(489), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(491), 1, + ACTIONS(615), 1, anon_sym_PIPE, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1666), 1, + anon_sym_LPAREN, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, + sym_this, + ACTIONS(2612), 1, + anon_sym_GT, + STATE(1924), 1, + sym_nested_type_identifier, + STATE(3057), 1, + sym_type_parameters, + STATE(3195), 1, + sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2580), 2, + sym_true, + sym_false, + STATE(2376), 2, + sym_string, + sym__number, + STATE(2525), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(1676), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(451), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [15222] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -80422,10 +81215,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2574), 1, anon_sym_new, - ACTIONS(1678), 1, + ACTIONS(2576), 1, sym_number, + ACTIONS(2578), 1, + sym_this, + ACTIONS(2614), 1, + anon_sym_GT, + STATE(1924), 1, + sym_nested_type_identifier, + STATE(3057), 1, + sym_type_parameters, + STATE(3195), 1, + sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2580), 2, + sym_true, + sym_false, + STATE(2376), 2, + sym_string, + sym__number, + STATE(2525), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(1676), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(451), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [15335] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1666), 1, + anon_sym_LPAREN, + ACTIONS(1670), 1, + anon_sym_LT, ACTIONS(2566), 1, sym_identifier, ACTIONS(2568), 1, @@ -80433,27 +81306,31 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, sym_this, - ACTIONS(2588), 1, - anon_sym_asserts, - STATE(1923), 1, + ACTIONS(2616), 1, + anon_sym_GT, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2092), 5, + STATE(2525), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80466,7 +81343,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -80481,21 +81358,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14576] = 29, + [15448] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -80506,38 +81383,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - ACTIONS(2590), 1, - anon_sym_GT, - STATE(1923), 1, + ACTIONS(2618), 1, + anon_sym_RBRACK, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2780), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80550,7 +81427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -80565,7 +81442,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14689] = 29, + [15561] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -80574,11 +81451,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(653), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(655), 1, + ACTIONS(615), 1, anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -80590,38 +81467,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2592), 1, + ACTIONS(2578), 1, + sym_this, + ACTIONS(2620), 1, anon_sym_GT, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2525), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80634,7 +81511,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -80649,21 +81526,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14802] = 29, + [15674] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -80674,38 +81551,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - ACTIONS(2594), 1, - anon_sym_GT, - STATE(1923), 1, + ACTIONS(2622), 1, + anon_sym_RBRACK, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2717), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80718,7 +81595,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -80733,76 +81610,76 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14915] = 29, + [15787] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(747), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(749), 1, + ACTIONS(615), 1, anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2574), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2618), 1, - anon_sym_asserts, - STATE(1952), 1, + ACTIONS(2624), 1, + anon_sym_GT, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3195), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2040), 5, + STATE(2525), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -80817,7 +81694,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15028] = 29, + [15900] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -80826,11 +81703,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(653), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(655), 1, + ACTIONS(615), 1, anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -80842,38 +81719,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2620), 1, + ACTIONS(2578), 1, + sym_this, + ACTIONS(2626), 1, anon_sym_GT, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2525), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80886,7 +81763,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -80901,21 +81778,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15141] = 29, + [16013] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -80926,38 +81803,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - ACTIONS(2622), 1, - anon_sym_GT, - STATE(1923), 1, + ACTIONS(2628), 1, + anon_sym_RBRACK, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2662), 5, sym__type, sym_constructor_type, sym_union_type, @@ -80970,7 +81847,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -80985,87 +81862,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15254] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1451), 1, - anon_sym_EQ, - ACTIONS(1455), 1, - anon_sym_LBRACK, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1463), 1, - anon_sym_QMARK_DOT, - ACTIONS(1565), 1, - anon_sym_EQ_GT, - ACTIONS(1596), 1, - anon_sym_in, - ACTIONS(2402), 1, - anon_sym_of, - ACTIONS(1119), 10, - anon_sym_as, - anon_sym_LPAREN, - 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(1465), 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(1133), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15331] = 29, + [16126] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -81076,10 +81887,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, ACTIONS(2566), 1, sym_identifier, ACTIONS(2568), 1, @@ -81087,27 +81894,31 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, sym_this, - ACTIONS(2624), 1, - anon_sym_RBRACK, - STATE(1923), 1, + ACTIONS(2630), 1, + anon_sym_GT, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2724), 5, + STATE(2525), 5, sym__type, sym_constructor_type, sym_union_type, @@ -81120,7 +81931,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -81135,21 +81946,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15444] = 29, + [16239] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -81160,38 +81971,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - ACTIONS(2626), 1, - anon_sym_GT, - STATE(1923), 1, + ACTIONS(2634), 1, + sym_jsx_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2406), 5, sym__type, sym_constructor_type, sym_union_type, @@ -81204,7 +82015,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -81219,7 +82030,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15557] = 29, + [16352] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -81228,11 +82039,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(653), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(655), 1, + ACTIONS(615), 1, anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -81244,38 +82055,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2628), 1, + ACTIONS(2578), 1, + sym_this, + ACTIONS(2636), 1, anon_sym_GT, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2525), 5, sym__type, sym_constructor_type, sym_union_type, @@ -81288,7 +82099,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -81303,73 +82114,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15670] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2134), 1, - anon_sym_EQ, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2183), 1, - anon_sym_EQ_GT, - ACTIONS(2388), 1, - anon_sym_in, - ACTIONS(2391), 1, - anon_sym_of, - ACTIONS(1037), 10, - anon_sym_as, - anon_sym_LPAREN, - 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(2144), 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(1035), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15747] = 29, + [16465] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -81378,11 +82123,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(653), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(655), 1, + ACTIONS(615), 1, anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -81394,38 +82139,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2630), 1, + ACTIONS(2578), 1, + sym_this, + ACTIONS(2638), 1, anon_sym_GT, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2525), 5, sym__type, sym_constructor_type, sym_union_type, @@ -81438,7 +82183,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -81453,84 +82198,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15860] = 8, + [16578] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2274), 1, - anon_sym_EQ, - ACTIONS(1037), 12, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - 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(2280), 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(1035), 22, + ACTIONS(451), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(487), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(489), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(491), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15931] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -81541,38 +82223,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - ACTIONS(2632), 1, - anon_sym_GT, - STATE(1923), 1, + ACTIONS(2640), 1, + anon_sym_RBRACK, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2811), 5, sym__type, sym_constructor_type, sym_union_type, @@ -81585,7 +82267,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -81600,76 +82282,76 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16044] = 29, + [16691] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(487), 1, + ACTIONS(821), 1, anon_sym_QMARK, - ACTIONS(489), 1, + ACTIONS(823), 1, anon_sym_AMP, - ACTIONS(491), 1, + ACTIONS(825), 1, anon_sym_PIPE, - ACTIONS(521), 1, + ACTIONS(839), 1, anon_sym_keyof, - ACTIONS(523), 1, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(1666), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(1672), 1, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(1678), 1, + ACTIONS(2658), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2660), 1, sym_this, - ACTIONS(2634), 1, - anon_sym_RBRACK, - STATE(1923), 1, + ACTIONS(2664), 1, + anon_sym_asserts, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3289), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(2711), 5, + STATE(2048), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -81684,26 +82366,22 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16157] = 11, + [16804] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2134), 1, - anon_sym_EQ, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2142), 1, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(2176), 1, - anon_sym_in, - ACTIONS(2179), 1, - anon_sym_of, - ACTIONS(2183), 1, - anon_sym_EQ_GT, - ACTIONS(1037), 10, + ACTIONS(2293), 1, + anon_sym_EQ, + ACTIONS(1075), 12, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -81712,7 +82390,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(2144), 15, + ACTIONS(2299), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81728,9 +82406,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1035), 21, + ACTIONS(1073), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -81750,18 +82429,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16234] = 5, + [16875] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2243), 1, + anon_sym_DOT, + ACTIONS(2237), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(2240), 3, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2190), 20, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(2192), 26, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2234), 2, + ACTIONS(2246), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2231), 4, + ACTIONS(2243), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2156), 21, + ACTIONS(2190), 21, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -81783,7 +82523,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(2158), 26, + ACTIONS(2192), 26, anon_sym_as, anon_sym_LPAREN, anon_sym_QMARK_DOT, @@ -81810,22 +82550,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16299] = 11, + [17007] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, + ACTIONS(1507), 1, anon_sym_EQ, - ACTIONS(1455), 1, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(1457), 1, + ACTIONS(1513), 1, anon_sym_DOT, - ACTIONS(1463), 1, + ACTIONS(1519), 1, anon_sym_QMARK_DOT, - ACTIONS(1565), 1, + ACTIONS(1545), 1, anon_sym_EQ_GT, - ACTIONS(1745), 1, + ACTIONS(1596), 1, anon_sym_in, - ACTIONS(2636), 1, + ACTIONS(2390), 1, anon_sym_of, ACTIONS(1119), 10, anon_sym_as, @@ -81838,7 +82578,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1465), 15, + ACTIONS(1521), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -81876,184 +82616,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16376] = 31, + [17084] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2330), 1, - anon_sym_STAR, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2340), 1, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(1511), 1, anon_sym_LBRACK, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2350), 1, - sym_number, - ACTIONS(2640), 1, - anon_sym_export, - ACTIONS(2644), 1, - anon_sym_async, - ACTIONS(2646), 1, - anon_sym_static, - ACTIONS(2652), 1, - sym_readonly, - STATE(1874), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - STATE(3256), 1, - sym_object, - STATE(3265), 1, - sym_array, - ACTIONS(2642), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2648), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2650), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1929), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2892), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(2214), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2638), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [16493] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, + ACTIONS(1513), 1, + anon_sym_DOT, + ACTIONS(1519), 1, + anon_sym_QMARK_DOT, + ACTIONS(1545), 1, + anon_sym_EQ_GT, + ACTIONS(1719), 1, + anon_sym_in, + ACTIONS(2666), 1, + anon_sym_of, + ACTIONS(1119), 10, + anon_sym_as, + anon_sym_LPAREN, + 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(1521), 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(1133), 21, anon_sym_STAR, - ACTIONS(487), 1, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(489), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(491), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2654), 1, - anon_sym_RBRACK, - STATE(1923), 1, - sym_nested_type_identifier, - STATE(2843), 1, - sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, - sym_formal_parameters, - ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, - sym_true, - sym_false, - STATE(442), 2, - sym_string, - sym__number, - STATE(2651), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(1676), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(432), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [16606] = 31, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17161] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(123), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1670), 1, anon_sym_LT, @@ -82071,57 +82707,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2350), 1, sym_number, - ACTIONS(2640), 1, + ACTIONS(2590), 1, anon_sym_export, - ACTIONS(2644), 1, + ACTIONS(2594), 1, anon_sym_async, - ACTIONS(2646), 1, + ACTIONS(2596), 1, anon_sym_static, - ACTIONS(2652), 1, + ACTIONS(2602), 1, sym_readonly, - STATE(1874), 1, + STATE(1868), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - STATE(3256), 1, + STATE(3299), 1, sym_object, - STATE(3265), 1, + STATE(3300), 1, sym_array, - ACTIONS(2642), 2, + ACTIONS(2592), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2648), 2, + ACTIONS(2598), 2, anon_sym_get, anon_sym_set, - ACTIONS(2650), 3, + ACTIONS(2600), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1929), 3, + STATE(1931), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2892), 4, + STATE(2881), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - STATE(2256), 6, + STATE(2222), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2638), 10, + ACTIONS(2588), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -82132,76 +82768,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16723] = 29, + [17278] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(2134), 1, + anon_sym_EQ, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2188), 1, + anon_sym_EQ_GT, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2440), 1, + anon_sym_of, + ACTIONS(1075), 10, + anon_sym_as, + anon_sym_LPAREN, + 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(2144), 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(1073), 21, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(653), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(655), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(1379), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17355] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2568), 1, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2500), 1, + anon_sym_STAR, + ACTIONS(2502), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2504), 1, + anon_sym_typeof, + ACTIONS(2506), 1, + anon_sym_LPAREN, + ACTIONS(2508), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2510), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2512), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_AMP, + ACTIONS(2516), 1, + anon_sym_PIPE, + ACTIONS(2522), 1, sym_number, - ACTIONS(2656), 1, - anon_sym_GT, - STATE(1923), 1, + ACTIONS(2524), 1, + sym_this, + ACTIONS(2528), 1, + anon_sym_keyof, + ACTIONS(2530), 1, + anon_sym_LBRACE_PIPE, + STATE(1384), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2912), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3270), 1, sym_nested_identifier, - STATE(3206), 1, + STATE(3316), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2526), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(1457), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(1548), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2520), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1460), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -82216,21 +82916,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16836] = 29, + [17465] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -82241,38 +82941,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - ACTIONS(2658), 1, - anon_sym_GT, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(2271), 5, sym__type, sym_constructor_type, sym_union_type, @@ -82285,7 +82983,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -82300,76 +82998,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16949] = 29, + [17575] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, + ACTIONS(821), 1, anon_sym_QMARK, - ACTIONS(653), 1, + ACTIONS(823), 1, anon_sym_AMP, - ACTIONS(655), 1, + ACTIONS(825), 1, anon_sym_PIPE, - ACTIONS(1379), 1, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(1666), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2650), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2658), 1, sym_number, ACTIONS(2660), 1, - anon_sym_GT, - STATE(1923), 1, + sym_this, + STATE(1950), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3206), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(1984), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -82384,44 +83080,33 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17062] = 6, + [17685] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2231), 1, - anon_sym_DOT, - ACTIONS(2225), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2228), 3, - anon_sym_LT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2156), 20, - anon_sym_STAR, + ACTIONS(2134), 1, anon_sym_EQ, - anon_sym_BANG, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2181), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2158), 26, + ACTIONS(2184), 1, + anon_sym_of, + ACTIONS(1075), 10, anon_sym_as, anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(2144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -82437,183 +83122,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17129] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, + ACTIONS(1073), 21, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, - ACTIONS(1670), 1, + anon_sym_BANG, anon_sym_LT, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - ACTIONS(2662), 1, anon_sym_GT, - STATE(1923), 1, - sym_nested_type_identifier, - STATE(3055), 1, - sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, - sym_formal_parameters, - ACTIONS(1674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - sym_true, - sym_false, - STATE(2424), 2, - sym_string, - sym__number, - STATE(2623), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(1676), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(432), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [17242] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(487), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(489), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, - ACTIONS(491), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2664), 1, - sym_identifier, - ACTIONS(2666), 1, - sym_jsx_identifier, - STATE(1923), 1, - sym_nested_type_identifier, - STATE(2843), 1, - sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, - sym_formal_parameters, - ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, - sym_true, - sym_false, - STATE(442), 2, - sym_string, - sym__number, - STATE(2499), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(1676), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(432), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [17355] = 28, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [17759] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -82634,7 +83165,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, ACTIONS(2668), 1, sym_identifier, @@ -82650,13 +83181,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(2680), 1, anon_sym_keyof, - STATE(2167), 1, + STATE(2110), 1, sym_nested_type_identifier, - STATE(2850), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3161), 1, + STATE(3163), 1, sym_formal_parameters, - STATE(3193), 1, + STATE(3289), 1, sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, @@ -82664,10 +83195,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(431), 5, + STATE(2277), 5, sym__type, sym_constructor_type, sym_union_type, @@ -82680,7 +83211,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -82695,156 +83226,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17465] = 28, + [17869] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(747), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(749), 1, + ACTIONS(615), 1, anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_new, - ACTIONS(2612), 1, - sym_number, - ACTIONS(2614), 1, - sym_this, - STATE(1952), 1, - sym_nested_type_identifier, - STATE(3050), 1, - sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, - sym_formal_parameters, - ACTIONS(2608), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2616), 2, - sym_true, - sym_false, - STATE(1987), 2, - sym_string, - sym__number, - STATE(2007), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2610), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1979), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [17575] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(715), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2460), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2462), 1, - anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - ACTIONS(2466), 1, - anon_sym_typeof, - ACTIONS(2468), 1, - anon_sym_LPAREN, - ACTIONS(2470), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2574), 1, anon_sym_new, - ACTIONS(2474), 1, - anon_sym_QMARK, - ACTIONS(2476), 1, - anon_sym_AMP, - ACTIONS(2478), 1, - anon_sym_PIPE, - ACTIONS(2484), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2490), 1, - anon_sym_keyof, - ACTIONS(2492), 1, - anon_sym_LBRACE_PIPE, - STATE(1473), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3020), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3109), 1, - sym_nested_identifier, - STATE(3273), 1, + STATE(3195), 1, sym_formal_parameters, - ACTIONS(2480), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2488), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(1673), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(1605), 5, + STATE(2408), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2482), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1687), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -82859,74 +83308,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17685] = 28, + [17979] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1666), 1, + anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2528), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2530), 1, - anon_sym_STAR, - ACTIONS(2532), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - ACTIONS(2534), 1, - anon_sym_typeof, - ACTIONS(2536), 1, - anon_sym_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2574), 1, anon_sym_new, - ACTIONS(2542), 1, - anon_sym_QMARK, - ACTIONS(2544), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(2552), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2554), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2558), 1, - anon_sym_keyof, - ACTIONS(2560), 1, - anon_sym_LBRACE_PIPE, - STATE(991), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3033), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3087), 1, - sym_nested_identifier, - STATE(3164), 1, + STATE(3195), 1, sym_formal_parameters, - ACTIONS(2548), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(1103), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(1160), 5, + STATE(2282), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2550), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1148), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -82941,7 +83390,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17795] = 28, + [18089] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -82950,11 +83399,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(653), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(655), 1, + ACTIONS(615), 1, anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -82966,36 +83415,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2576), 1, sym_number, - STATE(1923), 1, + ACTIONS(2578), 1, + sym_this, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2590), 5, + STATE(436), 5, sym__type, sym_constructor_type, sym_union_type, @@ -83008,7 +83457,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83023,61 +83472,61 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17905] = 28, + [18199] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1678), 1, - sym_number, + ACTIONS(2566), 1, + sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, - sym_this, - ACTIONS(2668), 1, - sym_identifier, - ACTIONS(2670), 1, - anon_sym_typeof, - ACTIONS(2672), 1, anon_sym_new, - ACTIONS(2674), 1, - anon_sym_QMARK, - ACTIONS(2676), 1, - anon_sym_AMP, - ACTIONS(2678), 1, - anon_sym_PIPE, - ACTIONS(2680), 1, - anon_sym_keyof, - STATE(2167), 1, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, + sym_this, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2850), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3161), 1, + STATE(3195), 1, sym_formal_parameters, - STATE(3193), 1, + STATE(3289), 1, sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(446), 5, + STATE(435), 5, sym__type, sym_constructor_type, sym_union_type, @@ -83090,7 +83539,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83105,74 +83554,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18015] = 28, + [18309] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(747), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(749), 1, + ACTIONS(615), 1, anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2574), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2578), 1, sym_this, - STATE(1952), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3195), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(1992), 5, + STATE(2351), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83187,61 +83636,61 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18125] = 28, + [18419] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1678), 1, - sym_number, + ACTIONS(2566), 1, + sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, - sym_this, - ACTIONS(2668), 1, - sym_identifier, - ACTIONS(2670), 1, - anon_sym_typeof, - ACTIONS(2672), 1, anon_sym_new, - ACTIONS(2674), 1, - anon_sym_QMARK, - ACTIONS(2676), 1, - anon_sym_AMP, - ACTIONS(2678), 1, - anon_sym_PIPE, - ACTIONS(2680), 1, - anon_sym_keyof, - STATE(2167), 1, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, + sym_this, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2850), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3161), 1, + STATE(3195), 1, sym_formal_parameters, - STATE(3193), 1, + STATE(3289), 1, sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2417), 5, + STATE(2355), 5, sym__type, sym_constructor_type, sym_union_type, @@ -83254,7 +83703,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83269,20 +83718,20 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18235] = 28, + [18529] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(745), 1, + ACTIONS(821), 1, anon_sym_QMARK, - ACTIONS(747), 1, + ACTIONS(823), 1, anon_sym_AMP, - ACTIONS(749), 1, + ACTIONS(825), 1, anon_sym_PIPE, - ACTIONS(763), 1, + ACTIONS(839), 1, anon_sym_keyof, - ACTIONS(765), 1, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, ACTIONS(1670), 1, anon_sym_LT, @@ -83290,53 +83739,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, + ACTIONS(2642), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, + ACTIONS(2650), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(2658), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2660), 1, sym_this, - STATE(1952), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3086), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3092), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(2608), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(1991), 5, + STATE(2126), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83351,61 +83800,61 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18345] = 28, + [18639] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, ACTIONS(1678), 1, sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2670), 1, - anon_sym_typeof, - ACTIONS(2682), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2684), 1, - anon_sym_new, - ACTIONS(2686), 1, - anon_sym_QMARK, - ACTIONS(2688), 1, - anon_sym_AMP, - ACTIONS(2690), 1, - anon_sym_PIPE, - ACTIONS(2692), 1, - anon_sym_keyof, - STATE(486), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3025), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3226), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(509), 5, + STATE(1972), 5, sym__type, sym_constructor_type, sym_union_type, @@ -83418,7 +83867,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83433,74 +83882,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18455] = 28, + [18749] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(523), 1, + ACTIONS(821), 1, + anon_sym_QMARK, + ACTIONS(823), 1, + anon_sym_AMP, + ACTIONS(825), 1, + anon_sym_PIPE, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2670), 1, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2648), 1, + anon_sym_LPAREN, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(2686), 1, - anon_sym_QMARK, - ACTIONS(2688), 1, - anon_sym_AMP, - ACTIONS(2690), 1, - anon_sym_PIPE, - ACTIONS(2692), 1, - anon_sym_keyof, - STATE(486), 1, + ACTIONS(2658), 1, + sym_number, + ACTIONS(2660), 1, + sym_this, + STATE(1950), 1, sym_nested_type_identifier, - STATE(3025), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3226), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(502), 5, + STATE(2606), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83515,74 +83964,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18565] = 28, + [18859] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, - ACTIONS(1379), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2568), 1, + ACTIONS(2532), 1, + sym_identifier, + ACTIONS(2534), 1, + anon_sym_STAR, + ACTIONS(2536), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2538), 1, + anon_sym_typeof, + ACTIONS(2540), 1, + anon_sym_LPAREN, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2544), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2546), 1, + anon_sym_QMARK, + ACTIONS(2548), 1, + anon_sym_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2556), 1, sym_number, - STATE(1923), 1, + ACTIONS(2558), 1, + sym_this, + ACTIONS(2562), 1, + anon_sym_keyof, + ACTIONS(2564), 1, + anon_sym_LBRACE_PIPE, + STATE(1021), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3047), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3089), 1, sym_nested_identifier, - STATE(3206), 1, + STATE(3115), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2560), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(1086), 2, sym_string, sym__number, - STATE(2374), 5, + STATE(1064), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2554), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1081), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83597,74 +84046,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18675] = 28, + [18969] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, + ACTIONS(2532), 1, + sym_identifier, + ACTIONS(2534), 1, + anon_sym_STAR, + ACTIONS(2536), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2670), 1, + ACTIONS(2538), 1, anon_sym_typeof, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2540), 1, + anon_sym_LPAREN, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2544), 1, anon_sym_new, - ACTIONS(2686), 1, + ACTIONS(2546), 1, anon_sym_QMARK, - ACTIONS(2688), 1, + ACTIONS(2548), 1, anon_sym_AMP, - ACTIONS(2690), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2692), 1, + ACTIONS(2556), 1, + sym_number, + ACTIONS(2558), 1, + sym_this, + ACTIONS(2562), 1, anon_sym_keyof, - STATE(486), 1, + ACTIONS(2564), 1, + anon_sym_LBRACE_PIPE, + STATE(1021), 1, sym_nested_type_identifier, - STATE(3025), 1, + STATE(3047), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3089), 1, sym_nested_identifier, - STATE(3226), 1, + STATE(3115), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2560), 2, sym_true, sym_false, - STATE(442), 2, + STATE(1086), 2, sym_string, sym__number, - STATE(446), 5, + STATE(1173), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2554), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1081), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83679,74 +84128,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18785] = 28, + [19079] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(487), 1, + ACTIONS(821), 1, anon_sym_QMARK, - ACTIONS(489), 1, + ACTIONS(823), 1, anon_sym_AMP, - ACTIONS(491), 1, + ACTIONS(825), 1, anon_sym_PIPE, - ACTIONS(521), 1, + ACTIONS(839), 1, anon_sym_keyof, - ACTIONS(523), 1, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(1666), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(1672), 1, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(1678), 1, + ACTIONS(2658), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2660), 1, sym_this, - STATE(1923), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3289), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(2499), 5, + STATE(2006), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83761,74 +84210,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18895] = 28, + [19189] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, - ACTIONS(1379), 1, + ACTIONS(757), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2568), 1, + ACTIONS(2460), 1, + sym_identifier, + ACTIONS(2462), 1, + anon_sym_STAR, + ACTIONS(2464), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2466), 1, + anon_sym_typeof, + ACTIONS(2468), 1, + anon_sym_LPAREN, + ACTIONS(2470), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2472), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2474), 1, + anon_sym_QMARK, + ACTIONS(2476), 1, + anon_sym_AMP, + ACTIONS(2478), 1, + anon_sym_PIPE, + ACTIONS(2484), 1, sym_number, - STATE(1923), 1, + ACTIONS(2486), 1, + sym_this, + ACTIONS(2490), 1, + anon_sym_keyof, + ACTIONS(2492), 1, + anon_sym_LBRACE_PIPE, + STATE(1488), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3042), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3111), 1, sym_nested_identifier, - STATE(3206), 1, + STATE(3218), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2488), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(1644), 2, sym_string, sym__number, - STATE(2322), 5, + STATE(1681), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2482), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1598), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83843,7 +84292,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19005] = 28, + [19299] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -83864,7 +84313,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, ACTIONS(2670), 1, anon_sym_typeof, @@ -83880,24 +84329,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(2692), 1, anon_sym_keyof, - STATE(486), 1, + STATE(497), 1, sym_nested_type_identifier, - STATE(3025), 1, + STATE(3044), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3226), 1, + STATE(3162), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(431), 5, + STATE(509), 5, sym__type, sym_constructor_type, sym_union_type, @@ -83910,7 +84359,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -83925,74 +84374,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19115] = 28, + [19409] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(487), 1, + ACTIONS(821), 1, anon_sym_QMARK, - ACTIONS(489), 1, + ACTIONS(823), 1, anon_sym_AMP, - ACTIONS(491), 1, + ACTIONS(825), 1, anon_sym_PIPE, - ACTIONS(521), 1, + ACTIONS(839), 1, anon_sym_keyof, - ACTIONS(523), 1, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(1666), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(1672), 1, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(1678), 1, + ACTIONS(2658), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2660), 1, sym_this, - STATE(1923), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3289), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(2416), 5, + STATE(2007), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84007,74 +84456,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19225] = 28, + [19519] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2500), 1, + anon_sym_STAR, + ACTIONS(2502), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2670), 1, + ACTIONS(2504), 1, anon_sym_typeof, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2506), 1, + anon_sym_LPAREN, + ACTIONS(2508), 1, + anon_sym_LBRACK, + ACTIONS(2510), 1, anon_sym_new, - ACTIONS(2686), 1, + ACTIONS(2512), 1, anon_sym_QMARK, - ACTIONS(2688), 1, + ACTIONS(2514), 1, anon_sym_AMP, - ACTIONS(2690), 1, + ACTIONS(2516), 1, anon_sym_PIPE, - ACTIONS(2692), 1, + ACTIONS(2522), 1, + sym_number, + ACTIONS(2524), 1, + sym_this, + ACTIONS(2528), 1, anon_sym_keyof, - STATE(486), 1, + ACTIONS(2530), 1, + anon_sym_LBRACE_PIPE, + STATE(1384), 1, sym_nested_type_identifier, - STATE(3025), 1, + STATE(2912), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3270), 1, sym_nested_identifier, - STATE(3226), 1, + STATE(3316), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2526), 2, sym_true, sym_false, - STATE(442), 2, + STATE(1457), 2, sym_string, sym__number, - STATE(504), 5, + STATE(1547), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2520), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1460), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84089,74 +84538,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19335] = 28, + [19629] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(487), 1, + ACTIONS(821), 1, anon_sym_QMARK, - ACTIONS(489), 1, + ACTIONS(823), 1, anon_sym_AMP, - ACTIONS(491), 1, + ACTIONS(825), 1, anon_sym_PIPE, - ACTIONS(521), 1, + ACTIONS(839), 1, anon_sym_keyof, - ACTIONS(523), 1, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(1666), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(1672), 1, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(1678), 1, + ACTIONS(2658), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2660), 1, sym_this, - STATE(1923), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3289), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(2789), 5, + STATE(2015), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84171,74 +84620,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19445] = 28, + [19739] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(523), 1, + ACTIONS(821), 1, + anon_sym_QMARK, + ACTIONS(823), 1, + anon_sym_AMP, + ACTIONS(825), 1, + anon_sym_PIPE, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2668), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2642), 1, sym_identifier, - ACTIONS(2670), 1, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(2672), 1, + ACTIONS(2648), 1, + anon_sym_LPAREN, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(2674), 1, - anon_sym_QMARK, - ACTIONS(2676), 1, - anon_sym_AMP, - ACTIONS(2678), 1, - anon_sym_PIPE, - ACTIONS(2680), 1, - anon_sym_keyof, - STATE(2167), 1, + ACTIONS(2658), 1, + sym_number, + ACTIONS(2660), 1, + sym_this, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2850), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3161), 1, - sym_formal_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - ACTIONS(1674), 2, + STATE(3207), 1, + sym_formal_parameters, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(2444), 5, + STATE(2012), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84253,74 +84702,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19555] = 28, + [19849] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(487), 1, + ACTIONS(821), 1, anon_sym_QMARK, - ACTIONS(489), 1, + ACTIONS(823), 1, anon_sym_AMP, - ACTIONS(491), 1, + ACTIONS(825), 1, anon_sym_PIPE, - ACTIONS(521), 1, + ACTIONS(839), 1, anon_sym_keyof, - ACTIONS(523), 1, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(1666), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(1672), 1, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(1678), 1, + ACTIONS(2658), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2660), 1, sym_this, - STATE(1923), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3289), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(2372), 5, + STATE(2019), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84335,74 +84784,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19665] = 28, + [19959] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(523), 1, + ACTIONS(821), 1, + anon_sym_QMARK, + ACTIONS(823), 1, + anon_sym_AMP, + ACTIONS(825), 1, + anon_sym_PIPE, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2670), 1, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2648), 1, + anon_sym_LPAREN, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(2686), 1, - anon_sym_QMARK, - ACTIONS(2688), 1, - anon_sym_AMP, - ACTIONS(2690), 1, - anon_sym_PIPE, - ACTIONS(2692), 1, - anon_sym_keyof, - STATE(486), 1, + ACTIONS(2658), 1, + sym_number, + ACTIONS(2660), 1, + sym_this, + STATE(1950), 1, sym_nested_type_identifier, - STATE(3025), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3226), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(506), 5, + STATE(2022), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84417,74 +84866,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19775] = 28, + [20069] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(487), 1, + ACTIONS(821), 1, anon_sym_QMARK, - ACTIONS(489), 1, + ACTIONS(823), 1, anon_sym_AMP, - ACTIONS(491), 1, + ACTIONS(825), 1, anon_sym_PIPE, - ACTIONS(521), 1, + ACTIONS(839), 1, anon_sym_keyof, - ACTIONS(523), 1, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(1666), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(1672), 1, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(1678), 1, + ACTIONS(2658), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2660), 1, sym_this, - STATE(1923), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3289), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(2690), 5, + STATE(2020), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84499,7 +84948,71 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19885] = 28, + [20179] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2134), 1, + anon_sym_EQ, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2437), 1, + anon_sym_in, + ACTIONS(2440), 1, + anon_sym_of, + ACTIONS(1075), 10, + anon_sym_as, + anon_sym_LPAREN, + 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(2144), 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(1073), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20253] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -84520,40 +85033,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, + ACTIONS(2668), 1, + sym_identifier, ACTIONS(2670), 1, anon_sym_typeof, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2672), 1, anon_sym_new, - ACTIONS(2686), 1, + ACTIONS(2674), 1, anon_sym_QMARK, - ACTIONS(2688), 1, + ACTIONS(2676), 1, anon_sym_AMP, - ACTIONS(2690), 1, + ACTIONS(2678), 1, anon_sym_PIPE, - ACTIONS(2692), 1, + ACTIONS(2680), 1, anon_sym_keyof, - STATE(486), 1, + STATE(2110), 1, sym_nested_type_identifier, - STATE(3025), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3226), 1, + STATE(3163), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(510), 5, + STATE(2266), 5, sym__type, sym_constructor_type, sym_union_type, @@ -84566,7 +85079,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84581,74 +85094,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19995] = 28, + [20363] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, - ACTIONS(1379), 1, + ACTIONS(757), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2568), 1, + ACTIONS(2460), 1, + sym_identifier, + ACTIONS(2462), 1, + anon_sym_STAR, + ACTIONS(2464), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2466), 1, + anon_sym_typeof, + ACTIONS(2468), 1, + anon_sym_LPAREN, + ACTIONS(2470), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2472), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2474), 1, + anon_sym_QMARK, + ACTIONS(2476), 1, + anon_sym_AMP, + ACTIONS(2478), 1, + anon_sym_PIPE, + ACTIONS(2484), 1, sym_number, - STATE(1923), 1, + ACTIONS(2486), 1, + sym_this, + ACTIONS(2490), 1, + anon_sym_keyof, + ACTIONS(2492), 1, + anon_sym_LBRACE_PIPE, + STATE(1488), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3042), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3111), 1, sym_nested_identifier, - STATE(3206), 1, + STATE(3218), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2488), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(1644), 2, sym_string, sym__number, - STATE(2426), 5, + STATE(1580), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2482), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1598), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84663,12 +85176,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20105] = 28, + [20473] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 1, + ACTIONS(757), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, @@ -84700,13 +85213,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(2492), 1, anon_sym_LBRACE_PIPE, - STATE(1473), 1, + STATE(1488), 1, sym_nested_type_identifier, - STATE(3020), 1, + STATE(3042), 1, sym_type_parameters, - STATE(3109), 1, + STATE(3111), 1, sym_nested_identifier, - STATE(3273), 1, + STATE(3218), 1, sym_formal_parameters, ACTIONS(2480), 2, anon_sym_PLUS, @@ -84714,10 +85227,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2488), 2, sym_true, sym_false, - STATE(1673), 2, + STATE(1644), 2, sym_string, sym__number, - STATE(1593), 5, + STATE(1577), 5, sym__type, sym_constructor_type, sym_union_type, @@ -84730,7 +85243,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1687), 14, + STATE(1598), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84745,74 +85258,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20215] = 28, + [20583] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, - anon_sym_SQUOTE, + ACTIONS(809), 1, + anon_sym_STAR, + ACTIONS(821), 1, + anon_sym_QMARK, + ACTIONS(823), 1, + anon_sym_AMP, + ACTIONS(825), 1, + anon_sym_PIPE, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, + anon_sym_LBRACE_PIPE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2460), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2642), 1, sym_identifier, - ACTIONS(2462), 1, - anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2466), 1, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(2468), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(2470), 1, + ACTIONS(2650), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(2474), 1, - anon_sym_QMARK, - ACTIONS(2476), 1, - anon_sym_AMP, - ACTIONS(2478), 1, - anon_sym_PIPE, - ACTIONS(2484), 1, + ACTIONS(2658), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2660), 1, sym_this, - ACTIONS(2490), 1, - anon_sym_keyof, - ACTIONS(2492), 1, - anon_sym_LBRACE_PIPE, - STATE(1473), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(3020), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3109), 1, + STATE(3090), 1, sym_nested_identifier, - STATE(3273), 1, + STATE(3207), 1, sym_formal_parameters, - ACTIONS(2480), 2, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2488), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(1673), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(1589), 5, + STATE(2074), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2482), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1687), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84827,74 +85340,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20325] = 28, + [20693] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2460), 1, + ACTIONS(2532), 1, sym_identifier, - ACTIONS(2462), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(2536), 1, anon_sym_LBRACE, - ACTIONS(2466), 1, + ACTIONS(2538), 1, anon_sym_typeof, - ACTIONS(2468), 1, + ACTIONS(2540), 1, anon_sym_LPAREN, - ACTIONS(2470), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2544), 1, anon_sym_new, - ACTIONS(2474), 1, + ACTIONS(2546), 1, anon_sym_QMARK, - ACTIONS(2476), 1, + ACTIONS(2548), 1, anon_sym_AMP, - ACTIONS(2478), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2484), 1, + ACTIONS(2556), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2558), 1, sym_this, - ACTIONS(2490), 1, + ACTIONS(2562), 1, anon_sym_keyof, - ACTIONS(2492), 1, + ACTIONS(2564), 1, anon_sym_LBRACE_PIPE, - STATE(1473), 1, + STATE(1021), 1, sym_nested_type_identifier, - STATE(3020), 1, + STATE(3047), 1, sym_type_parameters, - STATE(3109), 1, + STATE(3089), 1, sym_nested_identifier, - STATE(3273), 1, + STATE(3115), 1, sym_formal_parameters, - ACTIONS(2480), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2488), 2, + ACTIONS(2560), 2, sym_true, sym_false, - STATE(1673), 2, + STATE(1086), 2, sym_string, sym__number, - STATE(1604), 5, + STATE(1109), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2482), 6, + ACTIONS(2554), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1687), 14, + STATE(1081), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84909,74 +85422,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20435] = 28, + [20803] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2460), 1, + ACTIONS(2532), 1, sym_identifier, - ACTIONS(2462), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(2536), 1, anon_sym_LBRACE, - ACTIONS(2466), 1, + ACTIONS(2538), 1, anon_sym_typeof, - ACTIONS(2468), 1, + ACTIONS(2540), 1, anon_sym_LPAREN, - ACTIONS(2470), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2544), 1, anon_sym_new, - ACTIONS(2474), 1, + ACTIONS(2546), 1, anon_sym_QMARK, - ACTIONS(2476), 1, + ACTIONS(2548), 1, anon_sym_AMP, - ACTIONS(2478), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2484), 1, + ACTIONS(2556), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2558), 1, sym_this, - ACTIONS(2490), 1, + ACTIONS(2562), 1, anon_sym_keyof, - ACTIONS(2492), 1, + ACTIONS(2564), 1, anon_sym_LBRACE_PIPE, - STATE(1473), 1, + STATE(1021), 1, sym_nested_type_identifier, - STATE(3020), 1, + STATE(3047), 1, sym_type_parameters, - STATE(3109), 1, + STATE(3089), 1, sym_nested_identifier, - STATE(3273), 1, + STATE(3115), 1, sym_formal_parameters, - ACTIONS(2480), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2488), 2, + ACTIONS(2560), 2, sym_true, sym_false, - STATE(1673), 2, + STATE(1086), 2, sym_string, sym__number, - STATE(1621), 5, + STATE(1120), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2482), 6, + ACTIONS(2554), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1687), 14, + STATE(1081), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -84991,7 +85504,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20545] = 28, + [20913] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -85020,32 +85533,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2691), 5, + STATE(2384), 5, sym__type, sym_constructor_type, sym_union_type, @@ -85058,7 +85571,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85073,74 +85586,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20655] = 28, + [21023] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2460), 1, + ACTIONS(2532), 1, sym_identifier, - ACTIONS(2462), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(2536), 1, anon_sym_LBRACE, - ACTIONS(2466), 1, + ACTIONS(2538), 1, anon_sym_typeof, - ACTIONS(2468), 1, + ACTIONS(2540), 1, anon_sym_LPAREN, - ACTIONS(2470), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2544), 1, anon_sym_new, - ACTIONS(2474), 1, + ACTIONS(2546), 1, anon_sym_QMARK, - ACTIONS(2476), 1, + ACTIONS(2548), 1, anon_sym_AMP, - ACTIONS(2478), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2484), 1, + ACTIONS(2556), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2558), 1, sym_this, - ACTIONS(2490), 1, + ACTIONS(2562), 1, anon_sym_keyof, - ACTIONS(2492), 1, + ACTIONS(2564), 1, anon_sym_LBRACE_PIPE, - STATE(1473), 1, + STATE(1021), 1, sym_nested_type_identifier, - STATE(3020), 1, + STATE(3047), 1, sym_type_parameters, - STATE(3109), 1, + STATE(3089), 1, sym_nested_identifier, - STATE(3273), 1, + STATE(3115), 1, sym_formal_parameters, - ACTIONS(2480), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2488), 2, + ACTIONS(2560), 2, sym_true, sym_false, - STATE(1673), 2, + STATE(1086), 2, sym_string, sym__number, - STATE(1586), 5, + STATE(1054), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2482), 6, + ACTIONS(2554), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1687), 14, + STATE(1081), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85155,74 +85668,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20765] = 28, + [21133] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2460), 1, + ACTIONS(2532), 1, sym_identifier, - ACTIONS(2462), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(2536), 1, anon_sym_LBRACE, - ACTIONS(2466), 1, + ACTIONS(2538), 1, anon_sym_typeof, - ACTIONS(2468), 1, + ACTIONS(2540), 1, anon_sym_LPAREN, - ACTIONS(2470), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2544), 1, anon_sym_new, - ACTIONS(2474), 1, + ACTIONS(2546), 1, anon_sym_QMARK, - ACTIONS(2476), 1, + ACTIONS(2548), 1, anon_sym_AMP, - ACTIONS(2478), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2484), 1, + ACTIONS(2556), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2558), 1, sym_this, - ACTIONS(2490), 1, + ACTIONS(2562), 1, anon_sym_keyof, - ACTIONS(2492), 1, + ACTIONS(2564), 1, anon_sym_LBRACE_PIPE, - STATE(1473), 1, + STATE(1021), 1, sym_nested_type_identifier, - STATE(3020), 1, + STATE(3047), 1, sym_type_parameters, - STATE(3109), 1, + STATE(3089), 1, sym_nested_identifier, - STATE(3273), 1, + STATE(3115), 1, sym_formal_parameters, - ACTIONS(2480), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2488), 2, + ACTIONS(2560), 2, sym_true, sym_false, - STATE(1673), 2, + STATE(1086), 2, sym_string, sym__number, - STATE(1584), 5, + STATE(1055), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2482), 6, + ACTIONS(2554), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1687), 14, + STATE(1081), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85237,74 +85750,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20875] = 28, + [21243] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2460), 1, + ACTIONS(2532), 1, sym_identifier, - ACTIONS(2462), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(2536), 1, anon_sym_LBRACE, - ACTIONS(2466), 1, + ACTIONS(2538), 1, anon_sym_typeof, - ACTIONS(2468), 1, + ACTIONS(2540), 1, anon_sym_LPAREN, - ACTIONS(2470), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2544), 1, anon_sym_new, - ACTIONS(2474), 1, + ACTIONS(2546), 1, anon_sym_QMARK, - ACTIONS(2476), 1, + ACTIONS(2548), 1, anon_sym_AMP, - ACTIONS(2478), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2484), 1, + ACTIONS(2556), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2558), 1, sym_this, - ACTIONS(2490), 1, + ACTIONS(2562), 1, anon_sym_keyof, - ACTIONS(2492), 1, + ACTIONS(2564), 1, anon_sym_LBRACE_PIPE, - STATE(1473), 1, + STATE(1021), 1, sym_nested_type_identifier, - STATE(3020), 1, + STATE(3047), 1, sym_type_parameters, - STATE(3109), 1, + STATE(3089), 1, sym_nested_identifier, - STATE(3273), 1, + STATE(3115), 1, sym_formal_parameters, - ACTIONS(2480), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2488), 2, + ACTIONS(2560), 2, sym_true, sym_false, - STATE(1673), 2, + STATE(1086), 2, sym_string, sym__number, - STATE(1576), 5, + STATE(1133), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2482), 6, + ACTIONS(2554), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1687), 14, + STATE(1081), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85319,74 +85832,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20985] = 28, + [21353] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2460), 1, + ACTIONS(2532), 1, sym_identifier, - ACTIONS(2462), 1, + ACTIONS(2534), 1, anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(2536), 1, anon_sym_LBRACE, - ACTIONS(2466), 1, + ACTIONS(2538), 1, anon_sym_typeof, - ACTIONS(2468), 1, + ACTIONS(2540), 1, anon_sym_LPAREN, - ACTIONS(2470), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2472), 1, + ACTIONS(2544), 1, anon_sym_new, - ACTIONS(2474), 1, + ACTIONS(2546), 1, anon_sym_QMARK, - ACTIONS(2476), 1, + ACTIONS(2548), 1, anon_sym_AMP, - ACTIONS(2478), 1, + ACTIONS(2550), 1, anon_sym_PIPE, - ACTIONS(2484), 1, + ACTIONS(2556), 1, sym_number, - ACTIONS(2486), 1, + ACTIONS(2558), 1, sym_this, - ACTIONS(2490), 1, + ACTIONS(2562), 1, anon_sym_keyof, - ACTIONS(2492), 1, + ACTIONS(2564), 1, anon_sym_LBRACE_PIPE, - STATE(1473), 1, + STATE(1021), 1, sym_nested_type_identifier, - STATE(3020), 1, + STATE(3047), 1, sym_type_parameters, - STATE(3109), 1, + STATE(3089), 1, sym_nested_identifier, - STATE(3273), 1, + STATE(3115), 1, sym_formal_parameters, - ACTIONS(2480), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2488), 2, + ACTIONS(2560), 2, sym_true, sym_false, - STATE(1673), 2, + STATE(1086), 2, sym_string, sym__number, - STATE(1570), 5, + STATE(1138), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2482), 6, + ACTIONS(2554), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1687), 14, + STATE(1081), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85401,74 +85914,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21095] = 28, + [21463] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + ACTIONS(501), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(503), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2566), 1, + ACTIONS(2532), 1, sym_identifier, - ACTIONS(2568), 1, + ACTIONS(2534), 1, + anon_sym_STAR, + ACTIONS(2536), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2538), 1, + anon_sym_typeof, + ACTIONS(2540), 1, + anon_sym_LPAREN, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2544), 1, + anon_sym_new, + ACTIONS(2546), 1, + anon_sym_QMARK, + ACTIONS(2548), 1, + anon_sym_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE, + ACTIONS(2556), 1, + sym_number, + ACTIONS(2558), 1, sym_this, - STATE(1923), 1, + ACTIONS(2562), 1, + anon_sym_keyof, + ACTIONS(2564), 1, + anon_sym_LBRACE_PIPE, + STATE(1021), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3047), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3089), 1, sym_nested_identifier, - STATE(3289), 1, + STATE(3115), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2552), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2560), 2, sym_true, sym_false, - STATE(442), 2, + STATE(1086), 2, sym_string, sym__number, - STATE(2319), 5, + STATE(1139), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2554), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1081), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85483,61 +85996,61 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21205] = 28, + [21573] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2682), 1, + sym_identifier, + ACTIONS(2684), 1, + anon_sym_new, + ACTIONS(2686), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2692), 1, + anon_sym_keyof, + STATE(497), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3044), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3162), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2498), 5, + STATE(513), 5, sym__type, sym_constructor_type, sym_union_type, @@ -85550,7 +86063,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85565,61 +86078,61 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21315] = 28, + [21683] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2682), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2684), 1, anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, + ACTIONS(2686), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2692), 1, + anon_sym_keyof, + STATE(497), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3044), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3162), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2300), 5, + STATE(510), 5, sym__type, sym_constructor_type, sym_union_type, @@ -85632,7 +86145,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85647,74 +86160,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21425] = 28, + [21793] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_QMARK, - ACTIONS(747), 1, - anon_sym_AMP, - ACTIONS(749), 1, - anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, + ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, - anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1678), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - STATE(1952), 1, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2682), 1, + sym_identifier, + ACTIONS(2684), 1, + anon_sym_new, + ACTIONS(2686), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2692), 1, + anon_sym_keyof, + STATE(497), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(3044), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3162), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2593), 5, + STATE(436), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85729,61 +86242,61 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21535] = 28, + [21903] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2682), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2684), 1, anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, + ACTIONS(2686), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2692), 1, + anon_sym_keyof, + STATE(497), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3044), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3162), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2410), 5, + STATE(435), 5, sym__type, sym_constructor_type, sym_union_type, @@ -85796,7 +86309,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85811,61 +86324,61 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21645] = 28, + [22013] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2682), 1, + sym_identifier, + ACTIONS(2684), 1, + anon_sym_new, + ACTIONS(2686), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2692), 1, + anon_sym_keyof, + STATE(497), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3044), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3162), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2379), 5, + STATE(508), 5, sym__type, sym_constructor_type, sym_union_type, @@ -85878,7 +86391,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85893,61 +86406,61 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21755] = 28, + [22123] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2682), 1, + sym_identifier, + ACTIONS(2684), 1, + anon_sym_new, + ACTIONS(2686), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2692), 1, + anon_sym_keyof, + STATE(497), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3044), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3162), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2531), 5, + STATE(507), 5, sym__type, sym_constructor_type, sym_union_type, @@ -85960,7 +86473,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -85975,7 +86488,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21865] = 28, + [22233] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -85996,7 +86509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, ACTIONS(2670), 1, anon_sym_typeof, @@ -86012,24 +86525,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(2692), 1, anon_sym_keyof, - STATE(486), 1, + STATE(497), 1, sym_nested_type_identifier, - STATE(3025), 1, + STATE(3044), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3226), 1, + STATE(3162), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(445), 5, + STATE(502), 5, sym__type, sym_constructor_type, sym_union_type, @@ -86042,7 +86555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -86057,74 +86570,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21975] = 28, + [22343] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_QMARK, - ACTIONS(747), 1, - anon_sym_AMP, - ACTIONS(749), 1, - anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(757), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2460), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2462), 1, + anon_sym_STAR, + ACTIONS(2464), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2466), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(2468), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, + ACTIONS(2470), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2472), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(2474), 1, + anon_sym_QMARK, + ACTIONS(2476), 1, + anon_sym_AMP, + ACTIONS(2478), 1, + anon_sym_PIPE, + ACTIONS(2484), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2486), 1, sym_this, - STATE(1952), 1, + ACTIONS(2490), 1, + anon_sym_keyof, + ACTIONS(2492), 1, + anon_sym_LBRACE_PIPE, + STATE(1488), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(3042), 1, sym_type_parameters, - STATE(3086), 1, + STATE(3111), 1, sym_nested_identifier, - STATE(3092), 1, + STATE(3218), 1, sym_formal_parameters, - ACTIONS(2608), 2, + ACTIONS(2480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(2488), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(1644), 2, sym_string, sym__number, - STATE(2591), 5, + STATE(1696), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(2482), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(1598), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -86139,156 +86652,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22085] = 28, + [22453] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, - ACTIONS(1379), 1, + ACTIONS(757), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, + ACTIONS(2460), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, - sym_nested_type_identifier, - STATE(3055), 1, - sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, - sym_formal_parameters, - ACTIONS(1674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - sym_true, - sym_false, - STATE(2424), 2, - sym_string, - sym__number, - STATE(2296), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(1676), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(432), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [22195] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, + ACTIONS(2462), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1664), 1, + ACTIONS(2464), 1, + anon_sym_LBRACE, + ACTIONS(2466), 1, anon_sym_typeof, - ACTIONS(1666), 1, + ACTIONS(2468), 1, anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2470), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2472), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2474), 1, + anon_sym_QMARK, + ACTIONS(2476), 1, + anon_sym_AMP, + ACTIONS(2478), 1, + anon_sym_PIPE, + ACTIONS(2484), 1, sym_number, - STATE(1923), 1, + ACTIONS(2486), 1, + sym_this, + ACTIONS(2490), 1, + anon_sym_keyof, + ACTIONS(2492), 1, + anon_sym_LBRACE_PIPE, + STATE(1488), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3042), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3111), 1, sym_nested_identifier, - STATE(3206), 1, + STATE(3218), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2488), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(1644), 2, sym_string, sym__number, - STATE(2338), 5, + STATE(1691), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2482), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1598), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -86303,74 +86734,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22305] = 28, + [22563] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(757), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2528), 1, + ACTIONS(2460), 1, sym_identifier, - ACTIONS(2530), 1, + ACTIONS(2462), 1, anon_sym_STAR, - ACTIONS(2532), 1, + ACTIONS(2464), 1, anon_sym_LBRACE, - ACTIONS(2534), 1, + ACTIONS(2466), 1, anon_sym_typeof, - ACTIONS(2536), 1, + ACTIONS(2468), 1, anon_sym_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2470), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2472), 1, anon_sym_new, - ACTIONS(2542), 1, + ACTIONS(2474), 1, anon_sym_QMARK, - ACTIONS(2544), 1, + ACTIONS(2476), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2478), 1, anon_sym_PIPE, - ACTIONS(2552), 1, + ACTIONS(2484), 1, sym_number, - ACTIONS(2554), 1, + ACTIONS(2486), 1, sym_this, - ACTIONS(2558), 1, + ACTIONS(2490), 1, anon_sym_keyof, - ACTIONS(2560), 1, + ACTIONS(2492), 1, anon_sym_LBRACE_PIPE, - STATE(991), 1, + STATE(1488), 1, sym_nested_type_identifier, - STATE(3033), 1, + STATE(3042), 1, sym_type_parameters, - STATE(3087), 1, + STATE(3111), 1, sym_nested_identifier, - STATE(3164), 1, + STATE(3218), 1, sym_formal_parameters, - ACTIONS(2548), 2, + ACTIONS(2480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(2488), 2, sym_true, sym_false, - STATE(1103), 2, + STATE(1644), 2, sym_string, sym__number, - STATE(1159), 5, + STATE(1694), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2550), 6, + ACTIONS(2482), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1148), 14, + STATE(1598), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -86385,74 +86816,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22415] = 28, + [22673] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + ACTIONS(757), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2668), 1, + ACTIONS(2460), 1, sym_identifier, - ACTIONS(2670), 1, + ACTIONS(2462), 1, + anon_sym_STAR, + ACTIONS(2464), 1, + anon_sym_LBRACE, + ACTIONS(2466), 1, anon_sym_typeof, - ACTIONS(2672), 1, + ACTIONS(2468), 1, + anon_sym_LPAREN, + ACTIONS(2470), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, anon_sym_new, - ACTIONS(2674), 1, + ACTIONS(2474), 1, anon_sym_QMARK, - ACTIONS(2676), 1, + ACTIONS(2476), 1, anon_sym_AMP, - ACTIONS(2678), 1, + ACTIONS(2478), 1, anon_sym_PIPE, - ACTIONS(2680), 1, + ACTIONS(2484), 1, + sym_number, + ACTIONS(2486), 1, + sym_this, + ACTIONS(2490), 1, anon_sym_keyof, - STATE(2167), 1, + ACTIONS(2492), 1, + anon_sym_LBRACE_PIPE, + STATE(1488), 1, sym_nested_type_identifier, - STATE(2850), 1, + STATE(3042), 1, sym_type_parameters, - STATE(3161), 1, - sym_formal_parameters, - STATE(3193), 1, + STATE(3111), 1, sym_nested_identifier, - ACTIONS(1674), 2, + STATE(3218), 1, + sym_formal_parameters, + ACTIONS(2480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2488), 2, sym_true, sym_false, - STATE(442), 2, + STATE(1644), 2, sym_string, sym__number, - STATE(2341), 5, + STATE(1585), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2482), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1598), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -86467,74 +86898,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22525] = 28, + [22783] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_QMARK, - ACTIONS(747), 1, - anon_sym_AMP, - ACTIONS(749), 1, - anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(757), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2460), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2462), 1, + anon_sym_STAR, + ACTIONS(2464), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2466), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(2468), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, + ACTIONS(2470), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2472), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(2474), 1, + anon_sym_QMARK, + ACTIONS(2476), 1, + anon_sym_AMP, + ACTIONS(2478), 1, + anon_sym_PIPE, + ACTIONS(2484), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2486), 1, sym_this, - STATE(1952), 1, + ACTIONS(2490), 1, + anon_sym_keyof, + ACTIONS(2492), 1, + anon_sym_LBRACE_PIPE, + STATE(1488), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(3042), 1, sym_type_parameters, - STATE(3086), 1, + STATE(3111), 1, sym_nested_identifier, - STATE(3092), 1, + STATE(3218), 1, sym_formal_parameters, - ACTIONS(2608), 2, + ACTIONS(2480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(2488), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(1644), 2, sym_string, sym__number, - STATE(2564), 5, + STATE(1687), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(2482), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(1598), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -86549,74 +86980,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22635] = 28, + [22893] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(757), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(759), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2528), 1, + ACTIONS(2460), 1, sym_identifier, - ACTIONS(2530), 1, + ACTIONS(2462), 1, anon_sym_STAR, - ACTIONS(2532), 1, + ACTIONS(2464), 1, anon_sym_LBRACE, - ACTIONS(2534), 1, + ACTIONS(2466), 1, anon_sym_typeof, - ACTIONS(2536), 1, + ACTIONS(2468), 1, anon_sym_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2470), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2472), 1, anon_sym_new, - ACTIONS(2542), 1, + ACTIONS(2474), 1, anon_sym_QMARK, - ACTIONS(2544), 1, + ACTIONS(2476), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2478), 1, anon_sym_PIPE, - ACTIONS(2552), 1, + ACTIONS(2484), 1, sym_number, - ACTIONS(2554), 1, + ACTIONS(2486), 1, sym_this, - ACTIONS(2558), 1, + ACTIONS(2490), 1, anon_sym_keyof, - ACTIONS(2560), 1, + ACTIONS(2492), 1, anon_sym_LBRACE_PIPE, - STATE(991), 1, + STATE(1488), 1, sym_nested_type_identifier, - STATE(3033), 1, + STATE(3042), 1, sym_type_parameters, - STATE(3087), 1, + STATE(3111), 1, sym_nested_identifier, - STATE(3164), 1, + STATE(3218), 1, sym_formal_parameters, - ACTIONS(2548), 2, + ACTIONS(2480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(2488), 2, sym_true, sym_false, - STATE(1103), 2, + STATE(1644), 2, sym_string, sym__number, - STATE(1105), 5, + STATE(1686), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2550), 6, + ACTIONS(2482), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1148), 14, + STATE(1598), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -86631,7 +87062,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22745] = 28, + [23003] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -86652,40 +87083,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, + ACTIONS(2668), 1, + sym_identifier, ACTIONS(2670), 1, anon_sym_typeof, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, + ACTIONS(2672), 1, anon_sym_new, - ACTIONS(2686), 1, + ACTIONS(2674), 1, anon_sym_QMARK, - ACTIONS(2688), 1, + ACTIONS(2676), 1, anon_sym_AMP, - ACTIONS(2690), 1, + ACTIONS(2678), 1, anon_sym_PIPE, - ACTIONS(2692), 1, + ACTIONS(2680), 1, anon_sym_keyof, - STATE(486), 1, + STATE(2110), 1, sym_nested_type_identifier, - STATE(3025), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3226), 1, + STATE(3163), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(441), 5, + STATE(447), 5, sym__type, sym_constructor_type, sym_union_type, @@ -86698,7 +87129,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -86713,7 +87144,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22855] = 28, + [23113] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -86734,7 +87165,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, ACTIONS(2668), 1, sym_identifier, @@ -86750,13 +87181,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(2680), 1, anon_sym_keyof, - STATE(2167), 1, + STATE(2110), 1, sym_nested_type_identifier, - STATE(2850), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3161), 1, + STATE(3163), 1, sym_formal_parameters, - STATE(3193), 1, + STATE(3289), 1, sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, @@ -86764,10 +87195,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2276), 5, + STATE(433), 5, sym__type, sym_constructor_type, sym_union_type, @@ -86780,7 +87211,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -86795,156 +87226,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22965] = 28, + [23223] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, + ACTIONS(487), 1, anon_sym_QMARK, - ACTIONS(747), 1, + ACTIONS(489), 1, anon_sym_AMP, - ACTIONS(749), 1, + ACTIONS(491), 1, anon_sym_PIPE, - ACTIONS(763), 1, + ACTIONS(521), 1, anon_sym_keyof, - ACTIONS(765), 1, + ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_new, - ACTIONS(2612), 1, - sym_number, - ACTIONS(2614), 1, - sym_this, - STATE(1952), 1, - sym_nested_type_identifier, - STATE(3050), 1, - sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, - sym_formal_parameters, - ACTIONS(2608), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2616), 2, - sym_true, - sym_false, - STATE(1987), 2, - sym_string, - sym__number, - STATE(2619), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2610), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1979), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [23075] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(733), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_QMARK, - ACTIONS(747), 1, - anon_sym_AMP, - ACTIONS(749), 1, - anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, - anon_sym_typeof, - ACTIONS(2602), 1, - anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(1672), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(1678), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - STATE(1952), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3280), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(431), 2, sym_string, sym__number, - STATE(1998), 5, + STATE(1968), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -86959,156 +87308,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23185] = 28, + [23333] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2494), 1, - sym_identifier, - ACTIONS(2496), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(2498), 1, - anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_typeof, - ACTIONS(2502), 1, - anon_sym_LPAREN, - ACTIONS(2504), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_new, - ACTIONS(2508), 1, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(2510), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(2512), 1, + ACTIONS(615), 1, anon_sym_PIPE, - ACTIONS(2518), 1, - sym_number, - ACTIONS(2520), 1, - sym_this, - ACTIONS(2524), 1, - anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, - sym_nested_type_identifier, - STATE(2910), 1, - sym_type_parameters, - STATE(3209), 1, - sym_formal_parameters, - STATE(3239), 1, - sym_nested_identifier, - ACTIONS(2514), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2522), 2, - sym_true, - sym_false, - STATE(1449), 2, - sym_string, - sym__number, - STATE(1509), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2516), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1452), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [23295] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1666), 1, + anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2494), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2496), 1, - anon_sym_STAR, - ACTIONS(2498), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_typeof, - ACTIONS(2502), 1, - anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(2574), 1, anon_sym_new, - ACTIONS(2508), 1, - anon_sym_QMARK, - ACTIONS(2510), 1, - anon_sym_AMP, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2518), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2520), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2524), 1, - anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2910), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3209), 1, + STATE(3195), 1, sym_formal_parameters, - STATE(3239), 1, + STATE(3289), 1, sym_nested_identifier, - ACTIONS(2514), 2, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2522), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(1449), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(1508), 5, + STATE(2380), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2516), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1452), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -87123,74 +87390,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23405] = 28, + [23443] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, + ACTIONS(487), 1, anon_sym_QMARK, - ACTIONS(747), 1, + ACTIONS(489), 1, anon_sym_AMP, - ACTIONS(749), 1, + ACTIONS(491), 1, anon_sym_PIPE, - ACTIONS(763), 1, + ACTIONS(521), 1, anon_sym_keyof, - ACTIONS(765), 1, + ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1672), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(1678), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - STATE(1952), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3280), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2040), 5, + STATE(2104), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -87205,61 +87472,61 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23515] = 28, + [23553] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2668), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2672), 1, anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, + ACTIONS(2674), 1, + anon_sym_QMARK, + ACTIONS(2676), 1, + anon_sym_AMP, + ACTIONS(2678), 1, + anon_sym_PIPE, + ACTIONS(2680), 1, + anon_sym_keyof, + STATE(2110), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3163), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2623), 5, + STATE(435), 5, sym__type, sym_constructor_type, sym_union_type, @@ -87272,7 +87539,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -87287,74 +87554,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23625] = 28, + [23663] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1666), 1, + anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2494), 1, - sym_identifier, - ACTIONS(2496), 1, - anon_sym_STAR, - ACTIONS(2498), 1, + ACTIONS(1678), 1, + sym_number, + ACTIONS(2568), 1, anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_typeof, - ACTIONS(2502), 1, - anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(2578), 1, + sym_this, + ACTIONS(2668), 1, + sym_identifier, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2672), 1, anon_sym_new, - ACTIONS(2508), 1, + ACTIONS(2674), 1, anon_sym_QMARK, - ACTIONS(2510), 1, + ACTIONS(2676), 1, anon_sym_AMP, - ACTIONS(2512), 1, + ACTIONS(2678), 1, anon_sym_PIPE, - ACTIONS(2518), 1, - sym_number, - ACTIONS(2520), 1, - sym_this, - ACTIONS(2524), 1, + ACTIONS(2680), 1, anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, + STATE(2110), 1, sym_nested_type_identifier, - STATE(2910), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3209), 1, + STATE(3163), 1, sym_formal_parameters, - STATE(3239), 1, + STATE(3289), 1, sym_nested_identifier, - ACTIONS(2514), 2, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2522), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1449), 2, + STATE(431), 2, sym_string, sym__number, - STATE(1507), 5, + STATE(436), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2516), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1452), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -87369,7 +87636,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23735] = 28, + [23773] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -87398,32 +87665,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(431), 5, + STATE(1962), 5, sym__type, sym_constructor_type, sym_union_type, @@ -87436,7 +87703,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -87451,7 +87718,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23845] = 28, + [23883] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -87472,7 +87739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, ACTIONS(2668), 1, sym_identifier, @@ -87488,13 +87755,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(2680), 1, anon_sym_keyof, - STATE(2167), 1, + STATE(2110), 1, sym_nested_type_identifier, - STATE(2850), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3161), 1, + STATE(3163), 1, sym_formal_parameters, - STATE(3193), 1, + STATE(3289), 1, sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, @@ -87502,10 +87769,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(441), 5, + STATE(2269), 5, sym__type, sym_constructor_type, sym_union_type, @@ -87518,7 +87785,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -87533,61 +87800,61 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23955] = 28, + [23993] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2668), 1, + sym_identifier, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2672), 1, + anon_sym_new, + ACTIONS(2674), 1, + anon_sym_QMARK, + ACTIONS(2676), 1, + anon_sym_AMP, + ACTIONS(2678), 1, + anon_sym_PIPE, + ACTIONS(2680), 1, + anon_sym_keyof, + STATE(2110), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3163), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(446), 5, + STATE(2273), 5, sym__type, sym_constructor_type, sym_union_type, @@ -87600,7 +87867,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -87615,74 +87882,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24065] = 28, + [24103] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1666), 1, + anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2494), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2496), 1, - anon_sym_STAR, - ACTIONS(2498), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_typeof, - ACTIONS(2502), 1, - anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(2574), 1, anon_sym_new, - ACTIONS(2508), 1, - anon_sym_QMARK, - ACTIONS(2510), 1, - anon_sym_AMP, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2518), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2520), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2524), 1, - anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2910), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3209), 1, + STATE(3195), 1, sym_formal_parameters, - STATE(3239), 1, + STATE(3289), 1, sym_nested_identifier, - ACTIONS(2514), 2, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2522), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(1449), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(1469), 5, + STATE(433), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2516), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1452), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -87697,21 +87964,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24175] = 28, + [24213] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -87722,10 +87989,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, ACTIONS(2566), 1, sym_identifier, ACTIONS(2568), 1, @@ -87733,25 +87996,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2323), 5, + STATE(447), 5, sym__type, sym_constructor_type, sym_union_type, @@ -87764,7 +88031,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -87779,74 +88046,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24285] = 28, + [24323] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2528), 1, - sym_identifier, - ACTIONS(2530), 1, - anon_sym_STAR, - ACTIONS(2532), 1, - anon_sym_LBRACE, - ACTIONS(2534), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2536), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2538), 1, - anon_sym_LBRACK, - ACTIONS(2540), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1672), 1, anon_sym_new, - ACTIONS(2542), 1, - anon_sym_QMARK, - ACTIONS(2544), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(2552), 1, + ACTIONS(1678), 1, sym_number, - ACTIONS(2554), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - ACTIONS(2558), 1, - anon_sym_keyof, - ACTIONS(2560), 1, - anon_sym_LBRACE_PIPE, - STATE(991), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3033), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3087), 1, - sym_nested_identifier, - STATE(3164), 1, + STATE(3280), 1, sym_formal_parameters, - ACTIONS(2548), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1103), 2, + STATE(431), 2, sym_string, sym__number, - STATE(1111), 5, + STATE(2829), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2550), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1148), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -87861,7 +88128,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24395] = 28, + [24433] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -87870,147 +88137,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2494), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2496), 1, + ACTIONS(2500), 1, anon_sym_STAR, - ACTIONS(2498), 1, + ACTIONS(2502), 1, anon_sym_LBRACE, - ACTIONS(2500), 1, + ACTIONS(2504), 1, anon_sym_typeof, - ACTIONS(2502), 1, + ACTIONS(2506), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2508), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(2510), 1, anon_sym_new, - ACTIONS(2508), 1, + ACTIONS(2512), 1, anon_sym_QMARK, - ACTIONS(2510), 1, + ACTIONS(2514), 1, anon_sym_AMP, - ACTIONS(2512), 1, + ACTIONS(2516), 1, anon_sym_PIPE, - ACTIONS(2518), 1, + ACTIONS(2522), 1, sym_number, - ACTIONS(2520), 1, - sym_this, ACTIONS(2524), 1, - anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, - sym_nested_type_identifier, - STATE(2910), 1, - sym_type_parameters, - STATE(3209), 1, - sym_formal_parameters, - STATE(3239), 1, - sym_nested_identifier, - ACTIONS(2514), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2522), 2, - sym_true, - sym_false, - STATE(1449), 2, - sym_string, - sym__number, - STATE(1506), 5, - sym__type, - sym_constructor_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - ACTIONS(2516), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1452), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [24505] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1666), 1, - anon_sym_LPAREN, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, sym_this, - ACTIONS(2670), 1, - anon_sym_typeof, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2684), 1, - anon_sym_new, - ACTIONS(2686), 1, - anon_sym_QMARK, - ACTIONS(2688), 1, - anon_sym_AMP, - ACTIONS(2690), 1, - anon_sym_PIPE, - ACTIONS(2692), 1, + ACTIONS(2528), 1, anon_sym_keyof, - STATE(486), 1, + ACTIONS(2530), 1, + anon_sym_LBRACE_PIPE, + STATE(1384), 1, sym_nested_type_identifier, - STATE(3025), 1, + STATE(2912), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3270), 1, sym_nested_identifier, - STATE(3226), 1, + STATE(3316), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2526), 2, sym_true, sym_false, - STATE(442), 2, + STATE(1457), 2, sym_string, sym__number, - STATE(511), 5, + STATE(1435), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2520), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1460), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88025,7 +88210,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24615] = 28, + [24543] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -88054,32 +88239,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2092), 5, + STATE(447), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88092,7 +88277,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88107,50 +88292,50 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24725] = 28, + [24653] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, ACTIONS(1678), 1, sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2668), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2670), 1, - anon_sym_typeof, - ACTIONS(2672), 1, - anon_sym_new, - ACTIONS(2674), 1, - anon_sym_QMARK, - ACTIONS(2676), 1, - anon_sym_AMP, - ACTIONS(2678), 1, - anon_sym_PIPE, - ACTIONS(2680), 1, - anon_sym_keyof, - STATE(2167), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2850), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3161), 1, + STATE(3280), 1, sym_formal_parameters, - STATE(3193), 1, + STATE(3289), 1, sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, @@ -88158,10 +88343,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(445), 5, + STATE(433), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88174,7 +88359,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88189,74 +88374,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24835] = 28, + [24763] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, + ACTIONS(809), 1, + anon_sym_STAR, + ACTIONS(821), 1, + anon_sym_QMARK, + ACTIONS(823), 1, + anon_sym_AMP, + ACTIONS(825), 1, + anon_sym_PIPE, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, + anon_sym_LBRACE_PIPE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2494), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2642), 1, sym_identifier, - ACTIONS(2496), 1, - anon_sym_STAR, - ACTIONS(2498), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2500), 1, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(2502), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2650), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(2508), 1, - anon_sym_QMARK, - ACTIONS(2510), 1, - anon_sym_AMP, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2518), 1, + ACTIONS(2658), 1, sym_number, - ACTIONS(2520), 1, + ACTIONS(2660), 1, sym_this, - ACTIONS(2524), 1, - anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2910), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3209), 1, - sym_formal_parameters, - STATE(3239), 1, + STATE(3090), 1, sym_nested_identifier, - ACTIONS(2514), 2, + STATE(3207), 1, + sym_formal_parameters, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2522), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(1449), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(1540), 5, + STATE(2558), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2516), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1452), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88271,7 +88456,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24945] = 28, + [24873] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -88300,32 +88485,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(1962), 5, + STATE(2551), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88338,7 +88523,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88353,74 +88538,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25055] = 28, + [24983] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, + ACTIONS(809), 1, + anon_sym_STAR, + ACTIONS(821), 1, + anon_sym_QMARK, + ACTIONS(823), 1, + anon_sym_AMP, + ACTIONS(825), 1, + anon_sym_PIPE, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, + anon_sym_LBRACE_PIPE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2494), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2642), 1, sym_identifier, - ACTIONS(2496), 1, - anon_sym_STAR, - ACTIONS(2498), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2500), 1, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(2502), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2650), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(2508), 1, - anon_sym_QMARK, - ACTIONS(2510), 1, - anon_sym_AMP, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2518), 1, + ACTIONS(2658), 1, sym_number, - ACTIONS(2520), 1, + ACTIONS(2660), 1, sym_this, - ACTIONS(2524), 1, - anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2910), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3209), 1, - sym_formal_parameters, - STATE(3239), 1, + STATE(3090), 1, sym_nested_identifier, - ACTIONS(2514), 2, + STATE(3207), 1, + sym_formal_parameters, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2522), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(1449), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(1539), 5, + STATE(1983), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2516), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1452), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88435,74 +88620,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25165] = 28, + [25093] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, + ACTIONS(487), 1, anon_sym_QMARK, - ACTIONS(747), 1, + ACTIONS(489), 1, anon_sym_AMP, - ACTIONS(749), 1, + ACTIONS(491), 1, anon_sym_PIPE, - ACTIONS(763), 1, + ACTIONS(521), 1, anon_sym_keyof, - ACTIONS(765), 1, + ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1672), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(1678), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - STATE(1952), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3280), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(431), 2, sym_string, sym__number, - STATE(1999), 5, + STATE(2385), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88517,74 +88702,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25275] = 28, + [25203] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(809), 1, anon_sym_STAR, - ACTIONS(523), 1, + ACTIONS(821), 1, + anon_sym_QMARK, + ACTIONS(823), 1, + anon_sym_AMP, + ACTIONS(825), 1, + anon_sym_PIPE, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2668), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2642), 1, sym_identifier, - ACTIONS(2670), 1, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(2672), 1, + ACTIONS(2648), 1, + anon_sym_LPAREN, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, anon_sym_new, - ACTIONS(2674), 1, - anon_sym_QMARK, - ACTIONS(2676), 1, - anon_sym_AMP, - ACTIONS(2678), 1, - anon_sym_PIPE, - ACTIONS(2680), 1, - anon_sym_keyof, - STATE(2167), 1, + ACTIONS(2658), 1, + sym_number, + ACTIONS(2660), 1, + sym_this, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2850), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3161), 1, - sym_formal_parameters, - STATE(3193), 1, + STATE(3090), 1, sym_nested_identifier, - ACTIONS(1674), 2, + STATE(3207), 1, + sym_formal_parameters, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(2596), 5, + STATE(2590), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88599,21 +88784,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25385] = 28, + [25313] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -88624,36 +88809,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(441), 5, + STATE(436), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88666,7 +88851,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88681,74 +88866,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25495] = 28, + [25423] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(747), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(749), 1, + ACTIONS(615), 1, anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2574), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2578), 1, sym_this, - STATE(1952), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3195), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2079), 5, + STATE(2516), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88763,21 +88948,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25605] = 28, + [25533] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -88788,10 +88973,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, ACTIONS(2566), 1, sym_identifier, ACTIONS(2568), 1, @@ -88799,25 +88980,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2371), 5, + STATE(2465), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88830,7 +89015,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88845,21 +89030,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25715] = 28, + [25643] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -88870,10 +89055,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, ACTIONS(2566), 1, sym_identifier, ACTIONS(2568), 1, @@ -88881,25 +89062,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(1965), 5, + STATE(2344), 5, sym__type, sym_constructor_type, sym_union_type, @@ -88912,7 +89097,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -88927,74 +89112,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25825] = 28, + [25753] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(747), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(749), 1, + ACTIONS(615), 1, anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2574), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2578), 1, sym_this, - STATE(1952), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3195), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2008), 5, + STATE(2510), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89009,7 +89194,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25935] = 28, + [25863] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -89038,32 +89223,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2642), 5, + STATE(2464), 5, sym__type, sym_constructor_type, sym_union_type, @@ -89076,7 +89261,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89091,7 +89276,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26045] = 28, + [25973] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -89100,11 +89285,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(653), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(655), 1, + ACTIONS(615), 1, anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -89116,36 +89301,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2576), 1, sym_number, - STATE(1923), 1, + ACTIONS(2578), 1, + sym_this, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(445), 5, + STATE(2455), 5, sym__type, sym_constructor_type, sym_union_type, @@ -89158,7 +89343,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89173,7 +89358,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26155] = 28, + [26083] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -89202,32 +89387,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(441), 5, + STATE(2406), 5, sym__type, sym_constructor_type, sym_union_type, @@ -89240,7 +89425,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89255,74 +89440,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26265] = 28, + [26193] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2528), 1, - sym_identifier, - ACTIONS(2530), 1, - anon_sym_STAR, - ACTIONS(2532), 1, - anon_sym_LBRACE, - ACTIONS(2534), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2536), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2538), 1, - anon_sym_LBRACK, - ACTIONS(2540), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1672), 1, anon_sym_new, - ACTIONS(2542), 1, - anon_sym_QMARK, - ACTIONS(2544), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(2552), 1, + ACTIONS(1678), 1, sym_number, - ACTIONS(2554), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - ACTIONS(2558), 1, - anon_sym_keyof, - ACTIONS(2560), 1, - anon_sym_LBRACE_PIPE, - STATE(991), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3033), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3087), 1, - sym_nested_identifier, - STATE(3164), 1, + STATE(3280), 1, sym_formal_parameters, - ACTIONS(2548), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1103), 2, + STATE(431), 2, sym_string, sym__number, - STATE(1115), 5, + STATE(1971), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2550), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1148), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89337,21 +89522,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26375] = 28, + [26303] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -89362,10 +89547,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, ACTIONS(2566), 1, sym_identifier, ACTIONS(2568), 1, @@ -89373,25 +89554,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(1964), 5, + STATE(2573), 5, sym__type, sym_constructor_type, sym_union_type, @@ -89404,7 +89589,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89419,7 +89604,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26485] = 28, + [26413] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -89448,32 +89633,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(445), 5, + STATE(1967), 5, sym__type, sym_constructor_type, sym_union_type, @@ -89486,7 +89671,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89501,74 +89686,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26595] = 28, + [26523] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2494), 1, - sym_identifier, - ACTIONS(2496), 1, - anon_sym_STAR, - ACTIONS(2498), 1, - anon_sym_LBRACE, - ACTIONS(2500), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2502), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, - anon_sym_LBRACK, - ACTIONS(2506), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1672), 1, anon_sym_new, - ACTIONS(2508), 1, - anon_sym_QMARK, - ACTIONS(2510), 1, - anon_sym_AMP, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2518), 1, + ACTIONS(1678), 1, sym_number, - ACTIONS(2520), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - ACTIONS(2524), 1, - anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2910), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3209), 1, + STATE(3280), 1, sym_formal_parameters, - STATE(3239), 1, + STATE(3289), 1, sym_nested_identifier, - ACTIONS(2514), 2, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2522), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1449), 2, + STATE(431), 2, sym_string, sym__number, - STATE(1477), 5, + STATE(2335), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2516), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1452), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89583,74 +89768,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26705] = 28, + [26633] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, + ACTIONS(809), 1, + anon_sym_STAR, + ACTIONS(821), 1, + anon_sym_QMARK, + ACTIONS(823), 1, + anon_sym_AMP, + ACTIONS(825), 1, + anon_sym_PIPE, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, + anon_sym_LBRACE_PIPE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2494), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2642), 1, sym_identifier, - ACTIONS(2496), 1, - anon_sym_STAR, - ACTIONS(2498), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2500), 1, + ACTIONS(2646), 1, anon_sym_typeof, - ACTIONS(2502), 1, + ACTIONS(2648), 1, anon_sym_LPAREN, - ACTIONS(2504), 1, + ACTIONS(2650), 1, anon_sym_LBRACK, - ACTIONS(2506), 1, - anon_sym_new, - ACTIONS(2508), 1, - anon_sym_QMARK, - ACTIONS(2510), 1, - anon_sym_AMP, - ACTIONS(2512), 1, - anon_sym_PIPE, - ACTIONS(2518), 1, + ACTIONS(2652), 1, + anon_sym_new, + ACTIONS(2658), 1, sym_number, - ACTIONS(2520), 1, + ACTIONS(2660), 1, sym_this, - ACTIONS(2524), 1, - anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - STATE(1402), 1, + STATE(1950), 1, sym_nested_type_identifier, - STATE(2910), 1, + STATE(3056), 1, sym_type_parameters, - STATE(3209), 1, - sym_formal_parameters, - STATE(3239), 1, + STATE(3090), 1, sym_nested_identifier, - ACTIONS(2514), 2, + STATE(3207), 1, + sym_formal_parameters, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2522), 2, + ACTIONS(2662), 2, sym_true, sym_false, - STATE(1449), 2, + STATE(2003), 2, sym_string, sym__number, - STATE(1480), 5, + STATE(2561), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2516), 6, + ACTIONS(2656), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1452), 14, + STATE(2002), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89665,74 +89850,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26815] = 28, + [26743] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_QMARK, - ACTIONS(747), 1, - anon_sym_AMP, - ACTIONS(749), 1, - anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, + ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, - anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1678), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - STATE(1952), 1, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2682), 1, + sym_identifier, + ACTIONS(2684), 1, + anon_sym_new, + ACTIONS(2686), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2692), 1, + anon_sym_keyof, + STATE(497), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(3044), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3162), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2011), 5, + STATE(433), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89747,74 +89932,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26925] = 28, + [26853] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_QMARK, - ACTIONS(747), 1, - anon_sym_AMP, - ACTIONS(749), 1, - anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, + ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, - anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, - anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1678), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - STATE(1952), 1, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2682), 1, + sym_identifier, + ACTIONS(2684), 1, + anon_sym_new, + ACTIONS(2686), 1, + anon_sym_QMARK, + ACTIONS(2688), 1, + anon_sym_AMP, + ACTIONS(2690), 1, + anon_sym_PIPE, + ACTIONS(2692), 1, + anon_sym_keyof, + STATE(497), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(3044), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3162), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2014), 5, + STATE(447), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89829,74 +90014,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27035] = 28, + [26963] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1666), 1, + anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2528), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2530), 1, - anon_sym_STAR, - ACTIONS(2532), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - ACTIONS(2534), 1, - anon_sym_typeof, - ACTIONS(2536), 1, - anon_sym_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2574), 1, anon_sym_new, - ACTIONS(2542), 1, - anon_sym_QMARK, - ACTIONS(2544), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(2552), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2554), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2558), 1, - anon_sym_keyof, - ACTIONS(2560), 1, - anon_sym_LBRACE_PIPE, - STATE(991), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3033), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3087), 1, - sym_nested_identifier, - STATE(3164), 1, + STATE(3195), 1, sym_formal_parameters, - ACTIONS(2548), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(1103), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(1175), 5, + STATE(2330), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2550), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1148), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89911,74 +90096,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27145] = 28, + [27073] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(745), 1, + ACTIONS(487), 1, anon_sym_QMARK, - ACTIONS(747), 1, + ACTIONS(489), 1, anon_sym_AMP, - ACTIONS(749), 1, + ACTIONS(491), 1, anon_sym_PIPE, - ACTIONS(763), 1, + ACTIONS(521), 1, anon_sym_keyof, - ACTIONS(765), 1, + ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1672), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(1678), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - STATE(1952), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3086), 1, - sym_nested_identifier, - STATE(3092), 1, + STATE(3280), 1, sym_formal_parameters, - ACTIONS(2608), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2018), 5, + STATE(2695), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -89993,138 +90178,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27255] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2134), 1, - anon_sym_EQ, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2388), 1, - anon_sym_in, - ACTIONS(2391), 1, - anon_sym_of, - ACTIONS(1037), 10, - anon_sym_as, - anon_sym_LPAREN, - 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(2144), 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(1035), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [27329] = 28, + [27183] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2528), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2530), 1, + ACTIONS(2500), 1, anon_sym_STAR, - ACTIONS(2532), 1, + ACTIONS(2502), 1, anon_sym_LBRACE, - ACTIONS(2534), 1, + ACTIONS(2504), 1, anon_sym_typeof, - ACTIONS(2536), 1, + ACTIONS(2506), 1, anon_sym_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2508), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2510), 1, anon_sym_new, - ACTIONS(2542), 1, + ACTIONS(2512), 1, anon_sym_QMARK, - ACTIONS(2544), 1, + ACTIONS(2514), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2516), 1, anon_sym_PIPE, - ACTIONS(2552), 1, + ACTIONS(2522), 1, sym_number, - ACTIONS(2554), 1, + ACTIONS(2524), 1, sym_this, - ACTIONS(2558), 1, + ACTIONS(2528), 1, anon_sym_keyof, - ACTIONS(2560), 1, + ACTIONS(2530), 1, anon_sym_LBRACE_PIPE, - STATE(991), 1, + STATE(1384), 1, sym_nested_type_identifier, - STATE(3033), 1, + STATE(2912), 1, sym_type_parameters, - STATE(3087), 1, + STATE(3270), 1, sym_nested_identifier, - STATE(3164), 1, + STATE(3316), 1, sym_formal_parameters, - ACTIONS(2548), 2, + ACTIONS(2518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(2526), 2, sym_true, sym_false, - STATE(1103), 2, + STATE(1457), 2, sym_string, sym__number, - STATE(1174), 5, + STATE(1507), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2550), 6, + ACTIONS(2520), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1148), 14, + STATE(1460), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90139,74 +90260,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27439] = 28, + [27293] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2528), 1, - sym_identifier, - ACTIONS(2530), 1, - anon_sym_STAR, - ACTIONS(2532), 1, - anon_sym_LBRACE, - ACTIONS(2534), 1, + ACTIONS(1664), 1, anon_sym_typeof, - ACTIONS(2536), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2538), 1, - anon_sym_LBRACK, - ACTIONS(2540), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(1672), 1, anon_sym_new, - ACTIONS(2542), 1, - anon_sym_QMARK, - ACTIONS(2544), 1, - anon_sym_AMP, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(2552), 1, + ACTIONS(1678), 1, sym_number, - ACTIONS(2554), 1, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2578), 1, sym_this, - ACTIONS(2558), 1, - anon_sym_keyof, - ACTIONS(2560), 1, - anon_sym_LBRACE_PIPE, - STATE(991), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3033), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3087), 1, - sym_nested_identifier, - STATE(3164), 1, + STATE(3280), 1, sym_formal_parameters, - ACTIONS(2548), 2, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(1103), 2, + STATE(431), 2, sym_string, sym__number, - STATE(1122), 5, + STATE(2754), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2550), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1148), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90221,7 +90342,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27549] = 28, + [27403] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -90250,32 +90371,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(1970), 5, + STATE(435), 5, sym__type, sym_constructor_type, sym_union_type, @@ -90288,7 +90409,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90303,74 +90424,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27659] = 28, + [27513] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(503), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2528), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2530), 1, + ACTIONS(2500), 1, anon_sym_STAR, - ACTIONS(2532), 1, + ACTIONS(2502), 1, anon_sym_LBRACE, - ACTIONS(2534), 1, + ACTIONS(2504), 1, anon_sym_typeof, - ACTIONS(2536), 1, + ACTIONS(2506), 1, anon_sym_LPAREN, - ACTIONS(2538), 1, + ACTIONS(2508), 1, anon_sym_LBRACK, - ACTIONS(2540), 1, + ACTIONS(2510), 1, anon_sym_new, - ACTIONS(2542), 1, + ACTIONS(2512), 1, anon_sym_QMARK, - ACTIONS(2544), 1, + ACTIONS(2514), 1, anon_sym_AMP, - ACTIONS(2546), 1, + ACTIONS(2516), 1, anon_sym_PIPE, - ACTIONS(2552), 1, + ACTIONS(2522), 1, sym_number, - ACTIONS(2554), 1, + ACTIONS(2524), 1, sym_this, - ACTIONS(2558), 1, + ACTIONS(2528), 1, anon_sym_keyof, - ACTIONS(2560), 1, + ACTIONS(2530), 1, anon_sym_LBRACE_PIPE, - STATE(991), 1, + STATE(1384), 1, sym_nested_type_identifier, - STATE(3033), 1, + STATE(2912), 1, sym_type_parameters, - STATE(3087), 1, + STATE(3270), 1, sym_nested_identifier, - STATE(3164), 1, + STATE(3316), 1, sym_formal_parameters, - ACTIONS(2548), 2, + ACTIONS(2518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2556), 2, + ACTIONS(2526), 2, sym_true, sym_false, - STATE(1103), 2, + STATE(1457), 2, sym_string, sym__number, - STATE(1117), 5, + STATE(1411), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2550), 6, + ACTIONS(2520), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1148), 14, + STATE(1460), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90385,74 +90506,156 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27769] = 28, + [27623] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2500), 1, anon_sym_STAR, - ACTIONS(487), 1, + ACTIONS(2502), 1, + anon_sym_LBRACE, + ACTIONS(2504), 1, + anon_sym_typeof, + ACTIONS(2506), 1, + anon_sym_LPAREN, + ACTIONS(2508), 1, + anon_sym_LBRACK, + ACTIONS(2510), 1, + anon_sym_new, + ACTIONS(2512), 1, anon_sym_QMARK, - ACTIONS(489), 1, + ACTIONS(2514), 1, anon_sym_AMP, - ACTIONS(491), 1, + ACTIONS(2516), 1, anon_sym_PIPE, - ACTIONS(521), 1, + ACTIONS(2522), 1, + sym_number, + ACTIONS(2524), 1, + sym_this, + ACTIONS(2528), 1, anon_sym_keyof, - ACTIONS(523), 1, + ACTIONS(2530), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, + STATE(1384), 1, + sym_nested_type_identifier, + STATE(2912), 1, + sym_type_parameters, + STATE(3270), 1, + sym_nested_identifier, + STATE(3316), 1, + sym_formal_parameters, + ACTIONS(2518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2526), 2, + sym_true, + sym_false, + STATE(1457), 2, + sym_string, + sym__number, + STATE(1500), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2520), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1460), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [27733] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2566), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2568), 1, + ACTIONS(2500), 1, + anon_sym_STAR, + ACTIONS(2502), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2504), 1, + anon_sym_typeof, + ACTIONS(2506), 1, + anon_sym_LPAREN, + ACTIONS(2508), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2510), 1, + anon_sym_new, + ACTIONS(2512), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_AMP, + ACTIONS(2516), 1, + anon_sym_PIPE, + ACTIONS(2522), 1, + sym_number, + ACTIONS(2524), 1, sym_this, - STATE(1923), 1, + ACTIONS(2528), 1, + anon_sym_keyof, + ACTIONS(2530), 1, + anon_sym_LBRACE_PIPE, + STATE(1384), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2912), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3270), 1, sym_nested_identifier, - STATE(3289), 1, + STATE(3316), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2526), 2, sym_true, sym_false, - STATE(442), 2, + STATE(1457), 2, sym_string, sym__number, - STATE(2696), 5, + STATE(1502), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2520), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1460), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90467,7 +90670,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27879] = 28, + [27843] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -90476,11 +90679,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, + ACTIONS(611), 1, anon_sym_QMARK, - ACTIONS(653), 1, + ACTIONS(613), 1, anon_sym_AMP, - ACTIONS(655), 1, + ACTIONS(615), 1, anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -90492,36 +90695,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(2566), 1, + sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2576), 1, sym_number, - STATE(1923), 1, + ACTIONS(2578), 1, + sym_this, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2311), 5, + STATE(2525), 5, sym__type, sym_constructor_type, sym_union_type, @@ -90534,7 +90737,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90549,7 +90752,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27989] = 28, + [27953] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, @@ -90578,32 +90781,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2584), 1, + sym_identifier, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2685), 5, + STATE(2328), 5, sym__type, sym_constructor_type, sym_union_type, @@ -90616,7 +90819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90631,21 +90834,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28099] = 28, + [28063] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(613), 1, + anon_sym_AMP, + ACTIONS(615), 1, + anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -90656,10 +90859,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, - ACTIONS(1678), 1, - sym_number, ACTIONS(2566), 1, sym_identifier, ACTIONS(2568), 1, @@ -90667,25 +90866,29 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2570), 1, anon_sym_LBRACK, ACTIONS(2574), 1, + anon_sym_new, + ACTIONS(2576), 1, + sym_number, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(3057), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3195), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1682), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(442), 2, + STATE(2376), 2, sym_string, sym__number, - STATE(2755), 5, + STATE(2360), 5, sym__type, sym_constructor_type, sym_union_type, @@ -90698,7 +90901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90713,74 +90916,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28209] = 28, + [28173] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, - ACTIONS(1379), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1666), 1, - anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2568), 1, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2500), 1, + anon_sym_STAR, + ACTIONS(2502), 1, anon_sym_LBRACE, - ACTIONS(2570), 1, + ACTIONS(2504), 1, + anon_sym_typeof, + ACTIONS(2506), 1, + anon_sym_LPAREN, + ACTIONS(2508), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, - sym_this, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2510), 1, anon_sym_new, - ACTIONS(2582), 1, + ACTIONS(2512), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_AMP, + ACTIONS(2516), 1, + anon_sym_PIPE, + ACTIONS(2522), 1, sym_number, - STATE(1923), 1, + ACTIONS(2524), 1, + sym_this, + ACTIONS(2528), 1, + anon_sym_keyof, + ACTIONS(2530), 1, + anon_sym_LBRACE_PIPE, + STATE(1384), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2912), 1, sym_type_parameters, - STATE(3193), 1, + STATE(3270), 1, sym_nested_identifier, - STATE(3206), 1, + STATE(3316), 1, sym_formal_parameters, - ACTIONS(1674), 2, + ACTIONS(2518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(2526), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(1457), 2, sym_string, sym__number, - STATE(2268), 5, + STATE(1503), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(1676), 6, + ACTIONS(2520), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(1460), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90795,21 +90998,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28319] = 28, + [28283] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -90820,36 +91023,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(446), 5, + STATE(2696), 5, sym__type, sym_constructor_type, sym_union_type, @@ -90862,7 +91065,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90877,21 +91080,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28429] = 28, + [28393] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -90902,36 +91105,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(431), 5, + STATE(2735), 5, sym__type, sym_constructor_type, sym_union_type, @@ -90944,7 +91147,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -90959,50 +91162,50 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28539] = 28, + [28503] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, + ACTIONS(521), 1, + anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, ACTIONS(1678), 1, sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2668), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2670), 1, - anon_sym_typeof, - ACTIONS(2672), 1, - anon_sym_new, - ACTIONS(2674), 1, - anon_sym_QMARK, - ACTIONS(2676), 1, - anon_sym_AMP, - ACTIONS(2678), 1, - anon_sym_PIPE, - ACTIONS(2680), 1, - anon_sym_keyof, - STATE(2167), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(2850), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3161), 1, + STATE(3280), 1, sym_formal_parameters, - STATE(3193), 1, + STATE(3289), 1, sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, @@ -91010,10 +91213,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2471), 5, + STATE(2761), 5, sym__type, sym_constructor_type, sym_union_type, @@ -91026,7 +91229,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -91041,21 +91244,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28649] = 28, + [28613] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -91066,36 +91269,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2291), 5, + STATE(2667), 5, sym__type, sym_constructor_type, sym_union_type, @@ -91108,7 +91311,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -91123,74 +91326,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28759] = 28, + [28723] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_QMARK, - ACTIONS(747), 1, - anon_sym_AMP, - ACTIONS(749), 1, - anon_sym_PIPE, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2346), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2596), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2500), 1, + anon_sym_STAR, + ACTIONS(2502), 1, anon_sym_LBRACE, - ACTIONS(2600), 1, + ACTIONS(2504), 1, anon_sym_typeof, - ACTIONS(2602), 1, + ACTIONS(2506), 1, anon_sym_LPAREN, - ACTIONS(2604), 1, + ACTIONS(2508), 1, anon_sym_LBRACK, - ACTIONS(2606), 1, + ACTIONS(2510), 1, anon_sym_new, - ACTIONS(2612), 1, + ACTIONS(2512), 1, + anon_sym_QMARK, + ACTIONS(2514), 1, + anon_sym_AMP, + ACTIONS(2516), 1, + anon_sym_PIPE, + ACTIONS(2522), 1, sym_number, - ACTIONS(2614), 1, + ACTIONS(2524), 1, sym_this, - STATE(1952), 1, + ACTIONS(2528), 1, + anon_sym_keyof, + ACTIONS(2530), 1, + anon_sym_LBRACE_PIPE, + STATE(1384), 1, sym_nested_type_identifier, - STATE(3050), 1, + STATE(2912), 1, sym_type_parameters, - STATE(3086), 1, + STATE(3270), 1, sym_nested_identifier, - STATE(3092), 1, + STATE(3316), 1, sym_formal_parameters, - ACTIONS(2608), 2, + ACTIONS(2518), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2616), 2, + ACTIONS(2526), 2, sym_true, sym_false, - STATE(1987), 2, + STATE(1457), 2, sym_string, sym__number, - STATE(2142), 5, + STATE(1441), 5, sym__type, sym_constructor_type, sym_union_type, sym_intersection_type, sym_function_type, - ACTIONS(2610), 6, + ACTIONS(2520), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1979), 14, + STATE(1460), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -91205,21 +91408,21 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28869] = 28, + [28833] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(489), 1, + anon_sym_AMP, + ACTIONS(491), 1, + anon_sym_PIPE, ACTIONS(521), 1, anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, @@ -91230,36 +91433,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1672), 1, + anon_sym_new, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2584), 1, sym_identifier, - ACTIONS(2580), 1, - anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2931), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3280), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2280), 5, + STATE(2341), 5, sym__type, sym_constructor_type, sym_union_type, @@ -91272,7 +91475,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -91287,125 +91490,143 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28979] = 10, + [28943] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2134), 1, - anon_sym_EQ, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2176), 1, - anon_sym_in, - ACTIONS(2179), 1, - anon_sym_of, - ACTIONS(1037), 10, - anon_sym_as, - anon_sym_LPAREN, - 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(2144), 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(1035), 21, + ACTIONS(809), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(821), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(823), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(825), 1, anon_sym_PIPE, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, + anon_sym_typeof, + ACTIONS(2648), 1, + anon_sym_LPAREN, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2652), 1, + anon_sym_new, + ACTIONS(2658), 1, + sym_number, + ACTIONS(2660), 1, + sym_this, + STATE(1950), 1, + sym_nested_type_identifier, + STATE(3056), 1, + sym_type_parameters, + STATE(3090), 1, + sym_nested_identifier, + STATE(3207), 1, + sym_formal_parameters, + ACTIONS(2654), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(2662), 2, + sym_true, + sym_false, + STATE(2003), 2, + sym_string, + sym__number, + STATE(2048), 5, + sym__type, + sym_constructor_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + ACTIONS(2656), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2002), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, [29053] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(489), 1, - anon_sym_AMP, - ACTIONS(491), 1, - anon_sym_PIPE, - ACTIONS(521), 1, - anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(1672), 1, - anon_sym_new, ACTIONS(1678), 1, sym_number, - ACTIONS(2566), 1, - sym_identifier, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - STATE(1923), 1, + ACTIONS(2668), 1, + sym_identifier, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2672), 1, + anon_sym_new, + ACTIONS(2674), 1, + anon_sym_QMARK, + ACTIONS(2676), 1, + anon_sym_AMP, + ACTIONS(2678), 1, + anon_sym_PIPE, + ACTIONS(2680), 1, + anon_sym_keyof, + STATE(2110), 1, sym_nested_type_identifier, - STATE(2843), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3289), 1, + STATE(3163), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(1682), 2, sym_true, sym_false, - STATE(442), 2, + STATE(431), 2, sym_string, sym__number, - STATE(1960), 5, + STATE(2281), 5, sym__type, sym_constructor_type, sym_union_type, @@ -91418,7 +91639,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -91438,56 +91659,56 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(451), 1, anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, ACTIONS(523), 1, anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(653), 1, - anon_sym_AMP, - ACTIONS(655), 1, - anon_sym_PIPE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, ACTIONS(1666), 1, anon_sym_LPAREN, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(1678), 1, + sym_number, ACTIONS(2568), 1, anon_sym_LBRACE, ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2574), 1, + ACTIONS(2578), 1, sym_this, - ACTIONS(2576), 1, + ACTIONS(2668), 1, sym_identifier, - ACTIONS(2580), 1, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2672), 1, anon_sym_new, - ACTIONS(2582), 1, - sym_number, - STATE(1923), 1, + ACTIONS(2674), 1, + anon_sym_QMARK, + ACTIONS(2676), 1, + anon_sym_AMP, + ACTIONS(2678), 1, + anon_sym_PIPE, + ACTIONS(2680), 1, + anon_sym_keyof, + STATE(2110), 1, sym_nested_type_identifier, - STATE(3055), 1, + STATE(2872), 1, sym_type_parameters, - STATE(3193), 1, - sym_nested_identifier, - STATE(3206), 1, + STATE(3163), 1, sym_formal_parameters, + STATE(3289), 1, + sym_nested_identifier, ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2584), 2, + ACTIONS(1682), 2, sym_true, sym_false, - STATE(2424), 2, + STATE(431), 2, sym_string, sym__number, - STATE(2281), 5, + STATE(2580), 5, sym__type, sym_constructor_type, sym_union_type, @@ -91500,7 +91721,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(432), 14, + STATE(451), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -91528,15 +91749,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(2700), 1, anon_sym_LBRACE, - STATE(2960), 1, + STATE(2967), 1, sym_import_clause, ACTIONS(2704), 2, anon_sym_type, anon_sym_typeof, - STATE(2963), 2, + STATE(2968), 2, sym_string, sym_import_require_clause, - STATE(3187), 2, + STATE(3188), 2, sym_namespace_import, sym_named_imports, ACTIONS(2698), 15, @@ -91623,88 +91844,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_enum, STATE(1901), 1, sym_decorator, - STATE(2542), 1, - sym_export_clause, - STATE(2613), 1, + STATE(2582), 1, aux_sym_export_statement_repeat1, - STATE(2740), 1, - aux_sym_object_repeat1, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(2358), 15, - sym__declaration, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_internal_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [29452] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1117), 1, - anon_sym_LBRACE, - ACTIONS(2706), 1, - anon_sym_STAR, - ACTIONS(2708), 1, - anon_sym_default, - ACTIONS(2710), 1, - anon_sym_EQ, - ACTIONS(2712), 1, - anon_sym_as, - ACTIONS(2714), 1, - anon_sym_namespace, - ACTIONS(2718), 1, - anon_sym_type, - ACTIONS(2720), 1, - anon_sym_import, - ACTIONS(2722), 1, - anon_sym_var, - ACTIONS(2724), 1, - anon_sym_let, - ACTIONS(2726), 1, - anon_sym_const, - ACTIONS(2728), 1, - anon_sym_class, - ACTIONS(2730), 1, - anon_sym_async, - ACTIONS(2732), 1, - anon_sym_function, - ACTIONS(2734), 1, - anon_sym_abstract, - ACTIONS(2736), 1, - anon_sym_declare, - ACTIONS(2738), 1, - anon_sym_module, - ACTIONS(2740), 1, - anon_sym_interface, - ACTIONS(2742), 1, - anon_sym_enum, - STATE(1901), 1, - sym_decorator, - STATE(2542), 1, + STATE(2588), 1, sym_export_clause, - STATE(2613), 1, - aux_sym_export_statement_repeat1, - STATE(2782), 1, + STATE(2824), 1, aux_sym_object_repeat1, ACTIONS(2716), 9, sym__automatic_semicolon, @@ -91716,7 +91860,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(2358), 15, + STATE(2388), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -91732,7 +91876,7 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [29556] = 27, + [29452] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -91777,11 +91921,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_enum, STATE(1901), 1, sym_decorator, - STATE(2542), 1, - sym_export_clause, - STATE(2613), 1, + STATE(2582), 1, aux_sym_export_statement_repeat1, - STATE(2778), 1, + STATE(2588), 1, + sym_export_clause, + STATE(2677), 1, aux_sym_object_repeat1, ACTIONS(2716), 9, sym__automatic_semicolon, @@ -91793,7 +91937,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(2358), 15, + STATE(2388), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -91809,7 +91953,7 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [29660] = 27, + [29556] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -91854,11 +91998,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_enum, STATE(1901), 1, sym_decorator, - STATE(2542), 1, - sym_export_clause, - STATE(2613), 1, + STATE(2582), 1, aux_sym_export_statement_repeat1, - STATE(2671), 1, + STATE(2588), 1, + sym_export_clause, + STATE(2742), 1, aux_sym_object_repeat1, ACTIONS(2716), 9, sym__automatic_semicolon, @@ -91870,7 +92014,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(2358), 15, + STATE(2388), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -91886,311 +92030,7 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [29764] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, - ACTIONS(2748), 1, - anon_sym_STAR, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(2752), 1, - anon_sym_async, - ACTIONS(2754), 1, - sym_number, - ACTIONS(2756), 1, - anon_sym_static, - ACTIONS(2762), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(2338), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2360), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2254), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2744), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [29867] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, - ACTIONS(2748), 1, - anon_sym_STAR, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(2752), 1, - anon_sym_async, - ACTIONS(2754), 1, - sym_number, - ACTIONS(2756), 1, - anon_sym_static, - ACTIONS(2762), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2764), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2766), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2225), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2744), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [29970] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, - ACTIONS(2748), 1, - anon_sym_STAR, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(2752), 1, - anon_sym_async, - ACTIONS(2754), 1, - sym_number, - ACTIONS(2756), 1, - anon_sym_static, - ACTIONS(2762), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2768), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2770), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2240), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2744), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [30073] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, - ACTIONS(2748), 1, - anon_sym_STAR, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(2752), 1, - anon_sym_async, - ACTIONS(2754), 1, - sym_number, - ACTIONS(2756), 1, - anon_sym_static, - ACTIONS(2762), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(2424), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2426), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2210), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2744), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [30176] = 27, + [29660] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -92235,22 +92075,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_enum, STATE(1901), 1, sym_decorator, - STATE(2542), 1, - sym_export_clause, - STATE(2613), 1, + STATE(2582), 1, aux_sym_export_statement_repeat1, - ACTIONS(2772), 2, + STATE(2588), 1, + sym_export_clause, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(2716), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2716), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(2358), 15, + STATE(2388), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -92266,7 +92107,7 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [30279] = 26, + [29764] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -92307,14 +92148,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2742), 1, anon_sym_enum, - ACTIONS(2775), 1, + ACTIONS(2744), 1, anon_sym_EQ, STATE(1901), 1, sym_decorator, - STATE(2542), 1, - sym_export_clause, - STATE(2613), 1, + STATE(2582), 1, aux_sym_export_statement_repeat1, + STATE(2588), 1, + sym_export_clause, ACTIONS(2716), 9, sym__automatic_semicolon, anon_sym_COMMA, @@ -92325,7 +92166,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(2358), 15, + STATE(2388), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -92341,7 +92182,7 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [30380] = 27, + [29865] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -92356,57 +92197,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2777), 2, + ACTIONS(2752), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(2779), 2, + ACTIONS(2754), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2223), 6, + STATE(2211), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -92417,7 +92258,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [30483] = 26, + [29968] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -92432,54 +92273,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2781), 2, + ACTIONS(2770), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2772), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2203), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -92490,7 +92334,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [30582] = 26, + [30071] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -92505,54 +92349,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2783), 2, + ACTIONS(2774), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2776), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2233), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -92563,7 +92410,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [30681] = 26, + [30174] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -92578,54 +92425,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2785), 2, + ACTIONS(2370), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2382), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2245), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -92636,138 +92486,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [30780] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2787), 1, - anon_sym_EQ, - STATE(1009), 1, - sym_type_arguments, - STATE(1124), 1, - sym_arguments, - ACTIONS(2132), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2136), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [30849] = 26, + [30277] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, - ACTIONS(2748), 1, + ACTIONS(1117), 1, + anon_sym_LBRACE, + ACTIONS(2706), 1, anon_sym_STAR, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2708), 1, + anon_sym_default, + ACTIONS(2710), 1, + anon_sym_EQ, + ACTIONS(2712), 1, + anon_sym_as, + ACTIONS(2714), 1, + anon_sym_namespace, + ACTIONS(2718), 1, + anon_sym_type, + ACTIONS(2720), 1, + anon_sym_import, + ACTIONS(2722), 1, + anon_sym_var, + ACTIONS(2724), 1, + anon_sym_let, + ACTIONS(2726), 1, + anon_sym_const, + ACTIONS(2728), 1, + anon_sym_class, + ACTIONS(2730), 1, anon_sym_async, - ACTIONS(2754), 1, - sym_number, - ACTIONS(2756), 1, - anon_sym_static, - ACTIONS(2762), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, + ACTIONS(2732), 1, + anon_sym_function, + ACTIONS(2734), 1, + anon_sym_abstract, + ACTIONS(2736), 1, + anon_sym_declare, + ACTIONS(2738), 1, + anon_sym_module, + ACTIONS(2740), 1, + anon_sym_interface, + ACTIONS(2742), 1, + anon_sym_enum, STATE(1901), 1, sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, + STATE(2582), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2789), 2, + STATE(2588), 1, + sym_export_clause, + ACTIONS(2778), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2515), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2744), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [30948] = 26, + ACTIONS(2716), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(2388), 15, + sym__declaration, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_function_signature, + sym_ambient_declaration, + sym_abstract_class_declaration, + sym_module, + sym_internal_module, + sym_import_alias, + sym_interface_declaration, + sym_enum_declaration, + sym_type_alias_declaration, + [30380] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -92782,54 +92577,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2791), 2, + ACTIONS(2338), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2360), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2235), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -92840,7 +92638,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31047] = 26, + [30483] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -92855,54 +92653,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2793), 2, + ACTIONS(2781), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2365), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -92913,7 +92711,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31146] = 26, + [30582] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -92928,54 +92726,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2795), 2, + ACTIONS(2783), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2365), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -92986,7 +92784,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31245] = 26, + [30681] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -93001,54 +92799,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2797), 2, + ACTIONS(2785), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2365), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93059,7 +92857,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31344] = 26, + [30780] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -93074,54 +92872,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2799), 2, + ACTIONS(2787), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2365), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93132,65 +92930,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31443] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2801), 1, - anon_sym_EQ, - STATE(1009), 1, - sym_type_arguments, - STATE(1124), 1, - sym_arguments, - ACTIONS(2132), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2136), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [31512] = 26, + [30879] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -93205,54 +92945,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2803), 2, + ACTIONS(2789), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2365), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93263,7 +93003,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31611] = 26, + [30978] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -93278,54 +93018,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2805), 2, + ACTIONS(2791), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2365), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93336,7 +93076,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31710] = 26, + [31077] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -93351,54 +93091,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2807), 2, + ACTIONS(2793), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2365), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93409,7 +93149,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31809] = 26, + [31176] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -93424,54 +93164,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2809), 2, + ACTIONS(2795), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2365), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93482,7 +93222,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [31908] = 26, + [31275] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -93497,54 +93237,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2811), 2, + ACTIONS(2797), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2365), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93555,7 +93295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [32007] = 26, + [31374] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -93570,54 +93310,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2813), 2, + ACTIONS(2799), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2515), 6, + STATE(2365), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -93628,27 +93368,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [32106] = 9, + [31473] = 11, ACTIONS(3), 1, sym_comment, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, + anon_sym_LT, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - STATE(2525), 1, + ACTIONS(2801), 1, + anon_sym_EQ, + STATE(988), 1, sym_type_arguments, - STATE(1073), 2, - sym_template_string, + STATE(1130), 1, sym_arguments, - ACTIONS(2815), 14, + ACTIONS(2132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -93659,11 +93401,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2819), 24, + ACTIONS(2136), 24, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, @@ -93684,15 +93426,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32171] = 3, + [31542] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 15, - anon_sym_STAR, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2108), 1, + anon_sym_LT, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2803), 1, anon_sym_EQ, + STATE(988), 1, + sym_type_arguments, + STATE(1130), 1, + sym_arguments, + ACTIONS(2132), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -93703,19 +93459,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2825), 29, + ACTIONS(2136), 24, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -93733,21 +93484,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32223] = 7, + [31611] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 1, - anon_sym_LT, - ACTIONS(2830), 1, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2832), 1, - anon_sym_is, - STATE(1162), 1, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + STATE(2638), 1, sym_type_arguments, - ACTIONS(1579), 13, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2805), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -93758,17 +93515,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1577), 27, - anon_sym_as, + ACTIONS(2809), 24, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -93786,113 +93540,386 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32283] = 3, + [31676] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2748), 1, + anon_sym_export, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(2758), 1, + anon_sym_async, + ACTIONS(2760), 1, + sym_number, + ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, + sym_readonly, + STATE(1872), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2813), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1929), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2365), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2746), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [31775] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2748), 1, + anon_sym_export, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(2758), 1, + anon_sym_async, + ACTIONS(2760), 1, + sym_number, + ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, + sym_readonly, + STATE(1872), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2815), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1929), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2365), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2746), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [31874] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2748), 1, + anon_sym_export, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(2758), 1, + anon_sym_async, + ACTIONS(2760), 1, + sym_number, + ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, + sym_readonly, + STATE(1872), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2817), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1929), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2365), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2746), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [31973] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1670), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2836), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2336), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2748), 1, + anon_sym_export, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [32335] = 3, + ACTIONS(2758), 1, + anon_sym_async, + ACTIONS(2760), 1, + sym_number, + ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, + sym_readonly, + STATE(1872), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2819), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1929), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2365), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2746), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [32072] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1670), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2840), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2336), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2748), 1, + anon_sym_export, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [32387] = 3, + ACTIONS(2758), 1, + anon_sym_async, + ACTIONS(2760), 1, + sym_number, + ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, + sym_readonly, + STATE(1872), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2821), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1929), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2365), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2746), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [32171] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 15, + ACTIONS(2823), 1, + anon_sym_LT, + ACTIONS(2826), 1, + anon_sym_DOT, + ACTIONS(2828), 1, + anon_sym_is, + STATE(1040), 1, + sym_type_arguments, + ACTIONS(1581), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -93903,18 +93930,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2844), 29, + ACTIONS(1579), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -93933,65 +93958,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32439] = 5, + [32231] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(2846), 1, - sym__automatic_semicolon, - ACTIONS(903), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(901), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2106), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2108), 1, + anon_sym_LT, + ACTIONS(2138), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2140), 1, anon_sym_DOT, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [32495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1015), 14, + STATE(988), 1, + sym_type_arguments, + STATE(1130), 1, + sym_arguments, + ACTIONS(2132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -94002,20 +93989,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1013), 30, - sym__automatic_semicolon, + ACTIONS(2136), 24, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -94032,11 +94013,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [32547] = 3, + anon_sym_implements, + [32297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 15, + ACTIONS(2830), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -94052,7 +94033,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 29, + ACTIONS(2832), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -94082,10 +94063,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32599] = 3, + [32349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 15, + ACTIONS(2834), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -94101,7 +94082,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2564), 29, + ACTIONS(2836), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -94131,10 +94112,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32651] = 3, + [32401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 15, + ACTIONS(2838), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -94150,7 +94131,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2852), 29, + ACTIONS(2840), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -94180,10 +94161,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32703] = 3, + [32453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 15, + ACTIONS(2842), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -94199,7 +94180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2856), 29, + ACTIONS(2844), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -94229,10 +94210,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [32755] = 3, + [32505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 14, + ACTIONS(1027), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -94247,7 +94228,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(921), 30, + ACTIONS(1025), 30, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -94265,308 +94246,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [32807] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2108), 1, - anon_sym_LT, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - STATE(1009), 1, - sym_type_arguments, - STATE(1124), 1, - sym_arguments, - ACTIONS(2132), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2136), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [32873] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(2866), 1, - anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, - anon_sym_AMP, - ACTIONS(2878), 1, - anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2860), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2884), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32968] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(2866), 1, - anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, - anon_sym_AMP, - ACTIONS(2878), 1, - anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2890), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [33063] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(2866), 1, - anon_sym_LT, - ACTIONS(2882), 1, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2880), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2888), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [32557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1009), 14, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2894), 3, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2892), 9, + ACTIONS(1007), 30, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [33148] = 13, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [32609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_COLON, - ACTIONS(2896), 1, + ACTIONS(897), 1, anon_sym_EQ, - ACTIONS(2900), 1, - anon_sym_in, - ACTIONS(2903), 1, - anon_sym_of, - STATE(2297), 1, - sym_type_annotation, - STATE(2779), 1, - sym__initializer, - ACTIONS(2898), 3, + ACTIONS(2846), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1035), 13, + ACTIONS(895), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -94578,9 +94330,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(893), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -94597,34 +94358,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [33219] = 13, + anon_sym_implements, + [32665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2181), 1, - anon_sym_COLON, - ACTIONS(2905), 1, - anon_sym_EQ, - ACTIONS(2909), 1, - anon_sym_in, - ACTIONS(2912), 1, - anon_sym_of, - STATE(2299), 1, - sym_type_annotation, - STATE(2801), 1, - sym__initializer, - ACTIONS(2907), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1035), 13, + ACTIONS(2848), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -94636,9 +94378,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(2850), 29, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -94655,13 +94407,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [33290] = 4, + anon_sym_implements, + [32717] = 3, ACTIONS(3), 1, sym_comment, - STATE(1167), 1, - sym_type_arguments, - ACTIONS(1497), 14, + ACTIONS(2852), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -94675,13 +94427,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1495), 28, + ACTIONS(2854), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -94704,15 +94457,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [33343] = 5, + [32769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, - anon_sym_DOT, - STATE(1162), 1, - sym_type_arguments, - ACTIONS(1652), 14, + ACTIONS(2856), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -94726,16 +94476,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1650), 27, + ACTIONS(2494), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -94754,157 +94506,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [33398] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, - ACTIONS(2748), 1, - anon_sym_STAR, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(2752), 1, - anon_sym_async, - ACTIONS(2754), 1, - sym_number, - ACTIONS(2756), 1, - anon_sym_static, - ACTIONS(2762), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2515), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2744), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [33493] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, - ACTIONS(2748), 1, - anon_sym_STAR, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(2752), 1, - anon_sym_async, - ACTIONS(2754), 1, - sym_number, - ACTIONS(2756), 1, - anon_sym_static, - ACTIONS(2762), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2243), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2744), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [33588] = 5, + [32821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 1, - anon_sym_LT, - STATE(1167), 1, - sym_type_arguments, - ACTIONS(1694), 13, + ACTIONS(897), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -94915,13 +94525,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1692), 28, + ACTIONS(899), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -94944,7 +94555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [33643] = 25, + [32873] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -94955,9 +94566,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -94975,7 +94586,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -94986,7 +94597,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -95002,19 +94613,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2860), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2917), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [33738] = 25, + [32968] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -95029,51 +94640,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, ACTIONS(2748), 1, - anon_sym_STAR, + anon_sym_export, ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, + ACTIONS(2758), 1, anon_sym_async, - ACTIONS(2754), 1, + ACTIONS(2760), 1, sym_number, - ACTIONS(2756), 1, - anon_sym_static, ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, sym_readonly, - STATE(1875), 1, + STATE(1872), 1, sym_accessibility_modifier, STATE(1901), 1, sym_decorator, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2349), 1, + STATE(2485), 1, sym__call_signature, - STATE(2600), 1, + STATE(2589), 1, aux_sym_export_statement_repeat1, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(2758), 2, + ACTIONS(2764), 2, anon_sym_get, anon_sym_set, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1928), 3, + STATE(1929), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2226), 6, + STATE(2222), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(2744), 10, + ACTIONS(2746), 10, anon_sym_namespace, anon_sym_type, sym_identifier, @@ -95084,56 +94695,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [33833] = 4, + [33063] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, - sym__automatic_semicolon, - ACTIONS(903), 14, - anon_sym_STAR, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2866), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2868), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, anon_sym_AMP, + ACTIONS(2878), 1, anon_sym_PIPE, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(901), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2858), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2864), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [33886] = 18, + ACTIONS(2890), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [33158] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -95144,25 +94776,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, ACTIONS(2866), 1, anon_sym_LT, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, + anon_sym_AMP, + ACTIONS(2878), 1, + anon_sym_PIPE, ACTIONS(2882), 1, anon_sym_STAR_STAR, - STATE(2525), 1, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, sym_type_arguments, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -95173,100 +94818,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2894), 7, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 14, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33967] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, - ACTIONS(2748), 1, - anon_sym_STAR, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(2752), 1, - anon_sym_async, - ACTIONS(2754), 1, - sym_number, - ACTIONS(2756), 1, - anon_sym_static, - ACTIONS(2762), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2214), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2744), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [34062] = 26, + ACTIONS(2892), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [33253] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -95277,9 +94846,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -95297,9 +94866,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -95310,7 +94877,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -95326,77 +94893,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2921), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34159] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 1, - anon_sym_LBRACE, - STATE(1137), 1, - sym_statement_block, - ACTIONS(895), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(893), 27, - anon_sym_as, + ACTIONS(2894), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [34214] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + [33348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, - anon_sym_LBRACE, - ACTIONS(2925), 1, - anon_sym_DOT, - STATE(1137), 1, - sym_statement_block, - ACTIONS(895), 14, + ACTIONS(2106), 1, + anon_sym_LPAREN, + STATE(1060), 1, + sym_arguments, + ACTIONS(2896), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -95411,15 +94927,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(893), 26, + ACTIONS(2898), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -95438,38 +94955,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [34271] = 15, + [33403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2927), 1, - anon_sym_LT, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, + STATE(1061), 1, sym_arguments, - ACTIONS(2894), 12, + ACTIONS(2900), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -95480,25 +94977,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 17, + ACTIONS(2902), 27, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34346] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [33458] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -95509,9 +95016,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -95529,7 +95036,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -95540,7 +95047,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -95562,13 +95069,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2930), 5, + ACTIONS(2904), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [34441] = 25, + [33553] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -95579,9 +95086,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -95599,7 +95106,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -95610,7 +95117,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -95632,72 +95139,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2932), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [34536] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(2938), 1, - anon_sym_LT, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2934), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2936), 18, + ACTIONS(2906), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [34609] = 25, + [33648] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -95708,9 +95156,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -95728,7 +95176,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -95739,7 +95187,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -95761,13 +95209,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2941), 5, + ACTIONS(2908), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [34704] = 14, + [33743] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -95778,23 +95226,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2938), 1, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2914), 1, anon_sym_LT, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 12, + ACTIONS(2910), 12, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -95807,7 +95257,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 18, + ACTIONS(2912), 17, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -95819,14 +95269,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34777] = 25, + [33818] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -95837,9 +95286,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -95857,7 +95306,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(2917), 1, + anon_sym_COMMA, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -95868,7 +95319,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -95884,89 +95335,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2919), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2943), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [34872] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, - ACTIONS(2748), 1, - anon_sym_STAR, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(2752), 1, - anon_sym_async, - ACTIONS(2754), 1, - sym_number, - ACTIONS(2756), 1, - anon_sym_static, - ACTIONS(2762), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2256), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2744), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [34967] = 25, + [33915] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -95977,38 +95357,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, - anon_sym_AMP, - ACTIONS(2878), 1, - anon_sym_PIPE, ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -96019,123 +95386,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2945), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [35062] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - STATE(1047), 1, - sym_arguments, - ACTIONS(2947), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(2910), 7, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2949), 27, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2912), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [35117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2955), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(2951), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2953), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [35170] = 25, + [33996] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -96146,38 +95420,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, - anon_sym_AMP, - ACTIONS(2878), 1, - anon_sym_PIPE, ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -96188,6 +95449,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, + ACTIONS(2910), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, @@ -96199,63 +95464,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2957), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [35265] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - STATE(1046), 1, - sym_arguments, - ACTIONS(2959), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2961), 27, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2912), 9, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [35320] = 25, + [34081] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -96266,38 +95485,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, ACTIONS(2870), 1, anon_sym_AMP_AMP, ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(2878), 1, - anon_sym_PIPE, ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + ACTIONS(2910), 2, + anon_sym_QMARK, + anon_sym_PIPE, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -96319,13 +95532,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2963), 5, + ACTIONS(2912), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [35415] = 13, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [34170] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -96336,35 +95552,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(2938), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2914), 1, anon_sym_LT, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 13, + ACTIONS(2858), 3, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2910), 9, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 18, + ACTIONS(2912), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -96372,99 +95596,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35486] = 25, + [34249] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_new, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - anon_sym_export, - ACTIONS(2748), 1, - anon_sym_STAR, - ACTIONS(2750), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2752), 1, - anon_sym_async, - ACTIONS(2754), 1, - sym_number, - ACTIONS(2756), 1, - anon_sym_static, - ACTIONS(2762), 1, - sym_readonly, - STATE(1875), 1, - sym_accessibility_modifier, - STATE(1901), 1, - sym_decorator, - STATE(2024), 1, - sym_formal_parameters, - STATE(2349), 1, - sym__call_signature, - STATE(2600), 1, - aux_sym_export_statement_repeat1, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(2758), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1928), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2207), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(2744), 10, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [35581] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2965), 1, - anon_sym_LBRACE, - STATE(1230), 1, - sym_statement_block, - ACTIONS(895), 14, - anon_sym_STAR, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2914), 1, anon_sym_LT, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2910), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -96475,18 +95643,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(893), 27, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(2912), 18, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -96500,10 +95662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [35636] = 25, + [34322] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -96514,16 +95673,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, ACTIONS(2870), 1, anon_sym_AMP_AMP, ACTIONS(2876), 1, @@ -96532,9 +95689,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(2910), 1, + anon_sym_QMARK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -96545,7 +95702,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -96567,13 +95724,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2967), 5, + ACTIONS(2912), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [35731] = 24, + anon_sym_QMARK_QMARK, + [34415] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -96584,14 +95742,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, ACTIONS(2866), 1, anon_sym_LT, + ACTIONS(2868), 1, + anon_sym_QMARK, ACTIONS(2870), 1, anon_sym_AMP_AMP, ACTIONS(2876), 1, @@ -96600,9 +95760,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(2894), 1, - anon_sym_QMARK, - STATE(2525), 1, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -96613,7 +95773,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -96635,14 +95795,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2892), 6, + ACTIONS(2921), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [35824] = 22, + [34510] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -96653,32 +95812,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, ACTIONS(2866), 1, anon_sym_LT, + ACTIONS(2868), 1, + anon_sym_QMARK, ACTIONS(2870), 1, anon_sym_AMP_AMP, ACTIONS(2876), 1, anon_sym_AMP, + ACTIONS(2878), 1, + anon_sym_PIPE, ACTIONS(2882), 1, anon_sym_STAR_STAR, - STATE(2525), 1, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, sym_type_arguments, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2894), 2, - anon_sym_QMARK, - anon_sym_PIPE, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -96700,16 +95865,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2892), 8, + ACTIONS(2923), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [35913] = 14, + [34605] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -96720,55 +95882,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2927), 1, + ACTIONS(2866), 1, anon_sym_LT, - STATE(2525), 1, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, + anon_sym_AMP, + ACTIONS(2878), 1, + anon_sym_PIPE, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, sym_type_arguments, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2894), 12, + ACTIONS(2858), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2892), 18, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2864), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35986] = 25, + ACTIONS(2925), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [34700] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -96779,9 +95952,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -96799,7 +95972,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -96810,7 +95983,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -96832,41 +96005,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2969), 5, + ACTIONS(2927), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [36081] = 4, + [34795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, - sym__automatic_semicolon, - ACTIONS(937), 14, + ACTIONS(1451), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1453), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(897), 12, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(935), 28, + ACTIONS(899), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -96887,7 +96061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [36134] = 25, + [34850] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -96898,9 +96072,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -96918,7 +96092,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -96929,7 +96103,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -96951,13 +96125,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2973), 5, + ACTIONS(2929), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [36229] = 17, + [34945] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -96968,43 +96142,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2927), 1, + ACTIONS(2935), 1, anon_sym_LT, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(2931), 12, anon_sym_STAR, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(2874), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2933), 18, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2894), 9, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [35018] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2935), 1, + anon_sym_LT, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2931), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 14, + ACTIONS(2933), 18, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -97012,14 +96237,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36308] = 25, + [35089] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -97030,9 +96259,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -97050,7 +96279,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -97061,7 +96290,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -97083,22 +96312,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2975), 5, + ACTIONS(2938), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [36403] = 6, + [35184] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(2942), 1, anon_sym_DOT, - STATE(1230), 1, + STATE(1198), 1, sym_statement_block, - ACTIONS(895), 14, + ACTIONS(905), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97113,7 +96342,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(893), 26, + ACTIONS(903), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -97140,37 +96369,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [36460] = 5, + [35241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1527), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(1529), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 12, + ACTIONS(2940), 1, + anon_sym_LBRACE, + STATE(1198), 1, + sym_statement_block, + ACTIONS(905), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 26, + ACTIONS(903), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -97189,148 +96419,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [36515] = 25, + [35296] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(2186), 1, + anon_sym_COLON, + ACTIONS(2944), 1, + anon_sym_EQ, + ACTIONS(2948), 1, + anon_sym_in, + ACTIONS(2951), 1, + anon_sym_of, + STATE(2390), 1, + sym_type_annotation, + STATE(2726), 1, + sym__initializer, + ACTIONS(2946), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1073), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(2868), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 18, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(2979), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [36610] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [35367] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(2186), 1, + anon_sym_COLON, + ACTIONS(2953), 1, + anon_sym_EQ, + ACTIONS(2957), 1, + anon_sym_in, + ACTIONS(2960), 1, + anon_sym_of, + STATE(2393), 1, + sym_type_annotation, + STATE(2732), 1, + sym__initializer, + ACTIONS(2955), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1073), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(2868), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 18, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(2981), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [36705] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [35438] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -97341,11 +96546,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2400), 1, - anon_sym_COLON, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -97363,14 +96566,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(2983), 1, - anon_sym_RPAREN, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - STATE(3238), 1, - sym_type_annotation, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -97380,7 +96577,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -97402,150 +96599,190 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36805] = 27, + ACTIONS(2962), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [35533] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2748), 1, + anon_sym_export, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2989), 1, - anon_sym_COMMA, - ACTIONS(2992), 1, - anon_sym_RBRACE, - ACTIONS(2994), 1, + ACTIONS(2758), 1, + anon_sym_async, + ACTIONS(2760), 1, + sym_number, + ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, + sym_readonly, + STATE(1872), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1929), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2365), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2746), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [35628] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1045), 1, + sym_type_arguments, + ACTIONS(1529), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(2945), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1527), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36903] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [35681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(2968), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(2964), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2966), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2890), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36997] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [35734] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 14, + ACTIONS(2970), 1, + anon_sym_LBRACE, + ACTIONS(2972), 1, + anon_sym_DOT, + STATE(1091), 1, + sym_statement_block, + ACTIONS(905), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97560,9 +96797,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3026), 28, + ACTIONS(903), 26, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -97570,7 +96806,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97589,10 +96824,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37047] = 3, + [35791] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 14, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(1091), 1, + sym_statement_block, + ACTIONS(905), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97607,9 +96846,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3030), 28, + ACTIONS(903), 27, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -97636,82 +96874,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37097] = 28, + [35846] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2309), 1, - anon_sym_COMMA, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3036), 1, - anon_sym_LBRACE, - ACTIONS(3038), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(3068), 1, - anon_sym_LBRACE_PIPE, - STATE(2554), 1, + STATE(2638), 1, sym_type_arguments, - STATE(2608), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3050), 2, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37197] = 3, + ACTIONS(2974), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [35941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 14, + ACTIONS(2846), 1, + sym__automatic_semicolon, + ACTIONS(895), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97726,7 +96964,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1065), 28, + ACTIONS(893), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97755,14 +96993,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37247] = 3, + [35994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 14, + ACTIONS(2976), 1, + anon_sym_LT, + STATE(1045), 1, + sym_type_arguments, + ACTIONS(1698), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -97773,7 +97014,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3072), 28, + ACTIONS(1696), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97802,10 +97043,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37297] = 3, + [36049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 14, + ACTIONS(2826), 1, + anon_sym_DOT, + STATE(1040), 1, + sym_type_arguments, + ACTIONS(1656), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97820,7 +97065,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2979), 28, + ACTIONS(1654), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97830,7 +97075,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -97849,14 +97093,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37347] = 3, + [36104] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1057), 14, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2748), 1, + anon_sym_export, + ACTIONS(2750), 1, anon_sym_STAR, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(2758), 1, + anon_sym_async, + ACTIONS(2760), 1, + sym_number, + ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, + sym_readonly, + STATE(1872), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1929), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2258), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2746), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [36199] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2935), 1, anon_sym_LT, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2931), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -97867,18 +97203,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1055), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2933), 18, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -97892,14 +97222,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [37397] = 3, + [36272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 14, + ACTIONS(2979), 1, + sym__automatic_semicolon, + ACTIONS(1023), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -97914,7 +97242,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3078), 28, + ACTIONS(1021), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -97943,7 +97271,217 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37447] = 27, + [36325] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2748), 1, + anon_sym_export, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(2758), 1, + anon_sym_async, + ACTIONS(2760), 1, + sym_number, + ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, + sym_readonly, + STATE(1872), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1929), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2208), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2746), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [36420] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2748), 1, + anon_sym_export, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(2758), 1, + anon_sym_async, + ACTIONS(2760), 1, + sym_number, + ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, + sym_readonly, + STATE(1872), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1929), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2231), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2746), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [36515] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(2344), 1, + anon_sym_new, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2748), 1, + anon_sym_export, + ACTIONS(2750), 1, + anon_sym_STAR, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(2758), 1, + anon_sym_async, + ACTIONS(2760), 1, + sym_number, + ACTIONS(2762), 1, + anon_sym_static, + ACTIONS(2768), 1, + sym_readonly, + STATE(1872), 1, + sym_accessibility_modifier, + STATE(1901), 1, + sym_decorator, + STATE(2059), 1, + sym_formal_parameters, + STATE(2485), 1, + sym__call_signature, + STATE(2589), 1, + aux_sym_export_statement_repeat1, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(2764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1929), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2173), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(2746), 10, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [36610] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -97954,70 +97492,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2292), 1, - anon_sym_COMMA, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - STATE(2604), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3068), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(3090), 2, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3080), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37545] = 3, + ACTIONS(2981), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [36705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 14, + ACTIONS(915), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98032,7 +97569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2975), 28, + ACTIONS(917), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98061,10 +97598,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37595] = 3, + [36755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 14, + ACTIONS(2983), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98079,7 +97616,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2860), 28, + ACTIONS(2962), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98108,10 +97645,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37645] = 3, + [36805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 14, + ACTIONS(1493), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98126,7 +97663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3112), 28, + ACTIONS(1491), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98155,7 +97692,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37695] = 28, + [36855] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -98166,11 +97703,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2400), 1, + ACTIONS(2435), 1, anon_sym_COLON, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -98188,13 +97725,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3114), 1, + ACTIONS(2985), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - STATE(3156), 1, + STATE(3241), 1, sym_type_annotation, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -98205,7 +97742,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -98227,10 +97764,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37795] = 3, + [36955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 14, + ACTIONS(2987), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98245,7 +97782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3118), 28, + ACTIONS(2925), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98274,10 +97811,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37845] = 3, + [37005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 14, + ACTIONS(2989), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98292,7 +97829,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3122), 28, + ACTIONS(2991), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98321,156 +97858,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [37895] = 3, + [37055] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3124), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3126), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2218), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2223), 1, anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(2997), 1, + anon_sym_COMMA, + ACTIONS(3000), 1, + anon_sym_RBRACE, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 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(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(2921), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [37945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3128), 14, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3130), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [37995] = 8, + [37153] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, - anon_sym_COMMA, - ACTIONS(2138), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2142), 1, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(1513), 3, - anon_sym_GT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, anon_sym_AMP, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(1035), 11, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1037), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2894), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [38055] = 3, + [37247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3132), 14, + ACTIONS(3032), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98485,7 +98016,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3134), 28, + ACTIONS(2923), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98514,10 +98045,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38105] = 3, + [37297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 14, + ACTIONS(3034), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98532,7 +98063,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3138), 28, + ACTIONS(3036), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98561,10 +98092,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38155] = 3, + [37347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 14, + ACTIONS(1421), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98579,7 +98110,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(985), 28, + ACTIONS(1419), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98608,57 +98139,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38205] = 3, + [37397] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3006), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, anon_sym_AMP, + ACTIONS(3020), 1, anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3142), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2981), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [38255] = 3, + [37491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3144), 14, + ACTIONS(1529), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98673,7 +98226,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2967), 28, + ACTIONS(1527), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98702,10 +98255,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38305] = 3, + [37541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1045), 14, + ACTIONS(963), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98720,7 +98273,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1047), 28, + ACTIONS(961), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98749,11 +98302,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38355] = 3, + [37591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1073), 14, + ACTIONS(2856), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -98767,16 +98321,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1075), 28, + ACTIONS(2494), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -98795,13 +98349,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [38405] = 3, + [37641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 15, + ACTIONS(1425), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -98815,16 +98367,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2852), 27, - sym__automatic_semicolon, + ACTIONS(1423), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -98843,57 +98395,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38455] = 3, + anon_sym_implements, + [37691] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3006), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, anon_sym_AMP, + ACTIONS(3020), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3148), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3038), 1, anon_sym_COMMA, + ACTIONS(3041), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(2904), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [38505] = 3, + [37789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 14, + ACTIONS(3043), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -98908,7 +98485,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3152), 28, + ACTIONS(3045), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -98937,57 +98514,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38555] = 3, + [37839] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 14, - anon_sym_STAR, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_COLON, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2866), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2868), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, anon_sym_AMP, + ACTIONS(2878), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3156), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2917), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(3047), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + STATE(2638), 1, + sym_type_arguments, + STATE(3088), 1, + sym_type_annotation, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2858), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2864), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [38605] = 3, + [37939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 14, + ACTIONS(1477), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99002,7 +98604,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3160), 28, + ACTIONS(1475), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99031,10 +98633,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38655] = 3, + [37989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 14, + ACTIONS(1457), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99049,7 +98651,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3164), 28, + ACTIONS(1455), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99078,10 +98680,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38705] = 3, + [38039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 14, + ACTIONS(1473), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99096,7 +98698,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3168), 28, + ACTIONS(1471), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99125,10 +98727,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38755] = 3, + [38089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 14, + ACTIONS(3049), 1, + anon_sym_DOT, + ACTIONS(1409), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99143,7 +98747,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(947), 28, + ACTIONS(1407), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99153,7 +98757,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -99172,10 +98775,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38805] = 3, + [38141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(973), 14, + ACTIONS(3052), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99190,7 +98793,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(975), 28, + ACTIONS(3054), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99219,10 +98822,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38855] = 3, + [38191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(929), 14, + ACTIONS(1449), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99237,7 +98840,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(931), 28, + ACTIONS(1447), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99266,10 +98869,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38905] = 3, + [38241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 14, + ACTIONS(1445), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99284,7 +98887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(995), 28, + ACTIONS(1443), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99313,57 +98916,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [38955] = 3, + [38291] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3172), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2138), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2140), 1, anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_COLON, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, + anon_sym_LT, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, anon_sym_AMP_AMP, + ACTIONS(2876), 1, + anon_sym_AMP, + ACTIONS(2878), 1, + anon_sym_PIPE, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3056), 1, + anon_sym_RPAREN, + STATE(2638), 1, + sym_type_arguments, + STATE(3100), 1, + sym_type_annotation, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2858), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2864), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [39005] = 3, + [38391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 14, + ACTIONS(1441), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99378,7 +99006,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(917), 28, + ACTIONS(1439), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99407,10 +99035,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [39055] = 3, + [38441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 14, + ACTIONS(3058), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99425,7 +99053,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3176), 28, + ACTIONS(3060), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99454,10 +99082,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [39105] = 3, + [38491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 14, + ACTIONS(1485), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99472,7 +99100,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1009), 28, + ACTIONS(1483), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99501,10 +99129,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [39155] = 3, + [38541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 14, + ACTIONS(3062), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99519,7 +99147,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3180), 28, + ACTIONS(3064), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99548,10 +99176,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [39205] = 3, + [38591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 14, + ACTIONS(3066), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99566,7 +99194,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1027), 28, + ACTIONS(3068), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99595,79 +99223,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [39255] = 25, + [38641] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3010), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2941), 4, + ACTIONS(2929), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(2996), 4, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [39349] = 3, + [38735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 14, + ACTIONS(1481), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -99682,7 +99310,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3184), 28, + ACTIONS(1479), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -99711,248 +99339,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [39399] = 25, + [38785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(1437), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2932), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [39493] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(1435), 28, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(2998), 1, - anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, - anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, - anon_sym_AMP, - ACTIONS(3012), 1, - anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2930), 4, - sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [39587] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2140), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(2400), 1, - anon_sym_COLON, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(2866), 1, - anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, - ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, - anon_sym_AMP, - ACTIONS(2878), 1, - anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3186), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym_type_arguments, - STATE(3298), 1, - sym_type_annotation, - ACTIONS(2872), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [39687] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3188), 1, - anon_sym_LT, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3022), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2894), 12, + anon_sym_BQUOTE, + anon_sym_implements, + [38835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -99963,91 +99404,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 16, - sym__automatic_semicolon, + ACTIONS(1467), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [39761] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(2998), 1, - anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3014), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3022), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2894), 7, - anon_sym_in, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2892), 13, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [39841] = 3, + anon_sym_BQUOTE, + anon_sym_implements, + [38885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 15, + ACTIONS(3070), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -100061,16 +99451,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 27, - sym__automatic_semicolon, + ACTIONS(3072), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -100089,12 +99479,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [39891] = 3, + anon_sym_implements, + [38935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 15, + ACTIONS(3074), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -100108,16 +99498,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2840), 27, - sym__automatic_semicolon, + ACTIONS(3076), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -100136,11 +99526,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [39941] = 3, + anon_sym_implements, + [38985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 14, + ACTIONS(2852), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -100154,16 +99546,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3193), 28, + ACTIONS(2854), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -100182,80 +99574,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [39991] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(2866), 1, - anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, - anon_sym_AMP, - ACTIONS(2878), 1, - anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3195), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(2884), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [40085] = 3, + [39035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 14, + ACTIONS(1461), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -100270,7 +99592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(951), 28, + ACTIONS(1459), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -100299,311 +99621,231 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [40135] = 20, + [39085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(1465), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3014), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2894), 3, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2892), 8, - sym__automatic_semicolon, + ACTIONS(1463), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [40219] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(2998), 1, - anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, - anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, - anon_sym_AMP, - ACTIONS(3012), 1, - anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2981), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40313] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [39135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(3078), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(1497), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, - anon_sym_AMP, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(2894), 2, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1495), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2892), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [40401] = 17, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [39187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2972), 1, anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(1707), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3188), 1, + anon_sym_in, anon_sym_LT, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3008), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1705), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2894), 9, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [39239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 13, - sym__automatic_semicolon, + ACTIONS(1451), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40479] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [39289] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(1491), 1, + anon_sym_COMMA, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(3188), 1, - anon_sym_LT, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2894), 12, + ACTIONS(1493), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 11, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 17, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(1075), 24, + anon_sym_as, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -100617,10 +99859,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40551] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [39349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 15, + ACTIONS(2848), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -100636,7 +99882,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2836), 27, + ACTIONS(2850), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -100664,285 +99910,246 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [40601] = 25, + [39399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(967), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(965), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2969), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40695] = 24, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [39449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2894), 1, - anon_sym_QMARK, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(985), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 5, + ACTIONS(983), 28, sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - ACTIONS(3018), 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40787] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [39499] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3010), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + ACTIONS(3041), 1, + anon_sym_RBRACE, + ACTIONS(3080), 1, + anon_sym_COMMA, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(2929), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2967), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40881] = 25, + [39597] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3010), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + ACTIONS(3083), 1, + anon_sym_COMMA, + ACTIONS(3086), 1, + anon_sym_RBRACE, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(2860), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2945), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [40975] = 3, + [39695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 14, + ACTIONS(1009), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -100957,7 +100164,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3199), 28, + ACTIONS(1007), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -100986,12 +100193,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [41025] = 3, + [39745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 15, + ACTIONS(3078), 1, + anon_sym_LBRACK, + ACTIONS(1525), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -101005,16 +100213,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2564), 27, - sym__automatic_semicolon, + ACTIONS(1523), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -101033,291 +100240,257 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41075] = 25, + anon_sym_implements, + [39797] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2998), 1, - anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, - anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, - anon_sym_AMP, - ACTIONS(3012), 1, - anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, + ACTIONS(3088), 1, + anon_sym_LT, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2931), 12, anon_sym_STAR, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3008), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2943), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2933), 17, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [41169] = 25, + [39869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(1097), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2917), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(1095), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [41263] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [39919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2400), 1, - anon_sym_COLON, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(1433), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2866), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2868), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1431), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3201), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(2525), 1, - sym_type_arguments, - STATE(3078), 1, - sym_type_annotation, - ACTIONS(2872), 2, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [41363] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [39969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(1023), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3203), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1021), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3206), 1, anon_sym_RBRACE, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(2973), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3006), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(3014), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3022), 2, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, + anon_sym_BQUOTE, + anon_sym_implements, + [40019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1429), 14, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3008), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1427), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [41461] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [40069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 14, + ACTIONS(985), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101332,7 +100505,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 28, + ACTIONS(983), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -101361,85 +100534,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [41511] = 27, + [40119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(1073), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3206), 1, - anon_sym_RBRACE, - ACTIONS(3208), 1, - anon_sym_COMMA, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(2941), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 25, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [41609] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [40175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(1739), 12, + ACTIONS(1015), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101448,11 +100596,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1737), 28, + ACTIONS(1017), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -101481,79 +100631,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [41663] = 25, + [40225] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3010), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2860), 4, + ACTIONS(2938), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(2996), 4, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41757] = 3, + [40319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 14, + ACTIONS(1037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101568,7 +100718,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3217), 28, + ACTIONS(1035), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -101597,79 +100747,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [41807] = 25, + [40369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(897), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2975), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(899), 27, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [41901] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [40419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 15, + ACTIONS(2842), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -101685,7 +100813,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2856), 27, + ACTIONS(2844), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -101713,85 +100841,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [41951] = 27, + [40469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3091), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3219), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3093), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3222), 1, anon_sym_RBRACE, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(2943), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3006), 2, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [42049] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [40519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(1729), 12, + ACTIONS(3095), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101800,11 +100900,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1727), 28, + ACTIONS(3097), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -101833,148 +100935,126 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42103] = 25, + [40569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(955), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3008), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(957), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2979), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [42197] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [40619] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2973), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3099), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [42291] = 3, + [40713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 14, + ACTIONS(3101), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -101989,7 +101069,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3226), 28, + ACTIONS(3103), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102018,14 +101098,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42341] = 5, + [40763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(1725), 12, + ACTIONS(945), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102034,11 +101110,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1723), 28, + ACTIONS(947), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102067,10 +101145,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42395] = 3, + [40813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 14, + ACTIONS(1063), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102085,7 +101163,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3230), 28, + ACTIONS(1065), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102114,14 +101192,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42445] = 5, + [40863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(1735), 12, + ACTIONS(1027), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102130,11 +101204,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 28, + ACTIONS(1025), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102163,10 +101239,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42499] = 3, + [40913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3232), 14, + ACTIONS(991), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102181,7 +101257,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3234), 28, + ACTIONS(993), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102210,10 +101286,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42549] = 3, + [40963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 14, + ACTIONS(3105), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102228,7 +101304,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3238), 28, + ACTIONS(3107), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102257,10 +101333,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42599] = 3, + [41013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1607), 14, + ACTIONS(3109), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102275,7 +101351,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1605), 28, + ACTIONS(3111), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102304,10 +101380,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42649] = 3, + [41063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 14, + ACTIONS(981), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102322,7 +101398,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1051), 28, + ACTIONS(979), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102351,14 +101427,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42699] = 5, + [41113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, - anon_sym_AMP, - ACTIONS(3213), 1, - anon_sym_PIPE, - ACTIONS(1713), 12, + ACTIONS(1628), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102367,11 +101439,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 28, + ACTIONS(1626), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102400,11 +101474,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42753] = 3, + [41163] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 14, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_COLON, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, + anon_sym_LT, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, + anon_sym_AMP, + ACTIONS(2878), 1, + anon_sym_PIPE, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3113), 1, + anon_sym_RPAREN, + STATE(2638), 1, + sym_type_arguments, + STATE(3216), 1, + sym_type_annotation, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2858), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2864), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2884), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2838), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -102418,16 +101565,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1654), 28, + ACTIONS(2840), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -102446,11 +101593,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [42803] = 3, + [41313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 14, + ACTIONS(3115), 1, + anon_sym_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(1748), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102459,13 +101609,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3242), 28, + ACTIONS(1746), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102494,10 +101642,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42853] = 3, + [41367] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2892), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3119), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102512,7 +101729,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3246), 28, + ACTIONS(3121), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102541,23 +101758,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [42903] = 9, + [41511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - STATE(2580), 1, - sym_type_arguments, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2815), 14, + ACTIONS(3123), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102572,12 +101776,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2819), 21, - sym__automatic_semicolon, + ACTIONS(3125), 28, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -102594,102 +101804,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [42965] = 13, + anon_sym_implements, + [41561] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3248), 1, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3006), 1, anon_sym_LT, - STATE(2580), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 13, + ACTIONS(2993), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2936), 17, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2923), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [43035] = 11, + [41655] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, - anon_sym_LT, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2801), 1, - anon_sym_EQ, - STATE(1318), 1, - sym_type_arguments, - STATE(1467), 1, - sym_arguments, - ACTIONS(2132), 13, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3127), 1, + anon_sym_COMMA, + ACTIONS(3130), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2136), 21, - sym__automatic_semicolon, + ACTIONS(1075), 24, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -102706,36 +101925,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43101] = 3, + anon_sym_implements, + [41715] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 14, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3133), 1, + anon_sym_COMMA, + ACTIONS(3136), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3253), 28, + ACTIONS(1075), 24, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -102753,112 +101978,217 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43151] = 11, + [41775] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, - anon_sym_LPAREN, + ACTIONS(85), 1, + anon_sym_BQUOTE, ACTIONS(2112), 1, - anon_sym_LT, - ACTIONS(2215), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2787), 1, - anon_sym_EQ, - STATE(1318), 1, - sym_type_arguments, - STATE(1467), 1, - sym_arguments, - ACTIONS(2132), 13, - anon_sym_STAR, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, anon_sym_AMP, + ACTIONS(3020), 1, anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2136), 21, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2890), 4, sym__automatic_semicolon, - anon_sym_as, 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, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [43217] = 3, + [41869] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1644), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3006), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, anon_sym_AMP, + ACTIONS(3020), 1, anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1642), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2925), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41963] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2218), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2223), 1, anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, anon_sym_AMP_AMP, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2927), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [43267] = 3, + [42057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 14, + ACTIONS(2964), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102873,7 +102203,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2702), 28, + ACTIONS(2966), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102902,10 +102232,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43317] = 3, + [42107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 14, + ACTIONS(3115), 1, + anon_sym_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(1738), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102914,13 +102248,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2932), 28, + ACTIONS(1736), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102949,10 +102281,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43367] = 3, + [42161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 14, + ACTIONS(3139), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -102967,7 +102299,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 28, + ACTIONS(3141), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -102996,10 +102328,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43417] = 3, + [42211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(957), 14, + ACTIONS(3139), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103014,7 +102346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(955), 28, + ACTIONS(3141), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103043,10 +102375,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43467] = 3, + [42261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 14, + ACTIONS(3143), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103061,7 +102393,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(921), 28, + ACTIONS(3145), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103090,10 +102422,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43517] = 3, + [42311] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1019), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2962), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3147), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103108,7 +102509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1017), 28, + ACTIONS(3149), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103137,10 +102538,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43567] = 3, + [42455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 14, + ACTIONS(3151), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103155,7 +102556,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 28, + ACTIONS(2906), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103184,10 +102585,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43617] = 3, + [42505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(937), 14, + ACTIONS(3153), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103202,7 +102603,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(935), 28, + ACTIONS(3155), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103231,10 +102632,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43667] = 3, + [42555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 14, + ACTIONS(3157), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103249,7 +102650,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2953), 28, + ACTIONS(3159), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103278,10 +102679,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43717] = 3, + [42605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 14, + ACTIONS(3161), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103296,7 +102697,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 28, + ACTIONS(3163), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103325,10 +102726,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43767] = 3, + [42655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 14, + ACTIONS(3165), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103343,7 +102744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3263), 28, + ACTIONS(3167), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103372,12 +102773,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [43817] = 3, + [42705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 15, + ACTIONS(3169), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -103391,16 +102791,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2825), 27, - sym__automatic_semicolon, + ACTIONS(3171), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -103419,79 +102819,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [43867] = 25, + anon_sym_implements, + [42755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3173), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2998), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3012), 1, anon_sym_PIPE, - ACTIONS(3016), 1, - anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3175), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2985), 3, + anon_sym_BQUOTE, + anon_sym_implements, + [42805] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3115), 1, + anon_sym_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(1730), 12, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3008), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1728), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2963), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3018), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [43961] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [42859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 14, + ACTIONS(3177), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103506,7 +102934,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1095), 28, + ACTIONS(3179), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103535,10 +102963,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44011] = 3, + [42909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 14, + ACTIONS(3181), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103553,7 +102981,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2917), 28, + ACTIONS(3183), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103582,16 +103010,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44061] = 6, + [42959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(1035), 14, + ACTIONS(1646), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103606,7 +103028,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 25, + ACTIONS(1644), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103614,7 +103036,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -103632,12 +103057,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44117] = 4, + [43009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, - anon_sym_LBRACK, - ACTIONS(1433), 14, + ACTIONS(3185), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103652,7 +103075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1431), 27, + ACTIONS(3187), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103660,6 +103083,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -103680,10 +103104,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44169] = 3, + [43059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 14, + ACTIONS(3115), 1, + anon_sym_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE, + ACTIONS(1726), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103692,13 +103120,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1724), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [43113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3115), 1, anon_sym_AMP, + ACTIONS(3117), 1, anon_sym_PIPE, + ACTIONS(1713), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3271), 28, + ACTIONS(1711), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103727,10 +103202,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44219] = 3, + [43167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1015), 14, + ACTIONS(3189), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103745,7 +103220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1013), 28, + ACTIONS(3191), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103774,10 +103249,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44269] = 3, + [43217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 14, + ACTIONS(1043), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103792,17 +103267,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1051), 28, - sym__automatic_semicolon, + ACTIONS(1045), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -103821,79 +103295,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [44319] = 25, + anon_sym_implements, + [43267] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2261), 1, + anon_sym_COMMA, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3197), 1, + anon_sym_LBRACE, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + ACTIONS(3229), 1, + anon_sym_LBRACE_PIPE, + STATE(2560), 1, sym_type_arguments, - ACTIONS(3006), 2, + STATE(2623), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2957), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(2996), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44413] = 3, + [43367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 14, + ACTIONS(1612), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -103908,7 +103386,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(999), 28, + ACTIONS(1610), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -103937,7 +103415,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44463] = 28, + [43417] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -103948,11 +103426,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2400), 1, + ACTIONS(2435), 1, anon_sym_COLON, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -103970,13 +103448,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3273), 1, + ACTIONS(3231), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - STATE(3167), 1, + STATE(3073), 1, sym_type_annotation, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -103987,7 +103465,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -104009,10 +103487,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44563] = 3, + [43517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 14, + ACTIONS(1053), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104027,7 +103505,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3277), 28, + ACTIONS(1055), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104056,10 +103534,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44613] = 3, + [43567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 14, + ACTIONS(2698), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104074,7 +103552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1527), 28, + ACTIONS(2702), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104103,12 +103581,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44663] = 4, + [43617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 1, - anon_sym_DOT, - ACTIONS(1705), 14, + ACTIONS(1033), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104123,7 +103599,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 27, + ACTIONS(1031), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104133,6 +103609,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -104151,16 +103628,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44715] = 4, + [43667] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2114), 1, + anon_sym_LT, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(1443), 14, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(2801), 1, + anon_sym_EQ, + STATE(1403), 1, + sym_type_arguments, + STATE(1418), 1, + sym_arguments, + ACTIONS(2132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -104171,17 +103661,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1441), 27, + ACTIONS(2136), 21, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -104198,15 +103683,167 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [44767] = 3, + [43733] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2860), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [43827] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2921), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [43921] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2114), 1, anon_sym_LT, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(2803), 1, + anon_sym_EQ, + STATE(1403), 1, + sym_type_arguments, + STATE(1418), 1, + sym_arguments, + ACTIONS(2132), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -104217,18 +103854,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1487), 28, + ACTIONS(2136), 21, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -104245,11 +103876,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [44817] = 3, + [43987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 14, + ACTIONS(935), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104264,7 +103894,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1503), 28, + ACTIONS(937), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104293,10 +103923,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44867] = 3, + [44037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1513), 14, + ACTIONS(1001), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104311,7 +103941,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1511), 28, + ACTIONS(1003), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104340,10 +103970,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44917] = 3, + [44087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 14, + ACTIONS(3233), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104358,7 +103988,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1411), 28, + ACTIONS(3235), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104387,99 +104017,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [44967] = 14, + [44137] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2910), 1, + anon_sym_QMARK, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3248), 1, + ACTIONS(3006), 1, anon_sym_LT, - STATE(2580), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + STATE(2625), 1, sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 12, + ACTIONS(2993), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 17, + ACTIONS(2912), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [45039] = 8, + [44229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3279), 1, - anon_sym_COMMA, - ACTIONS(3282), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 11, + ACTIONS(973), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 24, + ACTIONS(975), 28, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -104497,10 +104132,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45099] = 3, + [44279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 14, + ACTIONS(3237), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104515,7 +104150,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3287), 28, + ACTIONS(3239), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104544,14 +104179,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45149] = 3, + [44329] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3241), 1, anon_sym_LT, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2910), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -104562,18 +104219,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1495), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2912), 17, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -104587,14 +104237,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [44401] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3241), 1, + anon_sym_LT, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [45199] = 3, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2910), 9, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2912), 13, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [44479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 14, + ACTIONS(925), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104609,7 +104316,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 28, + ACTIONS(927), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104638,57 +104345,147 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45249] = 3, + [44529] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 14, - anon_sym_STAR, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2284), 1, + anon_sym_COMMA, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3248), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3250), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3252), 1, + anon_sym_AMP_AMP, + ACTIONS(3258), 1, anon_sym_AMP, + ACTIONS(3260), 1, anon_sym_PIPE, + ACTIONS(3264), 1, + anon_sym_STAR_STAR, + ACTIONS(3268), 1, + anon_sym_QMARK_QMARK, + STATE(2524), 1, + aux_sym_extends_clause_repeat1, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3229), 2, + anon_sym_LBRACE, + anon_sym_implements, + ACTIONS(3254), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(3244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3256), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3246), 4, + anon_sym_in, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1475), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3266), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44627] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2218), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2223), 1, anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(2910), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [45299] = 3, + ACTIONS(2912), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [44715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 14, + ACTIONS(3270), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104703,7 +104500,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1499), 28, + ACTIONS(2927), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104732,35 +104529,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45349] = 14, + [44765] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3248), 1, + ACTIONS(3088), 1, anon_sym_LT, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 12, + ACTIONS(2931), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -104772,7 +104568,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 17, + ACTIONS(2933), 17, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -104790,14 +104586,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [45421] = 3, + [44835] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2910), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3004), 4, anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2912), 8, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [44919] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3088), 1, anon_sym_LT, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2931), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -104808,18 +104690,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1479), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2933), 17, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -104833,16 +104708,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [45471] = 3, + [44991] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 15, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + STATE(2625), 1, + sym_type_arguments, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2805), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -104856,18 +104739,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2844), 27, + ACTIONS(2809), 21, sym__automatic_semicolon, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -104884,58 +104761,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [45521] = 4, + [45053] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(1409), 14, - anon_sym_STAR, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3006), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2910), 7, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1407), 27, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2912), 13, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [45573] = 3, + [45133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 14, + ACTIONS(3272), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -104950,7 +104841,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1507), 28, + ACTIONS(3274), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -104979,14 +104870,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45623] = 3, + [45183] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3241), 1, anon_sym_LT, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2910), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -104997,86 +104912,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1427), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2912), 16, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [45673] = 3, + [45257] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3006), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, anon_sym_AMP, + ACTIONS(3020), 1, anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1519), 28, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2908), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45351] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(2218), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2223), 1, anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3006), 1, + anon_sym_LT, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, anon_sym_AMP_AMP, + ACTIONS(3018), 1, + anon_sym_AMP, + ACTIONS(3020), 1, + anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2906), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [45723] = 3, + [45445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 14, + ACTIONS(1489), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105091,7 +105085,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 28, + ACTIONS(1487), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105120,10 +105114,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45773] = 3, + [45495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 14, + ACTIONS(3276), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105138,7 +105132,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1523), 28, + ACTIONS(3278), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105167,58 +105161,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45823] = 3, + [45545] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3006), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, anon_sym_AMP, + ACTIONS(3020), 1, anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1467), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2904), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [45873] = 3, + [45639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 14, + ACTIONS(2830), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -105232,16 +105249,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 28, + ACTIONS(2832), 27, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -105260,11 +105277,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [45923] = 3, + [45689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 14, + ACTIONS(3280), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105279,7 +105295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1483), 28, + ACTIONS(3282), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105308,10 +105324,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [45973] = 3, + [45739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 14, + ACTIONS(3284), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105326,7 +105342,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(965), 28, + ACTIONS(3286), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -105355,41 +105371,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46023] = 8, + [45789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3292), 1, - anon_sym_COMMA, - ACTIONS(3295), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 11, + ACTIONS(3288), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 24, + ACTIONS(3290), 28, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -105407,164 +105418,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [46083] = 24, + [45839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(2894), 1, - anon_sym_QMARK, - ACTIONS(3302), 1, - anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, - anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, + ACTIONS(2834), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2892), 4, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [46174] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(533), 1, - anon_sym_COMMA, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(2866), 1, - anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, - anon_sym_AMP, - ACTIONS(2878), 1, - anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3320), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym_type_arguments, - STATE(2698), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2864), 4, anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [46271] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2112), 1, anon_sym_LT, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - STATE(1318), 1, - sym_type_arguments, - STATE(1467), 1, - sym_arguments, - ACTIONS(2132), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -105575,12 +105437,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2136), 21, + ACTIONS(2836), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -105595,101 +105463,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [46334] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(2528), 1, - sym_identifier, - ACTIONS(2530), 1, - anon_sym_STAR, - ACTIONS(2532), 1, - anon_sym_LBRACE, - ACTIONS(2534), 1, - anon_sym_typeof, - ACTIONS(2538), 1, - anon_sym_LBRACK, - ACTIONS(2542), 1, - anon_sym_QMARK, - ACTIONS(2552), 1, - sym_number, - ACTIONS(2558), 1, - anon_sym_keyof, - ACTIONS(2560), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3322), 1, - anon_sym_LPAREN, - ACTIONS(3324), 1, - sym_this, - STATE(991), 1, - sym_nested_type_identifier, - STATE(3087), 1, - sym_nested_identifier, - ACTIONS(2548), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2556), 2, - sym_true, - sym_false, - STATE(1103), 2, - sym_string, - sym__number, - ACTIONS(2550), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1158), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [46419] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(3326), 1, - anon_sym_LT, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2934), 13, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [45889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3292), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -105700,10 +105483,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 16, + ACTIONS(2890), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -105717,10 +105508,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [46488] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [45939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 14, + ACTIONS(3294), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -105735,16 +105530,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(951), 27, - sym__automatic_semicolon, + ACTIONS(3296), 28, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -105763,333 +105558,316 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [46537] = 27, + anon_sym_implements, + [45989] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - ACTIONS(3329), 1, - anon_sym_COMMA, - ACTIONS(3331), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2625), 1, sym_type_arguments, - STATE(2674), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(2974), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46634] = 26, + [46083] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3333), 1, + ACTIONS(3298), 1, anon_sym_LBRACE, - STATE(2554), 1, + STATE(2560), 1, sym_type_arguments, ACTIONS(2981), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46729] = 27, + [46178] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(533), 1, - anon_sym_COMMA, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + STATE(2560), 1, + sym_type_arguments, + STATE(1648), 2, + sym_template_string, + sym_arguments, + ACTIONS(2805), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(2866), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(2868), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3335), 1, - anon_sym_RBRACK, - STATE(2525), 1, - sym_type_arguments, - STATE(2762), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2809), 19, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [46826] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [46239] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(3300), 1, + anon_sym_COMMA, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3302), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2963), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46919] = 21, + [46334] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(715), 1, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(611), 1, + anon_sym_QMARK, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2460), 1, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2462), 1, - anon_sym_STAR, - ACTIONS(2464), 1, + ACTIONS(2568), 1, anon_sym_LBRACE, - ACTIONS(2466), 1, - anon_sym_typeof, - ACTIONS(2470), 1, + ACTIONS(2570), 1, anon_sym_LBRACK, - ACTIONS(2474), 1, - anon_sym_QMARK, - ACTIONS(2484), 1, + ACTIONS(2576), 1, sym_number, - ACTIONS(2490), 1, - anon_sym_keyof, - ACTIONS(2492), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3341), 1, + ACTIONS(3304), 1, anon_sym_LPAREN, - ACTIONS(3343), 1, + ACTIONS(3306), 1, sym_this, - STATE(1473), 1, + STATE(1924), 1, sym_nested_type_identifier, - STATE(3109), 1, + STATE(3289), 1, sym_nested_identifier, - ACTIONS(2480), 2, + ACTIONS(1674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2488), 2, + ACTIONS(2580), 2, sym_true, sym_false, - STATE(1673), 2, + STATE(2376), 2, sym_string, sym__number, - ACTIONS(2482), 6, + ACTIONS(1676), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(1612), 14, + STATE(449), 14, sym__primary_type, sym_generic_type, sym_type_predicate, @@ -106104,103 +105882,35 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47004] = 25, + [46419] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3308), 1, anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, - anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2888), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2957), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2931), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [47097] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3326), 1, - anon_sym_LT, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2934), 12, - anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -106212,10 +105922,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 16, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(2933), 15, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -106229,7 +105937,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47168] = 14, + anon_sym_LBRACE_PIPE, + [46488] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -106240,23 +105949,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3326), 1, + ACTIONS(3311), 1, anon_sym_LT, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 12, + ACTIONS(2931), 12, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -106269,7 +105978,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 16, + ACTIONS(2933), 16, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, @@ -106286,441 +105995,278 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47239] = 26, + [46559] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(533), 1, + anon_sym_COMMA, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(3108), 1, - anon_sym_LBRACE, - STATE(2554), 1, + ACTIONS(3314), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2860), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + STATE(2810), 1, + aux_sym_array_repeat1, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47334] = 26, + [46656] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3311), 1, anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3046), 1, - anon_sym_QMARK, - ACTIONS(3048), 1, - anon_sym_AMP_AMP, - ACTIONS(3054), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_PIPE, - ACTIONS(3060), 1, - anon_sym_STAR_STAR, - ACTIONS(3064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3106), 1, - anon_sym_LBRACE, - STATE(2554), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2975), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(2931), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3052), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3040), 4, anon_sym_in, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3062), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [47429] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - anon_sym_BQUOTE, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(3034), 1, - anon_sym_as, - ACTIONS(3038), 1, - anon_sym_BANG, - ACTIONS(3042), 1, - anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3048), 1, - anon_sym_AMP_AMP, - ACTIONS(3054), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3056), 1, anon_sym_PIPE, - ACTIONS(3060), 1, - anon_sym_STAR_STAR, - ACTIONS(3064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3074), 1, - anon_sym_LBRACE, - STATE(2554), 1, - sym_type_arguments, - ACTIONS(2979), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3058), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 2, - sym_template_string, - sym_arguments, - ACTIONS(3032), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3052), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2933), 16, + anon_sym_RBRACE, + 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, - ACTIONS(3040), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3062), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47524] = 25, + [46727] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + ACTIONS(3316), 1, + anon_sym_LBRACE, + STATE(2560), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(2929), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3345), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2996), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47617] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(487), 1, - anon_sym_QMARK, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2566), 1, - sym_identifier, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3349), 1, - sym_this, - STATE(1923), 1, - sym_nested_type_identifier, - STATE(3193), 1, - sym_nested_identifier, - ACTIONS(1674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1682), 2, - sym_true, - sym_false, - STATE(442), 2, - sym_string, - sym__number, - ACTIONS(1676), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(434), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [47702] = 26, + [46822] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, - anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(3034), 1, - anon_sym_as, - ACTIONS(3038), 1, - anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(2124), 1, anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2272), 1, anon_sym_QMARK_DOT, - ACTIONS(3046), 1, - anon_sym_QMARK, - ACTIONS(3048), 1, - anon_sym_AMP_AMP, - ACTIONS(3054), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_PIPE, - ACTIONS(3060), 1, - anon_sym_STAR_STAR, - ACTIONS(3064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3265), 1, - anon_sym_LBRACE, - STATE(2554), 1, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(2803), 1, + anon_sym_EQ, + STATE(1451), 1, sym_type_arguments, - ACTIONS(2917), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 2, - sym_template_string, + STATE(1604), 1, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(2132), 14, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3052), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2136), 19, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3040), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3062), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47797] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [46887] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2124), 1, + anon_sym_LT, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2272), 1, anon_sym_QMARK_DOT, - ACTIONS(3351), 1, - anon_sym_LT, - STATE(2525), 1, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(2801), 1, + anon_sym_EQ, + STATE(1451), 1, sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, + STATE(1604), 1, sym_arguments, - ACTIONS(2934), 13, + ACTIONS(2132), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -106733,8 +106279,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 16, - anon_sym_LBRACE, + ACTIONS(2136), 19, + anon_sym_as, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106749,76 +106295,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [47866] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [46952] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(3292), 1, + anon_sym_LBRACE, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(2890), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + ACTIONS(3227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2963), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47959] = 25, + [47047] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -106829,162 +106379,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2957), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, + ACTIONS(2981), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48052] = 26, + [47140] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3354), 1, + ACTIONS(3344), 1, anon_sym_LBRACE, - STATE(2554), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2943), 2, + ACTIONS(2892), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48147] = 14, + [47235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3351), 1, - anon_sym_LT, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2934), 12, + ACTIONS(1037), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -106995,9 +106523,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 16, - anon_sym_LBRACE, + ACTIONS(1035), 27, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -107011,8 +106548,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [48218] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [47284] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -107023,218 +106562,225 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3351), 1, + ACTIONS(3322), 1, anon_sym_LT, - STATE(2525), 1, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 12, + ACTIONS(2974), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2936), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [48289] = 26, + [47377] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3356), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(2554), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2945), 2, + ACTIONS(2974), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48384] = 24, + [47472] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3048), 1, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - STATE(2554), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2894), 2, - anon_sym_LBRACE, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2910), 2, anon_sym_QMARK, - ACTIONS(3050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3058), 2, + anon_sym_PIPE, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2892), 3, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - ACTIONS(3032), 3, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48475] = 14, + ACTIONS(2912), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_implements, + [47559] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, - anon_sym_BANG, - ACTIONS(3044), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3358), 1, + ACTIONS(3311), 1, anon_sym_LT, - STATE(2554), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3066), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2894), 13, + ACTIONS(2931), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -107246,8 +106792,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 15, - anon_sym_COMMA, + ACTIONS(2933), 16, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -107261,245 +106809,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [48546] = 17, + [47628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, - anon_sym_BQUOTE, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(3034), 1, - anon_sym_as, - ACTIONS(3038), 1, - anon_sym_BANG, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3060), 1, - anon_sym_STAR_STAR, - ACTIONS(3358), 1, - anon_sym_LT, - STATE(2554), 1, - sym_type_arguments, - ACTIONS(3066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 2, - sym_template_string, - sym_arguments, - ACTIONS(3032), 3, + ACTIONS(3348), 1, + sym__automatic_semicolon, + ACTIONS(895), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3052), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2894), 10, - anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 11, + ACTIONS(893), 26, + anon_sym_as, anon_sym_COMMA, - 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_LBRACE_PIPE, - [48623] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - anon_sym_BQUOTE, - ACTIONS(2122), 1, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(2282), 1, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(3034), 1, - anon_sym_as, - ACTIONS(3038), 1, - anon_sym_BANG, - ACTIONS(3042), 1, - anon_sym_LT, - ACTIONS(3044), 1, anon_sym_QMARK_DOT, - ACTIONS(3048), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, - anon_sym_AMP, - ACTIONS(3060), 1, - anon_sym_STAR_STAR, - STATE(2554), 1, - sym_type_arguments, - ACTIONS(3058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 2, - sym_template_string, - sym_arguments, - ACTIONS(2894), 3, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3032), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3052), 3, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3040), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2892), 5, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - ACTIONS(3062), 5, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48710] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [47679] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3060), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - STATE(2554), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + ACTIONS(3262), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(2910), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2894), 4, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3040), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2892), 6, + ACTIONS(2912), 7, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - [48793] = 18, + anon_sym_implements, + [47762] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, - anon_sym_BANG, - ACTIONS(3042), 1, - anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3060), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - STATE(2554), 1, + ACTIONS(3350), 1, + anon_sym_LT, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2894), 8, - anon_sym_LBRACE, + ACTIONS(2910), 9, anon_sym_in, anon_sym_GT, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 11, + ACTIONS(2912), 12, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107510,39 +106978,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [48872] = 15, + anon_sym_implements, + [47839] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, - anon_sym_BANG, - ACTIONS(3044), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3060), 1, - anon_sym_STAR_STAR, - ACTIONS(3358), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3350), 1, anon_sym_LT, - STATE(2554), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3066), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2894), 13, + ACTIONS(2910), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -107554,7 +107019,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 14, + ACTIONS(2912), 16, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -107562,231 +107028,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [48945] = 26, + anon_sym_implements, + [47910] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, - anon_sym_BANG, - ACTIONS(3042), 1, - anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2910), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3248), 1, + anon_sym_LT, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3361), 1, - anon_sym_LBRACE, - STATE(2554), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2930), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, - sym_template_string, - sym_arguments, - ACTIONS(3032), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3052), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3040), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3062), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [49040] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(719), 1, - anon_sym_BQUOTE, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(3034), 1, - anon_sym_as, - ACTIONS(3038), 1, - anon_sym_BANG, - ACTIONS(3042), 1, - anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3046), 1, - anon_sym_QMARK, - ACTIONS(3048), 1, - anon_sym_AMP_AMP, - ACTIONS(3054), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_PIPE, - ACTIONS(3060), 1, - anon_sym_STAR_STAR, - ACTIONS(3064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3255), 1, - anon_sym_LBRACE, - STATE(2554), 1, - sym_type_arguments, - ACTIONS(2932), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(2912), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_implements, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49135] = 26, + [48001] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3042), 1, - anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3046), 1, - anon_sym_QMARK, - ACTIONS(3048), 1, - anon_sym_AMP_AMP, - ACTIONS(3054), 1, - anon_sym_AMP, - ACTIONS(3056), 1, - anon_sym_PIPE, - ACTIONS(3060), 1, - anon_sym_STAR_STAR, - ACTIONS(3064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3363), 1, - anon_sym_LBRACE, - STATE(2554), 1, + ACTIONS(3308), 1, + anon_sym_LT, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2941), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3058), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 2, - sym_template_string, - sym_arguments, - ACTIONS(3032), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3052), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3040), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3062), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [49230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2955), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(2951), 14, + ACTIONS(3227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1648), 2, + sym_template_string, + sym_arguments, + ACTIONS(2931), 13, anon_sym_STAR, - anon_sym_BANG, + anon_sym_LBRACE, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -107797,16 +107144,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2953), 25, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(2933), 15, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -107820,10 +107159,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [49281] = 25, + anon_sym_LBRACE_PIPE, + [48072] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -107834,197 +107171,126 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, - anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2981), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(2910), 7, anon_sym_in, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(2912), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + 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, - [49374] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(733), 1, - anon_sym_STAR, - ACTIONS(745), 1, - anon_sym_QMARK, - ACTIONS(763), 1, - anon_sym_keyof, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2596), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(2600), 1, - anon_sym_typeof, - ACTIONS(2604), 1, - anon_sym_LBRACK, - ACTIONS(2612), 1, - sym_number, - ACTIONS(3365), 1, - anon_sym_LPAREN, - ACTIONS(3367), 1, - sym_this, - STATE(1952), 1, - sym_nested_type_identifier, - STATE(3086), 1, - sym_nested_identifier, - ACTIONS(2608), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2616), 2, - sym_true, - sym_false, - STATE(1987), 2, - sym_string, - sym__number, - ACTIONS(2610), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1985), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [49459] = 26, + anon_sym_implements, + [48151] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3369), 1, + ACTIONS(3353), 1, anon_sym_LBRACE, - STATE(2554), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2890), 2, + ACTIONS(2894), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49554] = 25, + [48246] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -108035,132 +107301,187 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, - anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, - anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(3350), 1, + anon_sym_LT, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2860), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2910), 12, anon_sym_STAR, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3308), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2912), 15, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49647] = 25, + anon_sym_implements, + [48319] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(809), 1, + anon_sym_STAR, + ACTIONS(821), 1, + anon_sym_QMARK, + ACTIONS(839), 1, + anon_sym_keyof, + ACTIONS(841), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2642), 1, + sym_identifier, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, + anon_sym_typeof, + ACTIONS(2650), 1, + anon_sym_LBRACK, + ACTIONS(2658), 1, + sym_number, + ACTIONS(3355), 1, + anon_sym_LPAREN, + ACTIONS(3357), 1, + sym_this, + STATE(1950), 1, + sym_nested_type_identifier, + STATE(3090), 1, + sym_nested_identifier, + ACTIONS(2654), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2662), 2, + sym_true, + sym_false, + STATE(2003), 2, + sym_string, + sym__number, + ACTIONS(2656), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1982), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48404] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(3300), 1, + anon_sym_COMMA, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(2919), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2975), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49740] = 25, + [48499] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -108171,64 +107492,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3250), 1, + anon_sym_QMARK, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2979), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2908), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49833] = 25, + [48592] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -108239,157 +107560,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3250), 1, + anon_sym_QMARK, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2917), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [49926] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3371), 1, - sym__automatic_semicolon, - ACTIONS(903), 14, + ACTIONS(2921), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(901), 26, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [49977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1019), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(3246), 4, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1017), 27, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [50026] = 25, + [48685] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -108400,318 +107628,272 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3250), 1, + anon_sym_QMARK, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2943), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2906), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50119] = 25, + [48778] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3207), 1, + anon_sym_QMARK, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(3359), 1, + anon_sym_LBRACE, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(2904), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + ACTIONS(3227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2945), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50212] = 26, + [48873] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3151), 1, + anon_sym_LBRACE, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3373), 1, - anon_sym_LBRACE, - STATE(2554), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2969), 2, + ACTIONS(2906), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50307] = 14, + [48968] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, anon_sym_BQUOTE, + ACTIONS(533), 1, + anon_sym_COMMA, ACTIONS(2106), 1, anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3375), 1, + ACTIONS(2866), 1, anon_sym_LT, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2894), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2868), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, anon_sym_AMP, + ACTIONS(2878), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2892), 16, - anon_sym_RBRACE, - 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, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [50378] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3375), 1, - anon_sym_LT, - STATE(2525), 1, + ACTIONS(3361), 1, + anon_sym_RPAREN, + STATE(2638), 1, sym_type_arguments, + STATE(2729), 1, + aux_sym_array_repeat1, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3298), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2894), 9, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 12, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [50455] = 22, + [49065] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -108722,283 +107904,290 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3250), 1, + anon_sym_QMARK, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3316), 1, + ACTIONS(3260), 1, + anon_sym_PIPE, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - STATE(2525), 1, + ACTIONS(3268), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2894), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3314), 2, + ACTIONS(3254), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3298), 3, + ACTIONS(2904), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2892), 6, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [50542] = 20, + [49158] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3308), 1, anon_sym_LT, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - STATE(2525), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2888), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2894), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3298), 3, + ACTIONS(2931), 13, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(3308), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2933), 15, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(2892), 7, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [50625] = 26, + anon_sym_instanceof, + anon_sym_LBRACE_PIPE, + [49229] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3144), 1, + ACTIONS(3363), 1, anon_sym_LBRACE, - STATE(2554), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2967), 2, + ACTIONS(2908), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50720] = 26, + [49324] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(3250), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - ACTIONS(3378), 1, - anon_sym_LBRACE, - STATE(2554), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2973), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(2894), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50815] = 9, + [49417] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(761), 1, + anon_sym_BQUOTE, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3044), 1, + ACTIONS(3199), 1, + anon_sym_BANG, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - STATE(2554), 1, + ACTIONS(3221), 1, + anon_sym_STAR_STAR, + ACTIONS(3365), 1, + anon_sym_LT, + STATE(2560), 1, sym_type_arguments, - STATE(1633), 2, + ACTIONS(3227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2815), 15, + ACTIONS(2910), 13, anon_sym_STAR, anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -109009,75 +108198,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2819), 19, + ACTIONS(2912), 14, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [50876] = 13, + [49490] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3380), 1, + ACTIONS(3199), 1, + anon_sym_BANG, + ACTIONS(3203), 1, anon_sym_LT, - STATE(2554), 1, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3221), 1, + anon_sym_STAR_STAR, + STATE(2560), 1, sym_type_arguments, - ACTIONS(3066), 2, + ACTIONS(3219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 14, + ACTIONS(3193), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3213), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2910), 8, anon_sym_LBRACE, - anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 15, + ACTIONS(2912), 11, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -109085,7 +108274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_LBRACE_PIPE, - [50945] = 18, + [49569] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -109096,57 +108285,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3316), 1, + ACTIONS(3250), 1, + anon_sym_QMARK, + ACTIONS(3252), 1, + anon_sym_AMP_AMP, + ACTIONS(3258), 1, + anon_sym_AMP, + ACTIONS(3260), 1, + anon_sym_PIPE, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - STATE(2525), 1, + ACTIONS(3268), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3314), 2, + ACTIONS(3254), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3298), 3, + ACTIONS(2892), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2894), 7, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 12, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51024] = 15, + [49662] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1678), 1, + sym_number, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2668), 1, + sym_identifier, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2674), 1, + anon_sym_QMARK, + ACTIONS(2680), 1, + anon_sym_keyof, + ACTIONS(3304), 1, + anon_sym_LPAREN, + ACTIONS(3306), 1, + sym_this, + STATE(2110), 1, + sym_nested_type_identifier, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1682), 2, + sym_true, + sym_false, + STATE(431), 2, + sym_string, + sym__number, + ACTIONS(1676), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(449), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49747] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -109157,54 +108417,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3375), 1, + ACTIONS(3248), 1, anon_sym_LT, - STATE(2525), 1, + ACTIONS(3250), 1, + anon_sym_QMARK, + ACTIONS(3252), 1, + anon_sym_AMP_AMP, + ACTIONS(3258), 1, + anon_sym_AMP, + ACTIONS(3260), 1, + anon_sym_PIPE, + ACTIONS(3264), 1, + anon_sym_STAR_STAR, + ACTIONS(3268), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + ACTIONS(3254), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3262), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2894), 12, + ACTIONS(2890), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2892), 15, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(3246), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51097] = 25, + [49840] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -109215,64 +108485,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3250), 1, + anon_sym_QMARK, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2930), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2929), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51190] = 25, + [49933] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -109283,155 +108553,189 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3250), 1, + anon_sym_QMARK, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2932), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2860), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3266), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1023), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1021), 27, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51283] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [50075] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, anon_sym_BQUOTE, + ACTIONS(533), 1, + anon_sym_COMMA, ACTIONS(2106), 1, anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(3368), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, + STATE(2680), 1, + aux_sym_array_repeat1, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2941), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51376] = 11, + [50172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_LT, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_QMARK_DOT, - ACTIONS(2801), 1, - anon_sym_EQ, - STATE(1413), 1, - sym_type_arguments, - STATE(1565), 1, - sym_arguments, - ACTIONS(2132), 14, + ACTIONS(3370), 1, + sym__automatic_semicolon, + ACTIONS(1023), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -109442,9 +108746,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2136), 19, + ACTIONS(1021), 26, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -109461,99 +108773,147 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [51441] = 25, + [50223] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, anon_sym_BQUOTE, + ACTIONS(533), 1, + anon_sym_COMMA, ACTIONS(2106), 1, anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(3372), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, + STATE(2730), 1, + aux_sym_array_repeat1, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2890), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51534] = 11, + [50320] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(761), 1, + anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_LT, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2288), 1, + ACTIONS(3195), 1, + anon_sym_as, + ACTIONS(3199), 1, + anon_sym_BANG, + ACTIONS(3203), 1, + anon_sym_LT, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(2787), 1, - anon_sym_EQ, - STATE(1413), 1, + ACTIONS(3221), 1, + anon_sym_STAR_STAR, + STATE(2560), 1, sym_type_arguments, - STATE(1565), 1, + ACTIONS(3219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1648), 2, + sym_template_string, sym_arguments, - ACTIONS(2132), 14, + ACTIONS(3193), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3213), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2910), 4, anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3201), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3223), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2912), 6, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + [50403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(981), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -109564,9 +108924,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2136), 19, + ACTIONS(979), 27, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -109583,282 +108952,278 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [51599] = 25, + [50452] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, anon_sym_BQUOTE, + ACTIONS(533), 1, + anon_sym_COMMA, ACTIONS(2106), 1, anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(3374), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, + STATE(2680), 1, + aux_sym_array_repeat1, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2969), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51692] = 25, + [50549] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + ACTIONS(3227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2967), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2910), 3, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(2912), 5, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51785] = 26, + [50636] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(3250), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - ACTIONS(3383), 1, - anon_sym_LBRACE, - STATE(2554), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2963), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(2962), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51880] = 26, + [50729] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2122), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(3250), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - ACTIONS(3385), 1, - anon_sym_LBRACE, - STATE(2554), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2957), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3050), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(2923), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51975] = 25, + [50822] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -109869,113 +109234,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3250), 1, + anon_sym_QMARK, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2973), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3298), 3, + ACTIONS(2925), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52068] = 14, + [50915] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3044), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3380), 1, + ACTIONS(3221), 1, + anon_sym_STAR_STAR, + ACTIONS(3365), 1, anon_sym_LT, - STATE(2554), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(3066), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 13, + ACTIONS(3193), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3213), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2910), 10, anon_sym_LBRACE, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 15, + ACTIONS(2912), 11, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -109983,34 +109351,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_LBRACE_PIPE, - [52139] = 14, + [50992] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3044), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3380), 1, + ACTIONS(3365), 1, anon_sym_LT, - STATE(2554), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(3066), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1633), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 13, + ACTIONS(2910), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_in, @@ -110024,7 +109392,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 15, + ACTIONS(2912), 15, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -110040,10 +109408,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_LBRACE_PIPE, - [52210] = 3, + [51063] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(761), 1, + anon_sym_BQUOTE, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(3195), 1, + anon_sym_as, + ACTIONS(3199), 1, + anon_sym_BANG, + ACTIONS(3203), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3209), 1, + anon_sym_AMP_AMP, + ACTIONS(3215), 1, + anon_sym_AMP, + ACTIONS(3217), 1, + anon_sym_PIPE, + ACTIONS(3221), 1, + anon_sym_STAR_STAR, + STATE(2560), 1, + sym_type_arguments, + ACTIONS(2910), 2, + anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(3211), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1648), 2, + sym_template_string, + sym_arguments, + ACTIONS(2912), 3, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + ACTIONS(3193), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3213), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3201), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3223), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(957), 14, + ACTIONS(963), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -110058,7 +109493,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(955), 27, + ACTIONS(961), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -110086,7 +109521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [52259] = 25, + [51203] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -110097,77 +109532,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3250), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2872), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(2927), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3387), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(2864), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52352] = 5, + [51296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 2, + ACTIONS(1453), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1527), 6, + ACTIONS(1451), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - ACTIONS(905), 13, + ACTIONS(897), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -110181,7 +109616,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 20, + ACTIONS(899), 20, anon_sym_as, anon_sym_LPAREN, anon_sym_DOT, @@ -110202,161 +109637,342 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [52405] = 27, + [51349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(3380), 1, + sym_regex_flags, + ACTIONS(3376), 16, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(3378), 24, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(533), 1, + [51400] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(761), 1, + anon_sym_BQUOTE, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(3195), 1, + anon_sym_as, + ACTIONS(3199), 1, + anon_sym_BANG, + ACTIONS(3203), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3207), 1, + anon_sym_QMARK, + ACTIONS(3209), 1, + anon_sym_AMP_AMP, + ACTIONS(3215), 1, + anon_sym_AMP, + ACTIONS(3217), 1, + anon_sym_PIPE, + ACTIONS(3221), 1, + anon_sym_STAR_STAR, + ACTIONS(3225), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3382), 1, + anon_sym_LBRACE, + STATE(2560), 1, + sym_type_arguments, + ACTIONS(2921), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3211), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1648), 2, + sym_template_string, + sym_arguments, + ACTIONS(3193), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3213), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3201), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3223), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51495] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(761), 1, + anon_sym_BQUOTE, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(3195), 1, + anon_sym_as, + ACTIONS(3199), 1, + anon_sym_BANG, + ACTIONS(3203), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3207), 1, + anon_sym_QMARK, + ACTIONS(3209), 1, + anon_sym_AMP_AMP, + ACTIONS(3215), 1, + anon_sym_AMP, + ACTIONS(3217), 1, + anon_sym_PIPE, + ACTIONS(3221), 1, + anon_sym_STAR_STAR, + ACTIONS(3225), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3384), 1, + anon_sym_LBRACE, + STATE(2560), 1, + sym_type_arguments, + ACTIONS(2860), 2, anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3211), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1648), 2, + sym_template_string, + sym_arguments, + ACTIONS(3193), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3213), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3201), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3223), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51590] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(505), 1, + anon_sym_BQUOTE, ACTIONS(2106), 1, anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3250), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - ACTIONS(3389), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - STATE(2668), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(2938), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52502] = 26, + [51683] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2983), 1, + anon_sym_LBRACE, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3391), 1, - anon_sym_COMMA, - STATE(2580), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(2962), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3393), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1479), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2996), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52597] = 27, + [51778] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(533), 1, - anon_sym_COMMA, ACTIONS(2106), 1, anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -110374,11 +109990,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(3395), 1, + ACTIONS(3386), 1, + anon_sym_COMMA, + ACTIONS(3388), 1, anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - STATE(2674), 1, + STATE(2680), 1, aux_sym_array_repeat1, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -110389,7 +110007,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -110411,343 +110029,213 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52694] = 26, + [51875] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3010), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - ACTIONS(3391), 1, - anon_sym_COMMA, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3397), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2996), 4, + ACTIONS(3390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52789] = 26, + [51968] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2282), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3034), 1, + ACTIONS(3032), 1, + anon_sym_LBRACE, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(3038), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(3042), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3044), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3046), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3048), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3054), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3056), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3060), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3064), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3399), 1, - anon_sym_LBRACE, - STATE(2554), 1, + STATE(2560), 1, sym_type_arguments, - ACTIONS(3050), 2, + ACTIONS(2923), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3058), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3066), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3401), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - STATE(1633), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(3032), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3052), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3040), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3062), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52884] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2668), 1, - sym_identifier, - ACTIONS(2670), 1, - anon_sym_typeof, - ACTIONS(2674), 1, - anon_sym_QMARK, - ACTIONS(2680), 1, - anon_sym_keyof, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3349), 1, - sym_this, - STATE(2167), 1, - sym_nested_type_identifier, - STATE(3193), 1, - sym_nested_identifier, - ACTIONS(1674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1682), 2, - sym_true, - sym_false, - STATE(442), 2, - sym_string, - sym__number, - ACTIONS(1676), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(434), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [52969] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1678), 1, - sym_number, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2670), 1, - anon_sym_typeof, - ACTIONS(2682), 1, - sym_identifier, - ACTIONS(2686), 1, - anon_sym_QMARK, - ACTIONS(2692), 1, - anon_sym_keyof, - ACTIONS(3347), 1, - anon_sym_LPAREN, - ACTIONS(3349), 1, - sym_this, - STATE(486), 1, - sym_nested_type_identifier, - STATE(3193), 1, - sym_nested_identifier, - ACTIONS(1674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1682), 2, - sym_true, - sym_false, - STATE(442), 2, - sym_string, - sym__number, - ACTIONS(1676), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(434), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [53054] = 27, + [52063] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(533), 1, - anon_sym_COMMA, - ACTIONS(2106), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2987), 1, + anon_sym_LBRACE, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3403), 1, - anon_sym_RPAREN, - STATE(2525), 1, + STATE(2560), 1, sym_type_arguments, - STATE(2694), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, + ACTIONS(2925), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53151] = 27, + [52158] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -110760,9 +110248,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -110780,11 +110268,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(3405), 1, - anon_sym_RBRACK, - STATE(2525), 1, + ACTIONS(3392), 1, + anon_sym_RPAREN, + STATE(2638), 1, sym_type_arguments, - STATE(2668), 1, + STATE(2833), 1, aux_sym_array_repeat1, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -110795,7 +110283,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -110817,148 +110305,200 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53248] = 26, + [52255] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3205), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3391), 1, - anon_sym_COMMA, - STATE(2580), 1, + ACTIONS(3270), 1, + anon_sym_LBRACE, + STATE(2560), 1, sym_type_arguments, - ACTIONS(2921), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3006), 2, + ACTIONS(2927), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2996), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53343] = 25, + [52350] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2500), 1, + anon_sym_STAR, + ACTIONS(2502), 1, + anon_sym_LBRACE, + ACTIONS(2504), 1, + anon_sym_typeof, + ACTIONS(2508), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2512), 1, + anon_sym_QMARK, + ACTIONS(2522), 1, + sym_number, + ACTIONS(2528), 1, + anon_sym_keyof, + ACTIONS(2530), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3394), 1, + anon_sym_LPAREN, + ACTIONS(3396), 1, + sym_this, + STATE(1384), 1, + sym_nested_type_identifier, + STATE(3270), 1, + sym_nested_identifier, + ACTIONS(2518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2526), 2, + sym_true, + sym_false, + STATE(1457), 2, + sym_string, + sym__number, + ACTIONS(2520), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1546), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52435] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3398), 1, + anon_sym_LT, + ACTIONS(3401), 1, anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3403), 1, + anon_sym_is, + STATE(1550), 1, + sym_type_arguments, + ACTIONS(1581), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2866), 1, - anon_sym_LT, - ACTIONS(2868), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1579), 24, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3345), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [53436] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [52492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 14, + ACTIONS(901), 1, + sym__automatic_semicolon, + ACTIONS(893), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(897), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -110972,14 +110512,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(999), 27, - sym__automatic_semicolon, + ACTIONS(899), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -111000,451 +110536,369 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [53485] = 27, + [52545] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(533), 1, - anon_sym_COMMA, - ACTIONS(2106), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - ACTIONS(3407), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2625), 1, sym_type_arguments, - STATE(2804), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53582] = 27, + [52638] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(533), 1, - anon_sym_COMMA, - ACTIONS(2106), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - ACTIONS(3409), 1, - anon_sym_RBRACK, - STATE(2525), 1, + ACTIONS(3300), 1, + anon_sym_COMMA, + STATE(2625), 1, sym_type_arguments, - STATE(2674), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + ACTIONS(3405), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53679] = 7, + [52733] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3411), 1, - anon_sym_LT, - ACTIONS(3414), 1, + ACTIONS(761), 1, + anon_sym_BQUOTE, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3416), 1, - anon_sym_is, - STATE(1542), 1, - sym_type_arguments, - ACTIONS(1579), 13, - anon_sym_STAR, + ACTIONS(3195), 1, + anon_sym_as, + ACTIONS(3199), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3203), 1, + anon_sym_LT, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3207), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3209), 1, + anon_sym_AMP_AMP, + ACTIONS(3215), 1, anon_sym_AMP, + ACTIONS(3217), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1577), 24, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(3221), 1, + anon_sym_STAR_STAR, + ACTIONS(3225), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3407), 1, + anon_sym_LBRACE, + STATE(2560), 1, + sym_type_arguments, + ACTIONS(2938), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + anon_sym_LBRACE_PIPE, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3227), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1648), 2, + sym_template_string, + sym_arguments, + ACTIONS(3193), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3201), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [53736] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2494), 1, - sym_identifier, - ACTIONS(2496), 1, - anon_sym_STAR, - ACTIONS(2498), 1, - anon_sym_LBRACE, - ACTIONS(2500), 1, - anon_sym_typeof, - ACTIONS(2504), 1, - anon_sym_LBRACK, - ACTIONS(2508), 1, - anon_sym_QMARK, - ACTIONS(2518), 1, - sym_number, - ACTIONS(2524), 1, - anon_sym_keyof, - ACTIONS(2526), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3418), 1, - anon_sym_LPAREN, - ACTIONS(3420), 1, - sym_this, - STATE(1402), 1, - sym_nested_type_identifier, - STATE(3239), 1, - sym_nested_identifier, - ACTIONS(2514), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2522), 2, - sym_true, - sym_false, - STATE(1449), 2, - sym_string, - sym__number, - ACTIONS(2516), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(1538), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [53821] = 27, + [52828] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(533), 1, - anon_sym_COMMA, - ACTIONS(2106), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - ACTIONS(3422), 1, - anon_sym_RPAREN, - STATE(2525), 1, + STATE(2625), 1, sym_type_arguments, - STATE(2676), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [53918] = 4, + [52921] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 1, - sym_regex_flags, - ACTIONS(3424), 16, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3006), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3010), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3012), 1, + anon_sym_AMP_AMP, + ACTIONS(3018), 1, anon_sym_AMP, + ACTIONS(3020), 1, anon_sym_PIPE, + ACTIONS(3024), 1, + anon_sym_STAR_STAR, + ACTIONS(3028), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3014), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3426), 24, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3390), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3004), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [53969] = 21, + anon_sym_instanceof, + [53014] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 1, - anon_sym_STAR, - ACTIONS(521), 1, - anon_sym_keyof, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(651), 1, - anon_sym_QMARK, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1664), 1, - anon_sym_typeof, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(2570), 1, - anon_sym_LBRACK, - ACTIONS(2576), 1, - sym_identifier, - ACTIONS(2582), 1, - sym_number, - ACTIONS(3347), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(3349), 1, - sym_this, - STATE(1923), 1, - sym_nested_type_identifier, - STATE(3193), 1, - sym_nested_identifier, - ACTIONS(1674), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2584), 2, - sym_true, - sym_false, - STATE(2424), 2, - sym_string, - sym__number, - ACTIONS(1676), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(434), 14, - sym__primary_type, - sym_generic_type, - sym_type_predicate, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [54054] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3430), 1, - sym__automatic_semicolon, - ACTIONS(937), 14, + ACTIONS(2114), 1, + anon_sym_LT, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + STATE(1403), 1, + sym_type_arguments, + STATE(1418), 1, + sym_arguments, + ACTIONS(2132), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -111455,17 +110909,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(935), 26, + ACTIONS(2136), 21, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, - anon_sym_while, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -111482,10 +110931,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54105] = 3, + [53077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(937), 14, + ACTIONS(2968), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(2964), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111500,14 +110952,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(935), 27, + ACTIONS(2966), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -111528,77 +110978,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54154] = 27, + [53128] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(761), 1, anon_sym_BQUOTE, - ACTIONS(533), 1, - anon_sym_COMMA, - ACTIONS(2106), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(3195), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3199), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3203), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3207), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3217), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3221), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3225), 1, anon_sym_QMARK_QMARK, - ACTIONS(3432), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(3409), 1, + anon_sym_LBRACE, + STATE(2560), 1, sym_type_arguments, - STATE(2644), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, + ACTIONS(3211), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, + ACTIONS(3227), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + ACTIONS(3411), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + STATE(1648), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(3193), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3213), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3201), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3223), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54251] = 25, + [53223] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -111609,64 +111058,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(3386), 1, + anon_sym_COMMA, + ACTIONS(3413), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3090), 2, + STATE(2680), 1, + aux_sym_array_repeat1, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3080), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3401), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3082), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54344] = 27, + [53320] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -111679,9 +111130,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -111699,11 +111150,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(3434), 1, + ACTIONS(3415), 1, anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - STATE(2743), 1, + STATE(2730), 1, aux_sym_array_repeat1, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -111714,7 +111165,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -111736,79 +111187,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54441] = 26, + [53417] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3006), 1, anon_sym_LT, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3010), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3012), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3018), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3020), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3024), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3028), 1, anon_sym_QMARK_QMARK, - ACTIONS(3391), 1, + ACTIONS(3300), 1, anon_sym_COMMA, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(3014), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3022), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3436), 2, + ACTIONS(3417), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3016), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2996), 4, + ACTIONS(3004), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3026), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54536] = 3, + [53512] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(487), 1, + anon_sym_QMARK, + ACTIONS(521), 1, + anon_sym_keyof, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1664), 1, + anon_sym_typeof, + ACTIONS(1678), 1, + sym_number, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2584), 1, + sym_identifier, + ACTIONS(3304), 1, + anon_sym_LPAREN, + ACTIONS(3306), 1, + sym_this, + STATE(1924), 1, + sym_nested_type_identifier, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1682), 2, + sym_true, + sym_false, + STATE(431), 2, + sym_string, + sym__number, + ACTIONS(1676), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(449), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [53597] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1057), 14, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3419), 1, + anon_sym_EQ, + ACTIONS(1073), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -111823,18 +111346,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1055), 27, - sym__automatic_semicolon, + ACTIONS(1075), 23, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_while, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -111851,211 +111370,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [54585] = 25, + [53654] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3421), 1, + anon_sym_EQ, + ACTIONS(1073), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3084), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3086), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3088), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3100), 1, - anon_sym_STAR_STAR, - ACTIONS(3104), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3090), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2973), 3, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3092), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3082), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3102), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54678] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [53711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(967), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3084), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3086), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3088), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3096), 1, anon_sym_PIPE, - ACTIONS(3100), 1, - anon_sym_STAR_STAR, - ACTIONS(3104), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3090), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3098), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2967), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3092), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3082), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54771] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(965), 27, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(2138), 1, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3084), 1, - anon_sym_LT, - ACTIONS(3086), 1, - anon_sym_QMARK, - ACTIONS(3088), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_AMP, - ACTIONS(3096), 1, - anon_sym_PIPE, - ACTIONS(3100), 1, - anon_sym_STAR_STAR, - ACTIONS(3104), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3090), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3098), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2969), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3092), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3082), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3102), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [54864] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [53760] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -112066,64 +111477,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2890), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, + ACTIONS(2929), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54957] = 25, + [53853] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -112134,132 +111545,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2941), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, + ACTIONS(2890), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55050] = 25, + [53946] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(757), 1, + anon_sym_DQUOTE, + ACTIONS(759), 1, + anon_sym_SQUOTE, + ACTIONS(2460), 1, + sym_identifier, + ACTIONS(2462), 1, + anon_sym_STAR, + ACTIONS(2464), 1, + anon_sym_LBRACE, + ACTIONS(2466), 1, + anon_sym_typeof, + ACTIONS(2470), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3084), 1, - anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(2474), 1, anon_sym_QMARK, - ACTIONS(3088), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_AMP, - ACTIONS(3096), 1, - anon_sym_PIPE, - ACTIONS(3100), 1, - anon_sym_STAR_STAR, - ACTIONS(3104), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3090), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(2484), 1, + sym_number, + ACTIONS(2490), 1, + anon_sym_keyof, + ACTIONS(2492), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3423), 1, + anon_sym_LPAREN, + ACTIONS(3425), 1, + sym_this, + STATE(1488), 1, + sym_nested_type_identifier, + STATE(3111), 1, + sym_nested_identifier, + ACTIONS(2480), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2932), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3092), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3082), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3102), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55143] = 25, + ACTIONS(2488), 2, + sym_true, + sym_false, + STATE(1644), 2, + sym_string, + sym__number, + ACTIONS(2482), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1581), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54031] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -112270,122 +111677,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2930), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3092), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3082), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3102), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55236] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3100), 1, - anon_sym_STAR_STAR, - ACTIONS(3438), 1, - anon_sym_LT, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2894), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2892), 15, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2892), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [55309] = 18, + [54124] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -112396,125 +111745,196 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3100), 1, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - STATE(2525), 1, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3098), 2, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3080), 3, + ACTIONS(2894), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2894), 7, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [55388] = 25, + [54217] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(501), 1, + anon_sym_DQUOTE, + ACTIONS(503), 1, + anon_sym_SQUOTE, + ACTIONS(2532), 1, + sym_identifier, + ACTIONS(2534), 1, + anon_sym_STAR, + ACTIONS(2536), 1, + anon_sym_LBRACE, + ACTIONS(2538), 1, + anon_sym_typeof, + ACTIONS(2542), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_QMARK, + ACTIONS(2556), 1, + sym_number, + ACTIONS(2562), 1, + anon_sym_keyof, + ACTIONS(2564), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3429), 1, + sym_this, + STATE(1021), 1, + sym_nested_type_identifier, + STATE(3089), 1, + sym_nested_identifier, + ACTIONS(2552), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2560), 2, + sym_true, + sym_false, + STATE(1086), 2, + sym_string, + sym__number, + ACTIONS(2554), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(1071), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [54302] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3345), 3, - sym__automatic_semicolon, + ACTIONS(3390), 3, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2996), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55481] = 20, + [54395] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -112525,127 +111945,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3100), 1, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - STATE(2525), 1, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3098), 2, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2894), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3080), 3, + ACTIONS(2904), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2892), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_implements, - [55564] = 25, + [54488] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3004), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3010), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3012), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3006), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3014), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2906), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3345), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2996), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55657] = 25, + [54581] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -112656,77 +112081,95 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2981), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, + ACTIONS(2908), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55750] = 5, + [54674] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(909), 1, - sym__automatic_semicolon, - ACTIONS(901), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(905), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3431), 1, anon_sym_LT, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2910), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -112737,31 +112180,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(2912), 15, + anon_sym_RBRACE, + 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, - [55803] = 22, + [54747] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -112772,129 +112207,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3088), 1, - anon_sym_AMP_AMP, - ACTIONS(3094), 1, - anon_sym_AMP, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2894), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3080), 3, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(2910), 7, anon_sym_in, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(2912), 12, + anon_sym_RBRACE, + 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_instanceof, - ACTIONS(2892), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_implements, - [55890] = 25, + anon_sym_instanceof, + [54826] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2998), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3002), 1, - anon_sym_QMARK, - ACTIONS(3004), 1, - anon_sym_AMP_AMP, - ACTIONS(3010), 1, - anon_sym_AMP, - ACTIONS(3012), 1, - anon_sym_PIPE, - ACTIONS(3016), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3020), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3006), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3014), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3022), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2985), 3, + ACTIONS(2910), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3008), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3345), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2996), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3018), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55983] = 17, + ACTIONS(2912), 7, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [54909] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -112905,56 +112331,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3100), 1, - anon_sym_STAR_STAR, - ACTIONS(3438), 1, + ACTIONS(3322), 1, anon_sym_LT, - STATE(2525), 1, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + ACTIONS(2910), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3080), 3, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2894), 9, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [56060] = 14, + ACTIONS(2912), 6, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [54996] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -112965,118 +112396,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3438), 1, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3431), 1, anon_sym_LT, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2894), 12, + ACTIONS(3318), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2892), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_implements, - [56131] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3441), 1, - anon_sym_EQ, - ACTIONS(1035), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(2910), 9, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 23, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2912), 12, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [56188] = 7, + [55073] = 14, ACTIONS(3), 1, sym_comment, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2142), 1, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3443), 1, - anon_sym_EQ, - ACTIONS(1035), 14, - anon_sym_STAR, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3431), 1, anon_sym_LT, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2910), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -113087,12 +112485,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 23, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2912), 16, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_AMP_AMP, @@ -113108,10 +112502,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [56245] = 24, + [55144] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -113122,63 +112513,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2894), 1, + ACTIONS(2910), 1, anon_sym_QMARK, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3080), 3, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2892), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2912), 4, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_QMARK, - anon_sym_implements, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56336] = 25, + [55235] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -113189,64 +112580,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2945), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, + ACTIONS(2921), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56429] = 25, + [55328] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -113257,134 +112648,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2943), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3092), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3082), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3102), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56522] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(2866), 1, - anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, - anon_sym_AMP, - ACTIONS(2878), 1, - anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3329), 1, - anon_sym_COMMA, - ACTIONS(3445), 1, + ACTIONS(2860), 3, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_RBRACK, - STATE(2525), 1, - sym_type_arguments, - STATE(2674), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56619] = 25, + [55421] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -113395,64 +112716,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2860), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, + ACTIONS(2962), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56712] = 25, + [55514] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -113463,64 +112784,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2975), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, + ACTIONS(2923), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56805] = 25, + [55607] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -113531,134 +112852,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2917), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, + ACTIONS(2925), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56898] = 27, + [55700] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(533), 1, - anon_sym_COMMA, ACTIONS(2106), 1, anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - ACTIONS(3447), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - STATE(2674), 1, - aux_sym_array_repeat1, - ACTIONS(2872), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(2927), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56995] = 25, + [55793] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -113669,82 +112988,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3084), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3086), 1, + ACTIONS(3324), 1, anon_sym_QMARK, - ACTIONS(3088), 1, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3094), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3096), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3100), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3104), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3090), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3098), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2979), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3080), 3, + ACTIONS(2938), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3092), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3082), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3102), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57088] = 8, + [55886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(1513), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1511), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1035), 12, + ACTIONS(1033), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -113753,13 +113057,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(1031), 27, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, + anon_sym_while, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -113776,25 +113091,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [57146] = 9, + [55935] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_EQ, - ACTIONS(3451), 1, - anon_sym_in, - ACTIONS(3454), 1, - anon_sym_of, - ACTIONS(1035), 13, - anon_sym_STAR, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, + ACTIONS(3434), 1, anon_sym_LT, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2931), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -113805,12 +113131,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(2933), 16, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -113824,22 +113147,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [57206] = 5, + anon_sym_implements, + [56006] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(3456), 1, - sym__automatic_semicolon, - ACTIONS(903), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3434), 1, anon_sym_LT, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2931), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -113850,13 +113188,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(901), 23, - anon_sym_as, + ACTIONS(2933), 16, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -113870,184 +113204,229 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [57258] = 5, + anon_sym_implements, + [56077] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(533), 1, + anon_sym_COMMA, + ACTIONS(2106), 1, anon_sym_LPAREN, - STATE(1425), 1, - sym_arguments, - ACTIONS(2947), 14, - anon_sym_STAR, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2866), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2868), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, anon_sym_AMP, + ACTIONS(2878), 1, anon_sym_PIPE, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3437), 1, + anon_sym_RBRACK, + STATE(2638), 1, + sym_type_arguments, + STATE(2737), 1, + aux_sym_array_repeat1, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2949), 24, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2858), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2864), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [57310] = 25, + [56174] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3250), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3022), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3462), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3470), 2, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(2981), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57402] = 4, + [56267] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(2951), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3248), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3250), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3252), 1, + anon_sym_AMP_AMP, + ACTIONS(3258), 1, anon_sym_AMP, + ACTIONS(3260), 1, anon_sym_PIPE, + ACTIONS(3264), 1, + anon_sym_STAR_STAR, + ACTIONS(3268), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3254), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2953), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(3244), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3411), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3246), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [57452] = 26, + [56360] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, anon_sym_BQUOTE, + ACTIONS(533), 1, + anon_sym_COMMA, ACTIONS(2106), 1, anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -114065,12 +113444,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3486), 1, + ACTIONS(3439), 1, anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, + STATE(2680), 1, + aux_sym_array_repeat1, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -114080,7 +113459,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -114102,172 +113481,209 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57546] = 9, + [56457] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(533), 1, + anon_sym_COMMA, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3488), 1, - anon_sym_EQ, - ACTIONS(3490), 1, - anon_sym_in, - ACTIONS(3493), 1, - anon_sym_of, - ACTIONS(1035), 13, - anon_sym_STAR, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, + ACTIONS(2866), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2868), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, anon_sym_AMP, + ACTIONS(2878), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1037), 21, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3441), 1, + anon_sym_RBRACK, + STATE(2638), 1, + sym_type_arguments, + STATE(2749), 1, + aux_sym_array_repeat1, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [57606] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(1529), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 12, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2858), 3, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(907), 23, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2864), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [57658] = 25, + [56554] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3248), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3250), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3252), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3258), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3260), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3264), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3268), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2979), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3022), 2, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(3254), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3262), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(2974), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(3244), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3256), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3246), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3266), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57750] = 26, + [56647] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(451), 1, + anon_sym_STAR, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1678), 1, + sym_number, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(2570), 1, + anon_sym_LBRACK, + ACTIONS(2670), 1, + anon_sym_typeof, + ACTIONS(2682), 1, + sym_identifier, + ACTIONS(2686), 1, + anon_sym_QMARK, + ACTIONS(2692), 1, + anon_sym_keyof, + ACTIONS(3304), 1, + anon_sym_LPAREN, + ACTIONS(3306), 1, + sym_this, + STATE(497), 1, + sym_nested_type_identifier, + STATE(3289), 1, + sym_nested_identifier, + ACTIONS(1674), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1682), 2, + sym_true, + sym_false, + STATE(431), 2, + sym_string, + sym__number, + ACTIONS(1676), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(449), 14, + sym__primary_type, + sym_generic_type, + sym_type_predicate, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56732] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -114278,127 +113694,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3434), 1, anon_sym_LT, - ACTIONS(2868), 1, - anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, - anon_sym_AMP, - ACTIONS(2878), 1, - anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3495), 1, - anon_sym_RPAREN, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [57844] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(2124), 1, - anon_sym_LT, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_QMARK_DOT, - STATE(1413), 1, - sym_type_arguments, - STATE(1565), 1, - sym_arguments, - ACTIONS(2132), 14, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2136), 19, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [57906] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(3371), 1, - sym__automatic_semicolon, - ACTIONS(903), 14, + ACTIONS(2931), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -114409,15 +113722,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(901), 24, - anon_sym_as, + ACTIONS(2933), 16, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -114431,23 +113738,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [57958] = 26, + anon_sym_implements, + [56801] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, anon_sym_BQUOTE, + ACTIONS(533), 1, + anon_sym_COMMA, ACTIONS(2106), 1, anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -114465,12 +113772,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3497), 1, + ACTIONS(3443), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, + STATE(2646), 1, + aux_sym_array_repeat1, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -114480,7 +113787,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -114502,87 +113809,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58052] = 25, + [56898] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3499), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1479), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3445), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58144] = 25, + [56991] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, anon_sym_BQUOTE, + ACTIONS(533), 1, + anon_sym_COMMA, ACTIONS(2106), 1, anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -114600,8 +113910,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(3447), 1, + anon_sym_RPAREN, + STATE(2638), 1, sym_type_arguments, + STATE(2704), 1, + aux_sym_array_repeat1, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -114611,10 +113925,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3501), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -114636,82 +113947,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58236] = 25, + [57088] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2975), 2, + ACTIONS(2894), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58328] = 5, + [57180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 1, + ACTIONS(897), 1, + anon_sym_EQ, + ACTIONS(3348), 1, sym__automatic_semicolon, - ACTIONS(1021), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1025), 14, + ACTIONS(895), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -114726,9 +114036,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1027), 23, + ACTIONS(893), 24, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -114750,25 +114061,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58380] = 7, + [57232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3503), 1, + ACTIONS(3475), 1, + anon_sym_LPAREN, + ACTIONS(3478), 1, + anon_sym_COLON, + ACTIONS(3480), 2, anon_sym_LT, - ACTIONS(3506), 1, - anon_sym_DOT, - ACTIONS(3508), 1, - anon_sym_is, - STATE(1652), 1, - sym_type_arguments, - ACTIONS(1579), 14, + anon_sym_QMARK, + ACTIONS(2856), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -114776,11 +114085,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1577), 22, + ACTIONS(2494), 23, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114798,83 +114109,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [58436] = 26, + [57286] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3483), 1, + anon_sym_EQ, + ACTIONS(3485), 1, + anon_sym_in, + ACTIONS(3488), 1, + anon_sym_of, + ACTIONS(1073), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(2868), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(2870), 1, - anon_sym_AMP_AMP, - ACTIONS(2876), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(2882), 1, - anon_sym_STAR_STAR, - ACTIONS(2886), 1, - anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3510), 1, - anon_sym_RBRACK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2872), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(2858), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(2874), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 21, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58530] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1035), 14, + ACTIONS(2968), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(2964), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -114888,12 +114182,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 24, - sym__automatic_semicolon, + ACTIONS(2966), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -114913,27 +114205,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58580] = 9, + anon_sym_LBRACE_PIPE, + [57396] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3292), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3295), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1692), 3, + ACTIONS(897), 1, + anon_sym_EQ, + ACTIONS(3490), 1, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1035), 12, + ACTIONS(895), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -114941,13 +114223,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(893), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -114964,7 +114252,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58640] = 25, + anon_sym_LBRACE_PIPE, + [57448] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -114975,9 +114264,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -114995,7 +114284,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3492), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -115006,10 +114299,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3387), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -115031,18 +114321,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58732] = 5, + [57542] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1011), 1, - sym__automatic_semicolon, - ACTIONS(1003), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1007), 14, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(3496), 1, + anon_sym_in, + ACTIONS(3499), 1, + anon_sym_of, + ACTIONS(1073), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -115054,14 +114350,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1009), 23, + ACTIONS(1075), 21, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -115078,142 +114372,282 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [58784] = 25, + [57602] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3501), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2860), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58876] = 26, + [57696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, + STATE(1555), 1, + sym_type_arguments, + ACTIONS(1529), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1527), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2138), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57746] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_DOT, + STATE(1550), 1, + sym_type_arguments, + ACTIONS(1656), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1654), 24, + sym__automatic_semicolon, anon_sym_as, - ACTIONS(2821), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK_DOT, - ACTIONS(2862), 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, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57798] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3512), 1, - anon_sym_RPAREN, - STATE(2525), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2872), 2, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, + ACTIONS(3503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3471), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57890] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + sym__automatic_semicolon, + ACTIONS(941), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(945), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(947), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [58970] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [57942] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -115224,9 +114658,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -115244,11 +114678,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3514), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -115259,7 +114689,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + ACTIONS(3505), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -115281,14 +114714,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59064] = 5, + [58034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, - anon_sym_LPAREN, - STATE(1423), 1, - sym_arguments, - ACTIONS(2959), 14, + ACTIONS(959), 1, + sym__automatic_semicolon, + ACTIONS(951), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(955), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115303,11 +114737,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2961), 24, - sym__automatic_semicolon, + ACTIONS(957), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -115328,7 +114761,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59116] = 26, + [58086] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -115339,9 +114772,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -115359,11 +114792,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3516), 1, + ACTIONS(3507), 1, anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -115374,7 +114807,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -115396,91 +114829,199 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59210] = 26, + [58180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(1067), 1, + sym__automatic_semicolon, + ACTIONS(1059), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1063), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1065), 23, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2138), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [58232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3509), 1, + sym_regex_flags, + ACTIONS(3376), 16, + anon_sym_STAR, anon_sym_as, - ACTIONS(2821), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(3378), 23, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2862), 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, + 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, + [58282] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3518), 1, - anon_sym_RPAREN, - STATE(2525), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2872), 2, + ACTIONS(2938), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59304] = 6, + [58374] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3520), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(3523), 1, - anon_sym_COLON, - ACTIONS(3525), 2, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3511), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2848), 13, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2931), 12, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -115488,14 +115029,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2564), 23, + ACTIONS(2933), 15, sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -115509,18 +115045,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [59358] = 5, + [58444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(919), 1, + ACTIONS(995), 1, sym__automatic_semicolon, - ACTIONS(911), 2, + ACTIONS(987), 2, anon_sym_else, anon_sym_while, - ACTIONS(915), 14, + ACTIONS(991), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -115535,7 +115068,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(917), 23, + ACTIONS(993), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -115559,7 +115092,130 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [59410] = 26, + [58496] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3511), 1, + anon_sym_LT, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2931), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2933), 15, + sym__automatic_semicolon, + 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, + [58566] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, + anon_sym_LT, + ACTIONS(3455), 1, + anon_sym_QMARK, + ACTIONS(3457), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_AMP, + ACTIONS(3465), 1, + anon_sym_PIPE, + ACTIONS(3469), 1, + anon_sym_STAR_STAR, + ACTIONS(3473), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3459), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3467), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(3449), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3461), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3451), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3471), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58658] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -115570,9 +115226,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -115590,11 +115246,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3528), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(3516), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -115605,7 +115261,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -115627,121 +115283,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59504] = 5, + [58752] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(997), 1, - sym__automatic_semicolon, - ACTIONS(989), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(993), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3455), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3457), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_AMP, + ACTIONS(3465), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(995), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(3469), 1, + anon_sym_STAR_STAR, + ACTIONS(3473), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(2981), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3467), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(3449), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3451), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [59556] = 25, + [58844] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2981), 2, + ACTIONS(2974), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59648] = 26, + [58936] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -115752,9 +115428,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -115772,11 +115448,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3530), 1, - anon_sym_RPAREN, - STATE(2525), 1, + ACTIONS(3518), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -115787,7 +115463,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -115809,142 +115485,292 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59742] = 25, + [59030] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3511), 1, + anon_sym_LT, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2931), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3000), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2933), 15, + sym__automatic_semicolon, + 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, + [59098] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1073), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 24, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [59148] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2917), 2, + ACTIONS(2927), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59834] = 26, + [59240] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3532), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2872), 2, + ACTIONS(2925), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3461), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3451), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3471), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [59332] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(1493), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1491), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1073), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 18, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(2864), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2884), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59928] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [59390] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -115955,9 +115781,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -115975,11 +115801,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3534), 1, - anon_sym_RBRACK, - STATE(2525), 1, + ACTIONS(3520), 1, + anon_sym_COLON, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -115990,7 +115816,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -116012,74 +115838,121 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60022] = 25, + [59484] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2872), 2, + ACTIONS(2923), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3206), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1073), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3471), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [59576] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 1, + sym__automatic_semicolon, + ACTIONS(1039), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1043), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1045), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60114] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [59628] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -116090,9 +115963,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -116110,7 +115983,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3522), 1, + anon_sym_RPAREN, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -116121,10 +115998,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2992), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -116146,7 +116020,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60206] = 25, + [59722] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -116157,9 +116031,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -116177,7 +116051,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3524), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -116188,10 +116066,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3222), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -116213,75 +116088,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60298] = 26, + [59816] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2106), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(2866), 1, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(2868), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(2870), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(2876), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(2878), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(2882), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(2886), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3536), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2872), 2, + ACTIONS(2962), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(2880), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2858), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(2874), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2864), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2884), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60392] = 26, + [59908] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -116292,9 +116166,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -116312,11 +116186,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3538), 1, - anon_sym_RBRACK, - STATE(2525), 1, + ACTIONS(3526), 1, + anon_sym_RBRACE, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -116327,7 +116201,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -116349,19 +116223,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60486] = 5, + [60002] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 1, - sym__automatic_semicolon, - ACTIONS(925), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(929), 14, + ACTIONS(3528), 1, + anon_sym_LT, + ACTIONS(3531), 1, + anon_sym_DOT, + ACTIONS(3533), 1, + anon_sym_is, + STATE(1658), 1, + sym_type_arguments, + ACTIONS(1581), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -116372,13 +116249,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(931), 23, + ACTIONS(1579), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -116396,15 +116271,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60538] = 5, + anon_sym_LBRACE_PIPE, + [60058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(977), 1, + ACTIONS(919), 1, sym__automatic_semicolon, - ACTIONS(969), 2, + ACTIONS(911), 2, anon_sym_else, anon_sym_while, - ACTIONS(973), 14, + ACTIONS(915), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116419,7 +116295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(975), 23, + ACTIONS(917), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -116443,7 +116319,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60590] = 9, + [60110] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, @@ -116452,17 +116328,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(3279), 2, + ACTIONS(3127), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3282), 2, + ACTIONS(3130), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1491), 3, + ACTIONS(1696), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(1035), 12, + ACTIONS(1073), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116475,7 +116351,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(1075), 18, anon_sym_as, anon_sym_LPAREN, anon_sym_AMP_AMP, @@ -116494,15 +116370,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60650] = 5, + [60170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(949), 1, + ACTIONS(1057), 1, sym__automatic_semicolon, - ACTIONS(941), 2, + ACTIONS(1049), 2, anon_sym_else, anon_sym_while, - ACTIONS(945), 14, + ACTIONS(1053), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -116517,7 +116393,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(947), 23, + ACTIONS(1055), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -116541,56 +116417,207 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [60702] = 7, + [60222] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(3449), 1, - anon_sym_EQ, - ACTIONS(1035), 14, - anon_sym_STAR, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3455), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3457), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, anon_sym_AMP, + ACTIONS(3465), 1, anon_sym_PIPE, + ACTIONS(3469), 1, + anon_sym_STAR_STAR, + ACTIONS(3473), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(2860), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3459), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(3449), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3461), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3451), 4, + anon_sym_in, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 22, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3471), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60314] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, + anon_sym_LT, + ACTIONS(3455), 1, + anon_sym_QMARK, + ACTIONS(3457), 1, anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_AMP, + ACTIONS(3465), 1, + anon_sym_PIPE, + ACTIONS(3469), 1, + anon_sym_STAR_STAR, + ACTIONS(3473), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(2921), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3467), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(3449), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3451), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [60406] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2910), 1, + anon_sym_QMARK, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, + anon_sym_LT, + ACTIONS(3457), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_AMP, + ACTIONS(3465), 1, + anon_sym_PIPE, + ACTIONS(3469), 1, + anon_sym_STAR_STAR, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [60758] = 26, + ACTIONS(3459), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3467), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2912), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + ACTIONS(3449), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3461), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3451), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3471), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60496] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -116601,9 +116628,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -116621,11 +116648,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3540), 1, + ACTIONS(3535), 1, anon_sym_RBRACE, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -116636,7 +116663,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -116658,37 +116685,183 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60852] = 5, + [60590] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 1, - sym__automatic_semicolon, - ACTIONS(1059), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1063), 14, - anon_sym_STAR, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(2866), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(2868), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, anon_sym_AMP, + ACTIONS(2878), 1, anon_sym_PIPE, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3086), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2858), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2864), 4, + anon_sym_in, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1065), 23, + ACTIONS(2884), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60682] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, + anon_sym_LT, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, + anon_sym_AMP, + ACTIONS(2878), 1, + anon_sym_PIPE, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3000), 2, anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(2858), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(2874), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2864), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2884), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [60774] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2218), 1, anon_sym_LBRACK, + ACTIONS(2223), 1, anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, + ACTIONS(3537), 1, + anon_sym_LT, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(2910), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2912), 15, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -116702,10 +116875,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [60904] = 26, + [60844] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -116716,9 +116886,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -116736,11 +116906,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3542), 1, - anon_sym_COLON, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -116751,7 +116917,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + ACTIONS(3041), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -116773,54 +116942,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60998] = 5, + [60936] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - sym__automatic_semicolon, - ACTIONS(1069), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1073), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3469), 1, + anon_sym_STAR_STAR, + ACTIONS(3537), 1, anon_sym_LT, - anon_sym_GT, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(3449), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + ACTIONS(3461), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2910), 9, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1075), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2912), 11, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [61050] = 26, + [61012] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -116831,9 +117012,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -116851,11 +117032,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3544), 1, - anon_sym_RBRACE, - STATE(2525), 1, + ACTIONS(3540), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -116866,7 +117047,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -116888,254 +117069,139 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61144] = 25, + [61106] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3466), 1, - anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2943), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3022), 2, + ACTIONS(2910), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61236] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3546), 1, - sym_regex_flags, - ACTIONS(3424), 16, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3426), 23, + ACTIONS(2912), 5, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [61286] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3464), 1, - anon_sym_LT, - ACTIONS(3466), 1, - anon_sym_QMARK, - ACTIONS(3468), 1, - anon_sym_AMP_AMP, - ACTIONS(3474), 1, - anon_sym_AMP, - ACTIONS(3476), 1, - anon_sym_PIPE, - ACTIONS(3480), 1, - anon_sym_STAR_STAR, - ACTIONS(3484), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(2945), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3470), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3478), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(3458), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3472), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3460), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61378] = 25, + [61192] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3542), 1, + anon_sym_RPAREN, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3548), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1479), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61470] = 26, + [61286] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -117146,9 +117212,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -117166,11 +117232,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3550), 1, - anon_sym_RBRACK, - STATE(2525), 1, + ACTIONS(3544), 1, + anon_sym_RPAREN, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -117181,7 +117247,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -117203,7 +117269,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61564] = 26, + [61380] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -117214,9 +117280,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -117234,11 +117300,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3552), 1, + ACTIONS(3546), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -117249,7 +117315,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -117271,7 +117337,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61658] = 26, + [61474] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(939), 1, + sym__automatic_semicolon, + ACTIONS(931), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(935), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(937), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [61526] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -117282,9 +117395,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -117302,11 +117415,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3554), 1, + ACTIONS(3548), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -117317,7 +117430,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -117339,73 +117452,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61752] = 24, + [61620] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2894), 1, - anon_sym_QMARK, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3468), 1, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - STATE(2580), 1, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3550), 1, + anon_sym_RPAREN, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2892), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - ACTIONS(3458), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61842] = 26, + [61714] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -117416,9 +117531,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -117436,11 +117551,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3556), 1, + ACTIONS(3552), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -117451,7 +117566,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -117473,36 +117588,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61936] = 14, + [61808] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3558), 1, - anon_sym_LT, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2894), 12, + ACTIONS(1005), 1, + sym__automatic_semicolon, + ACTIONS(997), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1001), 14, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -117513,9 +117611,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 15, - sym__automatic_semicolon, + ACTIONS(1003), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -117529,7 +117632,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62006] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [61860] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -117540,9 +117646,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -117560,11 +117666,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3561), 1, + ACTIONS(3554), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -117575,7 +117681,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -117597,7 +117703,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62100] = 26, + [61954] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -117608,9 +117714,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -117628,11 +117734,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3563), 1, + ACTIONS(3556), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -117643,7 +117749,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -117665,12 +117771,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62194] = 4, + [62048] = 7, ACTIONS(3), 1, sym_comment, - STATE(1545), 1, - sym_type_arguments, - ACTIONS(1497), 14, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3483), 1, + anon_sym_EQ, + ACTIONS(1073), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117685,16 +117797,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1495), 25, + ACTIONS(1075), 22, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62104] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2218), 1, anon_sym_LBRACK, + ACTIONS(2223), 1, anon_sym_DOT, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, + ACTIONS(3494), 1, + anon_sym_EQ, + ACTIONS(1073), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 22, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -117711,137 +117869,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62244] = 17, + [62160] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3480), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, + anon_sym_LT, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, + anon_sym_AMP, + ACTIONS(2878), 1, + anon_sym_PIPE, + ACTIONS(2882), 1, anon_sym_STAR_STAR, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2917), 1, + anon_sym_COMMA, ACTIONS(3558), 1, - anon_sym_LT, - STATE(2580), 1, + anon_sym_RPAREN, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3022), 2, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2894), 9, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62320] = 22, + [62254] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3468), 1, - anon_sym_AMP_AMP, - ACTIONS(3474), 1, - anon_sym_AMP, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2894), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(2910), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - ACTIONS(3482), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62406] = 5, + ACTIONS(2912), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [62336] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, anon_sym_DOT, - STATE(1542), 1, - sym_type_arguments, - ACTIONS(1652), 14, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3133), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3136), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1427), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1073), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -117850,21 +118027,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1650), 24, - sym__automatic_semicolon, + ACTIONS(1075), 18, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -117881,19 +118050,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62458] = 5, + [62396] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1049), 1, - sym__automatic_semicolon, - ACTIONS(1041), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1045), 14, + ACTIONS(3560), 1, + anon_sym_LT, + STATE(1555), 1, + sym_type_arguments, + ACTIONS(1698), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -117904,9 +118071,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1047), 23, + ACTIONS(1696), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -117928,54 +118097,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [62510] = 5, + [62448] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(987), 1, - sym__automatic_semicolon, - ACTIONS(979), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(983), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2995), 1, + anon_sym_as, + ACTIONS(3002), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3453), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(3469), 1, + anon_sym_STAR_STAR, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(3030), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3467), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(3449), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + ACTIONS(3461), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(2910), 7, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(985), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2912), 11, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [62562] = 26, + [62526] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -117986,9 +118168,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -118006,11 +118188,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, - anon_sym_COMMA, - ACTIONS(3565), 1, - anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -118021,7 +118199,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + ACTIONS(3445), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -118043,34 +118224,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62656] = 13, + [62618] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1019), 1, + sym__automatic_semicolon, + ACTIONS(1011), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1015), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1017), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [62670] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(3000), 1, + ACTIONS(3002), 1, + anon_sym_BANG, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3567), 1, + ACTIONS(3469), 1, + anon_sym_STAR_STAR, + ACTIONS(3537), 1, anon_sym_LT, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 13, + ACTIONS(2910), 12, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_SLASH, @@ -118082,7 +118313,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 15, + ACTIONS(2912), 14, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -118091,190 +118322,244 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62724] = 25, + [62742] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2963), 2, + ACTIONS(2908), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62816] = 25, + [62834] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2957), 2, + ACTIONS(2906), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62908] = 14, + [62926] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3567), 1, + ACTIONS(3453), 1, anon_sym_LT, - STATE(2580), 1, + ACTIONS(3455), 1, + anon_sym_QMARK, + ACTIONS(3457), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_AMP, + ACTIONS(3465), 1, + anon_sym_PIPE, + ACTIONS(3469), 1, + anon_sym_STAR_STAR, + ACTIONS(3473), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3022), 2, + ACTIONS(2904), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + ACTIONS(3459), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3467), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 12, + ACTIONS(3449), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3461), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3471), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63018] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1453), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(897), 12, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2936), 15, + ACTIONS(899), 23, sym__automatic_semicolon, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -118288,197 +118573,259 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [62978] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [63070] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3567), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, anon_sym_LT, - STATE(2580), 1, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, + anon_sym_AMP, + ACTIONS(2878), 1, + anon_sym_PIPE, + ACTIONS(2882), 1, + anon_sym_STAR_STAR, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3563), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3022), 2, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1479), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2934), 12, + ACTIONS(2858), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2936), 15, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2864), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63048] = 25, + [63164] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3022), 2, + ACTIONS(2892), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3570), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63140] = 25, + [63256] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2973), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + ACTIONS(3565), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3471), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(977), 1, + sym__automatic_semicolon, + ACTIONS(969), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(973), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(975), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63232] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [63400] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -118489,9 +118836,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -118509,11 +118856,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3572), 1, + ACTIONS(3567), 1, anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -118524,7 +118871,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -118546,203 +118893,190 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63326] = 25, + [63494] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3569), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2967), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63418] = 25, + [63588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(929), 1, + sym__automatic_semicolon, + ACTIONS(921), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(925), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3466), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3468), 1, - anon_sym_AMP_AMP, - ACTIONS(3474), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3476), 1, anon_sym_PIPE, - ACTIONS(3480), 1, - anon_sym_STAR_STAR, - ACTIONS(3484), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(2969), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3470), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3478), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(3458), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3472), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(927), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3460), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63510] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [63640] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3480), 1, + ACTIONS(2868), 1, + anon_sym_QMARK, + ACTIONS(2870), 1, + anon_sym_AMP_AMP, + ACTIONS(2876), 1, + anon_sym_AMP, + ACTIONS(2878), 1, + anon_sym_PIPE, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - STATE(2580), 1, + ACTIONS(2886), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3571), 1, + anon_sym_RBRACK, + STATE(2638), 1, sym_type_arguments, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3478), 2, + ACTIONS(2872), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(2894), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3458), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(2892), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [63592] = 26, + [63734] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -118753,9 +119087,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -118773,11 +119107,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, - ACTIONS(3574), 1, + ACTIONS(3573), 1, anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -118788,7 +119122,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -118810,85 +119144,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63686] = 25, + [63828] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(505), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(2866), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(2868), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(2870), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(2876), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(2878), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(2882), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + ACTIONS(2917), 1, + anon_sym_COMMA, + ACTIONS(3575), 1, + anon_sym_RBRACE, + STATE(2638), 1, sym_type_arguments, - ACTIONS(2890), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(2872), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(2880), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(2858), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(2874), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(2864), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(2884), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63778] = 7, + [63922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(3488), 1, - anon_sym_EQ, - ACTIONS(1035), 14, + ACTIONS(2112), 1, + anon_sym_LPAREN, + STATE(1480), 1, + sym_arguments, + ACTIONS(2900), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -118903,13 +119234,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 22, + ACTIONS(2902), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -118926,15 +119259,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63834] = 5, + [63974] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3576), 1, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2124), 1, anon_sym_LT, - STATE(1545), 1, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2272), 1, + anon_sym_QMARK_DOT, + ACTIONS(2291), 1, + anon_sym_DOT, + STATE(1451), 1, sym_type_arguments, - ACTIONS(1694), 13, + STATE(1604), 1, + sym_arguments, + ACTIONS(2132), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -118947,16 +119291,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1692), 25, - sym__automatic_semicolon, + ACTIONS(2136), 19, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -118973,208 +119310,189 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [63886] = 25, + anon_sym_LBRACE_PIPE, + [64036] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2930), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + ACTIONS(3577), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63978] = 25, + [64128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, + STATE(1487), 1, + sym_arguments, + ACTIONS(2896), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3466), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3468), 1, - anon_sym_AMP_AMP, - ACTIONS(3474), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3476), 1, anon_sym_PIPE, - ACTIONS(3480), 1, - anon_sym_STAR_STAR, - ACTIONS(3484), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(2932), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2898), 24, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3470), 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3478), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(3458), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3472), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3460), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3482), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64070] = 25, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [64180] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3466), 1, + ACTIONS(3455), 1, anon_sym_QMARK, - ACTIONS(3468), 1, + ACTIONS(3457), 1, anon_sym_AMP_AMP, - ACTIONS(3474), 1, + ACTIONS(3463), 1, anon_sym_AMP, - ACTIONS(3476), 1, + ACTIONS(3465), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - ACTIONS(3484), 1, + ACTIONS(3473), 1, anon_sym_QMARK_QMARK, - STATE(2580), 1, + STATE(2625), 1, sym_type_arguments, - ACTIONS(2941), 2, + ACTIONS(2929), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(3022), 2, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3470), 2, + ACTIONS(3459), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3478), 2, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3460), 4, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3482), 5, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64162] = 26, + [64272] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -119185,9 +119503,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -119205,11 +119523,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, ACTIONS(3579), 1, anon_sym_RBRACK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -119220,7 +119538,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -119242,111 +119560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64256] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2987), 1, - anon_sym_as, - ACTIONS(2994), 1, - anon_sym_BANG, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3480), 1, - anon_sym_STAR_STAR, - ACTIONS(3558), 1, - anon_sym_LT, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(3022), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(2894), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2892), 14, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [64328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(967), 1, - sym__automatic_semicolon, - ACTIONS(959), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(963), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(965), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [64380] = 26, + [64366] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -119357,9 +119571,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, @@ -119377,11 +119591,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(2886), 1, anon_sym_QMARK_QMARK, - ACTIONS(2919), 1, + ACTIONS(2917), 1, anon_sym_COMMA, ACTIONS(3581), 1, - anon_sym_RBRACE, - STATE(2525), 1, + anon_sym_RPAREN, + STATE(2638), 1, sym_type_arguments, ACTIONS(2872), 2, anon_sym_PIPE_PIPE, @@ -119392,7 +119606,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, ACTIONS(2858), 3, @@ -119414,70 +119628,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64474] = 18, + [64460] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(2215), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(2247), 1, + ACTIONS(2223), 1, anon_sym_DOT, - ACTIONS(2987), 1, + ACTIONS(2995), 1, anon_sym_as, - ACTIONS(2994), 1, + ACTIONS(3002), 1, anon_sym_BANG, - ACTIONS(3000), 1, + ACTIONS(3008), 1, anon_sym_QMARK_DOT, - ACTIONS(3464), 1, + ACTIONS(3453), 1, anon_sym_LT, - ACTIONS(3480), 1, + ACTIONS(3455), 1, + anon_sym_QMARK, + ACTIONS(3457), 1, + anon_sym_AMP_AMP, + ACTIONS(3463), 1, + anon_sym_AMP, + ACTIONS(3465), 1, + anon_sym_PIPE, + ACTIONS(3469), 1, anon_sym_STAR_STAR, - STATE(2580), 1, + ACTIONS(3473), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, sym_type_arguments, - ACTIONS(3022), 2, + ACTIONS(2890), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3030), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3478), 2, + ACTIONS(3459), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3467), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, + STATE(1427), 2, sym_template_string, sym_arguments, - ACTIONS(3458), 3, + ACTIONS(3449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3472), 3, + ACTIONS(3461), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(2894), 7, + ACTIONS(3451), 4, anon_sym_in, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 11, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(3471), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [64552] = 3, + [64552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 14, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE, + ACTIONS(1726), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119486,13 +119711,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2932), 25, + ACTIONS(1724), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -119518,79 +119741,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64599] = 22, + [64603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(3585), 1, - anon_sym_RBRACE, - ACTIONS(3587), 1, - anon_sym_LBRACK, - ACTIONS(3589), 1, - anon_sym_async, - ACTIONS(3591), 1, - sym_number, - ACTIONS(3593), 1, - anon_sym_static, - ACTIONS(3599), 1, - sym_readonly, - STATE(1869), 1, - sym_accessibility_modifier, - STATE(2823), 1, - aux_sym_object_repeat1, - STATE(3256), 1, - sym_object, - STATE(3265), 1, - sym_array, - ACTIONS(3595), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3597), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2133), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2824), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(3583), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [64684] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2122), 1, - anon_sym_LPAREN, - STATE(1657), 1, - sym_arguments, - ACTIONS(2947), 15, + ACTIONS(1001), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -119604,9 +119759,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2949), 22, + ACTIONS(1003), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -119626,74 +119785,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [64735] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(109), 1, - anon_sym_STAR, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(3587), 1, - anon_sym_LBRACK, - ACTIONS(3591), 1, - sym_number, - ACTIONS(3603), 1, - anon_sym_RBRACE, - ACTIONS(3605), 1, - anon_sym_async, - ACTIONS(3607), 1, - anon_sym_static, - ACTIONS(3613), 1, - sym_readonly, - STATE(1869), 1, - sym_accessibility_modifier, - STATE(2641), 1, - aux_sym_object_repeat1, - STATE(3256), 1, - sym_object, - STATE(3265), 1, - sym_array, - ACTIONS(3609), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3611), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2133), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2738), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(3601), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [64820] = 3, + [64650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 14, + ACTIONS(3105), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119708,7 +119803,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2702), 25, + ACTIONS(3107), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -119734,16 +119829,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [64867] = 5, + [64697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, - anon_sym_LPAREN, - STATE(1658), 1, - sym_arguments, - ACTIONS(2959), 15, + ACTIONS(3151), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -119757,9 +119847,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2961), 22, + ACTIONS(2906), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -119779,77 +119873,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [64918] = 25, + [64744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3058), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3302), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3312), 1, anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3615), 1, - anon_sym_COLON, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3060), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [65009] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [64791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 14, + ACTIONS(3153), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119864,7 +119935,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2860), 25, + ACTIONS(3155), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -119890,10 +119961,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65056] = 3, + [64838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 14, + ACTIONS(3157), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119908,7 +119979,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3199), 25, + ACTIONS(3159), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -119934,16 +120005,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65103] = 6, + [64885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(1035), 14, + ACTIONS(3165), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119958,13 +120023,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 22, + ACTIONS(3167), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -119981,10 +120049,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65156] = 3, + [64932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 14, + ACTIONS(3169), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -119999,7 +120067,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2975), 25, + ACTIONS(3171), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120025,7 +120093,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65203] = 22, + [64979] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(109), 1, @@ -120038,45 +120106,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, - ACTIONS(3587), 1, - anon_sym_LBRACK, - ACTIONS(3591), 1, - sym_number, - ACTIONS(3619), 1, + ACTIONS(3589), 1, anon_sym_RBRACE, - ACTIONS(3621), 1, + ACTIONS(3591), 1, + anon_sym_LBRACK, + ACTIONS(3593), 1, anon_sym_async, - ACTIONS(3623), 1, + ACTIONS(3595), 1, + sym_number, + ACTIONS(3597), 1, anon_sym_static, - ACTIONS(3629), 1, + ACTIONS(3603), 1, sym_readonly, - STATE(1869), 1, + STATE(1873), 1, sym_accessibility_modifier, - STATE(2656), 1, + STATE(2797), 1, aux_sym_object_repeat1, - STATE(3256), 1, + STATE(3299), 1, sym_object, - STATE(3265), 1, + STATE(3300), 1, sym_array, - ACTIONS(3625), 2, + ACTIONS(3599), 2, anon_sym_get, anon_sym_set, - ACTIONS(3627), 3, + ACTIONS(3601), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2133), 3, + STATE(2135), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2654), 4, + STATE(2796), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(3617), 11, + ACTIONS(3587), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -120088,10 +120156,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [65288] = 3, + [65064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 14, + ACTIONS(3173), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120106,7 +120174,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3118), 25, + ACTIONS(3175), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120132,14 +120200,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65335] = 4, + [65111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 1, - sym_regex_flags, - ACTIONS(3424), 17, + ACTIONS(3052), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -120153,12 +120218,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_implements, - ACTIONS(3426), 21, - anon_sym_LBRACE, + ACTIONS(3054), 25, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -120174,13 +120240,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65384] = 3, + [65158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 14, + ACTIONS(3177), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120195,7 +120262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3122), 25, + ACTIONS(3179), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120221,34 +120288,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65431] = 3, + [65205] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 14, + ACTIONS(1491), 1, + anon_sym_COMMA, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(1493), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1009), 25, + ACTIONS(1075), 21, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -120265,10 +120337,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65478] = 3, + [65262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 14, + ACTIONS(3276), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120283,7 +120355,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1027), 25, + ACTIONS(3278), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120309,18 +120381,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65525] = 7, + [65309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3631), 1, - anon_sym_EQ, - ACTIONS(1035), 14, + ACTIONS(3280), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120335,47 +120399,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [65580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3275), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3277), 25, + ACTIONS(3282), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120401,10 +120425,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65627] = 3, + [65356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3124), 14, + ACTIONS(3284), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120419,7 +120443,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 25, + ACTIONS(3286), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120445,10 +120469,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65674] = 3, + [65403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 14, + ACTIONS(3294), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120463,7 +120487,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3078), 25, + ACTIONS(3296), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120489,34 +120513,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65721] = 3, + [65450] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 14, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2315), 1, + anon_sym_QMARK, + ACTIONS(3605), 1, + anon_sym_EQ, + ACTIONS(3607), 1, + anon_sym_RPAREN, + ACTIONS(2306), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3130), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3030), 25, - sym__automatic_semicolon, + ACTIONS(1075), 18, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -120533,10 +120565,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65768] = 3, + [65513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 14, + ACTIONS(3181), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120551,7 +120583,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(965), 25, + ACTIONS(3183), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120577,10 +120609,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65815] = 3, + [65560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 14, + ACTIONS(3185), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120595,7 +120627,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3130), 25, + ACTIONS(3187), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120621,11 +120653,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65862] = 3, + [65607] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 14, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2272), 1, + anon_sym_QMARK_DOT, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(3611), 1, + anon_sym_EQ, + ACTIONS(1073), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -120639,16 +120680,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3217), 25, - sym__automatic_semicolon, + ACTIONS(1075), 20, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -120665,39 +120700,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65909] = 8, + anon_sym_LBRACE_PIPE, + [65662] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, - anon_sym_COMMA, - ACTIONS(2138), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, + ACTIONS(2272), 1, anon_sym_QMARK_DOT, - ACTIONS(3282), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 11, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(3613), 1, + anon_sym_EQ, + ACTIONS(1073), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, + ACTIONS(1075), 20, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -120714,10 +120748,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [65966] = 3, + anon_sym_LBRACE_PIPE, + [65717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3244), 14, + ACTIONS(1465), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120732,7 +120767,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3246), 25, + ACTIONS(1463), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120758,10 +120793,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66013] = 3, + [65764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 14, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE, + ACTIONS(1713), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120770,13 +120809,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2979), 25, + ACTIONS(1711), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120802,91 +120839,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66060] = 11, + [65815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(3633), 1, - anon_sym_EQ, - ACTIONS(3635), 1, - anon_sym_RPAREN, - ACTIONS(2260), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3295), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 11, + ACTIONS(1461), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1037), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [66123] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1692), 1, - anon_sym_COMMA, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3295), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1035), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, + ACTIONS(1459), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -120903,18 +120883,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66180] = 7, + [65862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2801), 1, - anon_sym_EQ, - ACTIONS(1035), 14, + ACTIONS(1628), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120929,12 +120901,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, + ACTIONS(1626), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -120951,10 +120927,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66235] = 3, + [65909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 14, + ACTIONS(1469), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -120969,7 +120945,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3026), 25, + ACTIONS(1467), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -120995,15 +120971,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66282] = 4, + [65956] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3639), 1, - sym_regex_flags, - ACTIONS(3424), 17, + ACTIONS(1451), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(1453), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(897), 13, anon_sym_STAR, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -121011,17 +120990,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(3426), 21, + ACTIONS(899), 22, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -121036,14 +121013,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [66331] = 3, + [66007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 14, + ACTIONS(3139), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121058,7 +121035,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 25, + ACTIONS(3141), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -121084,10 +121061,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66378] = 3, + [66054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 14, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE, + ACTIONS(1730), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121096,13 +121077,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3072), 25, + ACTIONS(1728), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -121128,125 +121107,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66425] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3302), 1, - anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, - anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3641), 1, - anon_sym_RBRACK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66516] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - anon_sym_COMMA, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(1513), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1037), 21, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [66573] = 3, + [66105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 14, + ACTIONS(1481), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121261,7 +121125,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1095), 25, + ACTIONS(1479), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -121287,10 +121151,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66620] = 3, + [66152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 14, + ACTIONS(1485), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121305,7 +121169,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1491), 25, + ACTIONS(1483), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -121331,19 +121195,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66667] = 7, + [66199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3643), 1, - anon_sym_EQ, - ACTIONS(1035), 14, + ACTIONS(3380), 1, + sym_regex_flags, + ACTIONS(3376), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -121357,11 +121216,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, - anon_sym_as, + anon_sym_instanceof, + anon_sym_implements, + ACTIONS(3378), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -121374,15 +121237,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [66722] = 3, + [66248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 14, + ACTIONS(3074), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121397,7 +121258,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3226), 25, + ACTIONS(3076), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -121423,12 +121284,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66769] = 4, + [66295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, - anon_sym_LBRACK, - ACTIONS(1433), 14, + ACTIONS(3272), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121443,13 +121302,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1431), 24, + ACTIONS(3274), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -121468,12 +121328,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66818] = 3, + [66342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 16, + ACTIONS(2122), 1, + anon_sym_LPAREN, + STATE(1626), 1, + sym_arguments, + ACTIONS(2896), 15, anon_sym_STAR, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -121488,10 +121351,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2844), 23, + ACTIONS(2898), 22, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -121512,17 +121374,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [66865] = 3, + [66393] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 14, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2315), 1, + anon_sym_QMARK, + ACTIONS(3605), 1, + anon_sym_EQ, + ACTIONS(2306), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1073), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -121530,16 +121405,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3176), 25, - sym__automatic_semicolon, + ACTIONS(1075), 18, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -121556,13 +121424,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [66912] = 3, + [66452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2854), 16, + ACTIONS(3233), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -121576,10 +121442,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2856), 23, + ACTIONS(3235), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -121599,19 +121468,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [66959] = 7, + [66499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2787), 1, - anon_sym_EQ, - ACTIONS(1035), 14, + ACTIONS(3091), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121626,12 +121486,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, + ACTIONS(3093), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -121648,12 +121512,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67014] = 3, + [66546] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 16, + ACTIONS(2122), 1, + anon_sym_LPAREN, + STATE(1627), 1, + sym_arguments, + ACTIONS(2900), 15, anon_sym_STAR, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -121668,10 +121535,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2852), 23, + ACTIONS(2902), 22, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -121692,84 +121558,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [67061] = 25, + [66597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3302), 1, - anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, - anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3647), 1, - anon_sym_COLON, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67152] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(1529), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 13, + ACTIONS(1433), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -121777,15 +121570,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 22, + ACTIONS(1431), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -121804,20 +121602,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67203] = 7, + [66644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_QMARK_DOT, - ACTIONS(3649), 1, - anon_sym_EQ, - ACTIONS(1035), 15, + ACTIONS(3095), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -121831,10 +121620,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 20, + ACTIONS(3097), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -121851,11 +121646,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [67258] = 3, + [66691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 14, + ACTIONS(2964), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121870,7 +121664,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3253), 25, + ACTIONS(2966), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -121896,20 +121690,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67305] = 7, + [66738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_QMARK_DOT, - ACTIONS(3651), 1, - anon_sym_EQ, - ACTIONS(1035), 15, + ACTIONS(3109), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -121923,10 +121708,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 20, + ACTIONS(3111), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -121943,11 +121734,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [67360] = 3, + [66785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3132), 14, + ACTIONS(1097), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -121962,7 +121752,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3134), 25, + ACTIONS(1095), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -121988,10 +121778,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67407] = 3, + [66832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 14, + ACTIONS(1429), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122006,7 +121796,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3271), 25, + ACTIONS(1427), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -122032,32 +121822,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67454] = 3, + [66879] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3322), 1, + anon_sym_LT, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3615), 1, + anon_sym_COLON, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(3318), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3330), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 14, + ACTIONS(1451), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1453), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(897), 13, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3193), 25, - sym__automatic_semicolon, + ACTIONS(899), 21, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122076,10 +121933,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67501] = 3, + anon_sym_LBRACE_PIPE, + [67021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 14, + ACTIONS(3617), 1, + anon_sym_LBRACK, + ACTIONS(1525), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122094,14 +121954,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3138), 25, + ACTIONS(1523), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -122120,17 +121979,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67548] = 3, + [67070] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 14, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3619), 1, + anon_sym_EQ, + ACTIONS(3625), 1, + anon_sym_QMARK, + ACTIONS(3622), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1073), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -122138,16 +122010,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3242), 25, - sym__automatic_semicolon, + ACTIONS(1075), 18, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122164,34 +122029,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67595] = 3, + [67129] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 14, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3127), 1, + anon_sym_COMMA, + ACTIONS(3130), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1483), 25, + ACTIONS(1075), 21, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122208,15 +122078,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67642] = 5, + [67186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, - anon_sym_AMP, - ACTIONS(3655), 1, - anon_sym_PIPE, - ACTIONS(1739), 12, + ACTIONS(3490), 1, + sym__automatic_semicolon, + ACTIONS(895), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -122224,17 +122093,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1737), 25, - sym__automatic_semicolon, + ACTIONS(893), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -122254,10 +122122,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67693] = 3, + anon_sym_LBRACE_PIPE, + [67235] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 14, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3322), 1, + anon_sym_LT, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3628), 1, + anon_sym_COLON, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(3318), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3330), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(973), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122272,7 +122207,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 25, + ACTIONS(975), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -122298,34 +122233,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67740] = 3, + [67373] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1644), 14, + ACTIONS(1427), 1, + anon_sym_COMMA, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3136), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1642), 25, - sym__automatic_semicolon, + ACTIONS(1075), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122342,38 +122282,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67787] = 7, + [67430] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(1696), 1, + anon_sym_COMMA, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3657), 1, - anon_sym_EQ, - ACTIONS(1035), 14, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3130), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, - sym__automatic_semicolon, + ACTIONS(1075), 21, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122390,21 +122331,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67842] = 5, + [67487] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 1, - anon_sym_LT, - STATE(1646), 1, - sym_type_arguments, - ACTIONS(1694), 14, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3630), 1, + anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_QMARK, + ACTIONS(3633), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1073), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -122412,13 +122362,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1692), 23, + ACTIONS(1075), 18, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122435,11 +122381,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [67893] = 3, + [67546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 14, + ACTIONS(925), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122454,7 +122399,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3238), 25, + ACTIONS(927), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -122480,10 +122425,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67940] = 3, + [67593] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 14, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3322), 1, + anon_sym_LT, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3639), 1, + anon_sym_COLON, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(3318), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3330), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3123), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122498,7 +122509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3184), 25, + ACTIONS(3125), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -122524,10 +122535,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [67987] = 3, + [67731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 14, + ACTIONS(3070), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122542,7 +122553,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3160), 25, + ACTIONS(3072), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -122568,14 +122579,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68034] = 5, + [67778] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, - anon_sym_AMP, - ACTIONS(3655), 1, - anon_sym_PIPE, - ACTIONS(1729), 12, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(1073), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122584,20 +122597,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1727), 25, + ACTIONS(1075), 22, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122614,17 +122626,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68085] = 3, + [67831] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 14, - anon_sym_STAR, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, + ACTIONS(3322), 1, + anon_sym_LT, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3641), 1, + anon_sym_COLON, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(3318), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3330), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3320), 4, anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67922] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3643), 1, + anon_sym_LPAREN, + ACTIONS(3646), 1, + anon_sym_COLON, + ACTIONS(3648), 2, anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1073), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -122632,16 +122721,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1467), 25, + ACTIONS(1075), 20, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122658,17 +122742,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68132] = 3, + [67981] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 14, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3630), 1, + anon_sym_EQ, + ACTIONS(3636), 1, + anon_sym_QMARK, + ACTIONS(3651), 1, + anon_sym_COLON, + ACTIONS(3633), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1073), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -122676,16 +122774,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3180), 25, - sym__automatic_semicolon, + ACTIONS(1075), 18, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122702,36 +122793,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68179] = 5, + [68042] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3619), 1, + anon_sym_EQ, + ACTIONS(3625), 1, + anon_sym_QMARK, ACTIONS(3653), 1, - anon_sym_AMP, - ACTIONS(3655), 1, - anon_sym_PIPE, - ACTIONS(1725), 12, + anon_sym_COLON, + ACTIONS(3622), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1073), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1723), 25, - sym__automatic_semicolon, + ACTIONS(1075), 18, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122748,10 +122844,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68230] = 3, + [68103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 14, + ACTIONS(1646), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122766,7 +122862,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1523), 25, + ACTIONS(1644), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -122792,10 +122888,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68277] = 3, + [68150] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 14, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3655), 1, + anon_sym_EQ, + ACTIONS(1073), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122810,16 +122914,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 25, + ACTIONS(1075), 21, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122836,10 +122936,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68324] = 3, + [68205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 14, + ACTIONS(3066), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -122854,7 +122954,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3112), 25, + ACTIONS(3068), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -122880,22 +122980,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68371] = 5, + [68252] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3506), 1, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, anon_sym_DOT, - STATE(1652), 1, - sym_type_arguments, - ACTIONS(1652), 15, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2315), 1, + anon_sym_QMARK, + ACTIONS(2448), 1, + anon_sym_COLON, + ACTIONS(3605), 1, + anon_sym_EQ, + ACTIONS(2306), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1073), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -122903,12 +123012,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1650), 22, + ACTIONS(1075), 18, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -122925,13 +123031,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [68422] = 4, + [68313] = 4, ACTIONS(3), 1, sym_comment, - STATE(1646), 1, + STATE(1660), 1, sym_type_arguments, - ACTIONS(1497), 15, + ACTIONS(1529), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -122947,7 +123052,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1495), 23, + ACTIONS(1527), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -122971,7 +123076,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [68471] = 22, + [68362] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(109), 1, @@ -122984,45 +123089,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, - ACTIONS(3587), 1, - anon_sym_LBRACK, ACTIONS(3591), 1, + anon_sym_LBRACK, + ACTIONS(3595), 1, sym_number, - ACTIONS(3664), 1, + ACTIONS(3659), 1, anon_sym_RBRACE, - ACTIONS(3666), 1, + ACTIONS(3661), 1, anon_sym_async, - ACTIONS(3668), 1, + ACTIONS(3663), 1, anon_sym_static, - ACTIONS(3674), 1, + ACTIONS(3669), 1, sym_readonly, - STATE(1869), 1, + STATE(1873), 1, sym_accessibility_modifier, - STATE(2727), 1, + STATE(2670), 1, aux_sym_object_repeat1, - STATE(3256), 1, + STATE(3299), 1, sym_object, - STATE(3265), 1, + STATE(3300), 1, sym_array, - ACTIONS(3670), 2, + ACTIONS(3665), 2, anon_sym_get, anon_sym_set, - ACTIONS(3672), 3, + ACTIONS(3667), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2133), 3, + STATE(2135), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2725), 4, + STATE(2668), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(3662), 11, + ACTIONS(3657), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -123034,10 +123139,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [68556] = 3, + [68447] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3531), 1, + anon_sym_DOT, + STATE(1658), 1, + sym_type_arguments, + ACTIONS(1656), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1654), 22, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [68498] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3671), 1, + anon_sym_EQ, + ACTIONS(1073), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 21, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [68553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3232), 14, + ACTIONS(3139), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123052,7 +123251,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3234), 25, + ACTIONS(3141), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123078,10 +123277,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68603] = 3, + [68600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 14, + ACTIONS(3062), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123096,7 +123295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3172), 25, + ACTIONS(3064), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123122,10 +123321,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68650] = 3, + [68647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 14, + ACTIONS(3673), 1, + anon_sym_LT, + STATE(1660), 1, + sym_type_arguments, + ACTIONS(1698), 14, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [68698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123140,7 +123385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1654), 25, + ACTIONS(937), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123166,10 +123411,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68697] = 3, + [68745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 14, + ACTIONS(3043), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123184,7 +123429,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(917), 25, + ACTIONS(3045), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123210,31 +123455,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68744] = 10, + [68792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(2458), 1, - anon_sym_COLON, - ACTIONS(3633), 1, - anon_sym_EQ, - ACTIONS(2260), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1035), 13, + ACTIONS(1053), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -123242,9 +123473,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(1055), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123261,76 +123499,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68805] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3302), 1, - anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, - anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3676), 1, - anon_sym_RBRACK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68896] = 3, + [68839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 14, + ACTIONS(915), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123345,7 +123517,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3287), 25, + ACTIONS(917), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123371,16 +123543,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [68943] = 6, + [68886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 1, - anon_sym_LBRACE, - ACTIONS(3680), 1, - anon_sym_DOT, - STATE(1685), 1, - sym_statement_block, - ACTIONS(895), 14, + ACTIONS(1441), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123395,11 +123561,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(893), 22, + ACTIONS(1439), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -123417,15 +123587,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [68996] = 5, + [68933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3678), 1, - anon_sym_LBRACE, - STATE(1685), 1, - sym_statement_block, - ACTIONS(895), 14, + ACTIONS(3292), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123440,10 +123605,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(893), 23, + ACTIONS(2890), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -123463,11 +123631,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [69047] = 3, + [68980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 14, + ACTIONS(3270), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123482,7 +123649,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(995), 25, + ACTIONS(2927), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123508,13 +123675,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69094] = 3, + [69027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 16, + ACTIONS(1043), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -123528,10 +123693,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2825), 23, + ACTIONS(1045), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -123551,32 +123719,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [69141] = 10, + [69074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3682), 1, - anon_sym_EQ, - ACTIONS(3688), 1, - anon_sym_COLON, - ACTIONS(3690), 1, - anon_sym_QMARK, - ACTIONS(3685), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1035), 13, + ACTIONS(2987), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -123584,9 +123737,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(2925), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123603,10 +123763,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69202] = 3, + [69121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 14, + ACTIONS(2989), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123621,7 +123781,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3152), 25, + ACTIONS(2991), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123647,31 +123807,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69249] = 10, + [69168] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3693), 1, - anon_sym_EQ, - ACTIONS(3699), 1, - anon_sym_COLON, - ACTIONS(3701), 1, - anon_sym_QMARK, - ACTIONS(3696), 2, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1035), 13, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(3591), 1, + anon_sym_LBRACK, + ACTIONS(3595), 1, + sym_number, + ACTIONS(3678), 1, + anon_sym_RBRACE, + ACTIONS(3680), 1, + anon_sym_async, + ACTIONS(3682), 1, + anon_sym_static, + ACTIONS(3688), 1, + sym_readonly, + STATE(1873), 1, + sym_accessibility_modifier, + STATE(2692), 1, + aux_sym_object_repeat1, + STATE(3299), 1, + sym_object, + STATE(3300), 1, + sym_array, + ACTIONS(3684), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3686), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2135), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2686), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(3676), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [69253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1445), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -123679,9 +123888,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(1443), 25, + sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -123698,10 +123914,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69310] = 3, + [69300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(929), 14, + ACTIONS(3119), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123716,7 +123932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(931), 25, + ACTIONS(3121), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123742,14 +123958,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69357] = 4, + [69347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3456), 1, - sym__automatic_semicolon, - ACTIONS(903), 15, + ACTIONS(1449), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -123763,10 +123976,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(901), 23, + ACTIONS(1447), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -123786,11 +124002,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [69406] = 3, + [69394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(973), 14, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE, + ACTIONS(1738), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123799,13 +124018,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(975), 25, + ACTIONS(1736), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123831,54 +124048,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69453] = 3, + [69445] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 14, - anon_sym_STAR, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3322), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3324), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, anon_sym_AMP, + ACTIONS(3334), 1, anon_sym_PIPE, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3690), 1, + anon_sym_RBRACK, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1519), 25, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(3318), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [69500] = 3, + [69536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 14, + ACTIONS(3032), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123893,7 +124132,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3148), 25, + ACTIONS(2923), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123919,10 +124158,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69547] = 3, + [69583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 14, + ACTIONS(3034), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123937,7 +124176,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1427), 25, + ACTIONS(3036), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -123963,10 +124202,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69594] = 3, + [69630] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 14, + ACTIONS(3583), 1, + anon_sym_AMP, + ACTIONS(3585), 1, + anon_sym_PIPE, + ACTIONS(1748), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -123975,13 +124218,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1507), 25, + ACTIONS(1746), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124007,14 +124248,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69641] = 5, + [69681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, - anon_sym_AMP, - ACTIONS(3655), 1, - anon_sym_PIPE, - ACTIONS(1713), 12, + ACTIONS(3288), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124023,11 +124260,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 25, + ACTIONS(3290), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124053,14 +124292,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69692] = 5, + [69728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3653), 1, + ACTIONS(3049), 1, + anon_sym_DOT, + ACTIONS(1409), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3655), 1, anon_sym_PIPE, - ACTIONS(1735), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1407), 24, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [69777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1473), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124069,11 +124349,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 25, + ACTIONS(1471), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124099,13 +124381,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [69743] = 3, + [69824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 16, + ACTIONS(1457), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124119,10 +124399,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2836), 23, + ACTIONS(1455), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -124142,8 +124425,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [69790] = 25, + [69871] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -124154,68 +124436,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3099), 1, + anon_sym_RBRACE, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - ACTIONS(3704), 1, - anon_sym_COLON, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3298), 3, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69881] = 3, + [69962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 16, + ACTIONS(2983), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124229,10 +124509,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2840), 23, + ACTIONS(2962), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -124252,13 +124535,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [69928] = 4, + [70009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, - anon_sym_DOT, - ACTIONS(1409), 14, + ACTIONS(1477), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124273,7 +124553,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1407), 24, + ACTIONS(1475), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124281,49 +124561,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [69977] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3706), 1, - sym__automatic_semicolon, - ACTIONS(937), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(935), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -124342,14 +124579,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [70026] = 3, + [70056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 16, + ACTIONS(955), 14, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124363,10 +124597,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 23, + ACTIONS(957), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -124386,11 +124623,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [70073] = 3, + [70103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 14, + ACTIONS(2698), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124405,7 +124641,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1479), 25, + ACTIONS(2702), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124431,10 +124667,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70120] = 3, + [70150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 14, + ACTIONS(945), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124449,7 +124685,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1499), 25, + ACTIONS(947), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124475,11 +124711,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70167] = 3, + [70197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 14, + ACTIONS(2830), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124493,13 +124731,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1475), 25, - sym__automatic_semicolon, + ACTIONS(2832), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -124519,10 +124754,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70214] = 3, + anon_sym_LBRACE_PIPE, + [70244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 14, + ACTIONS(3237), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124537,7 +124773,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(947), 25, + ACTIONS(3239), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124563,107 +124799,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70261] = 9, + [70291] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, ACTIONS(2138), 1, anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2142), 1, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, - ACTIONS(3693), 1, - anon_sym_EQ, - ACTIONS(3701), 1, - anon_sym_QMARK, - ACTIONS(3696), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1035), 13, - anon_sym_STAR, + ACTIONS(2862), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(3322), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, anon_sym_AMP, + ACTIONS(3334), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1037), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(3692), 1, + anon_sym_COLON, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [70320] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1527), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(1529), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(905), 13, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(3318), 3, anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(907), 21, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [70371] = 3, + [70382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 14, + ACTIONS(2848), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124677,13 +124885,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(985), 25, - sym__automatic_semicolon, + ACTIONS(2850), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -124703,11 +124908,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70418] = 3, + anon_sym_LBRACE_PIPE, + [70429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 14, + ACTIONS(2852), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -124721,13 +124929,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 25, - sym__automatic_semicolon, + ACTIONS(2854), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -124747,10 +124952,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70465] = 3, + anon_sym_LBRACE_PIPE, + [70476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 14, + ACTIONS(3189), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124765,7 +124971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 25, + ACTIONS(3191), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124791,10 +124997,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70512] = 3, + [70523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1045), 14, + ACTIONS(1063), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -124809,7 +125015,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1047), 25, + ACTIONS(1065), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -124835,10 +125041,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70559] = 3, + [70570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 16, + ACTIONS(2856), 16, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -124855,7 +125061,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2564), 23, + ACTIONS(2494), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -124879,139 +125085,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [70606] = 22, + [70617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, + ACTIONS(991), 14, anon_sym_STAR, - ACTIONS(113), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(993), 25, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(3587), 1, - anon_sym_LBRACK, - ACTIONS(3591), 1, - sym_number, - ACTIONS(3710), 1, anon_sym_RBRACE, - ACTIONS(3712), 1, - anon_sym_async, - ACTIONS(3714), 1, - anon_sym_static, - ACTIONS(3720), 1, - sym_readonly, - STATE(1869), 1, - sym_accessibility_modifier, - STATE(2800), 1, - aux_sym_object_repeat1, - STATE(3256), 1, - sym_object, - STATE(3265), 1, - sym_array, - ACTIONS(3716), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3718), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2133), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2808), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(3708), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [70691] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(2138), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3195), 1, - anon_sym_RBRACE, - ACTIONS(3302), 1, - anon_sym_LT, - ACTIONS(3304), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, - anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70782] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [70664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3144), 14, + ACTIONS(1612), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125026,7 +125147,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2967), 25, + ACTIONS(1610), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125052,10 +125173,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70829] = 3, + [70711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 14, + ACTIONS(3101), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125070,7 +125191,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2953), 25, + ACTIONS(3103), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125096,76 +125217,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [70876] = 25, + [70758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, + ACTIONS(3161), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3302), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3312), 1, anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3722), 1, - anon_sym_COLON, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3163), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70967] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [70805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 14, + ACTIONS(1015), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125180,7 +125279,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3142), 25, + ACTIONS(1017), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125206,11 +125305,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71014] = 3, + [70852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1073), 14, + ACTIONS(3694), 1, + sym_regex_flags, + ACTIONS(3376), 17, anon_sym_STAR, + anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125224,13 +125327,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1075), 25, - sym__automatic_semicolon, - anon_sym_as, + anon_sym_instanceof, + ACTIONS(3378), 21, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -125246,22 +125346,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71061] = 7, + anon_sym_LBRACE_PIPE, + [70901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(3724), 1, - anon_sym_EQ, - ACTIONS(1035), 14, + ACTIONS(3147), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125276,12 +125368,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, + ACTIONS(3149), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125298,28 +125394,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71116] = 9, + [70948] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(3726), 1, - anon_sym_LPAREN, - ACTIONS(3729), 1, - anon_sym_COLON, - ACTIONS(3731), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1035), 12, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3696), 1, + anon_sym_EQ, + ACTIONS(1073), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -125327,11 +125420,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 20, - sym__automatic_semicolon, + ACTIONS(1075), 21, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125348,10 +125441,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71175] = 3, + anon_sym_implements, + [71003] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 14, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3698), 1, + anon_sym_EQ, + ACTIONS(1073), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125366,16 +125468,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1527), 25, - sym__automatic_semicolon, + ACTIONS(1075), 21, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125392,12 +125489,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71222] = 4, + anon_sym_implements, + [71058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 1, - anon_sym_DOT, - ACTIONS(1705), 14, + ACTIONS(2968), 1, + anon_sym_EQ_GT, + ACTIONS(2964), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125412,14 +125510,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 24, - sym__automatic_semicolon, + ACTIONS(2966), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -125437,35 +125535,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71271] = 4, + [71107] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, + ACTIONS(2218), 1, anon_sym_LBRACK, - ACTIONS(1443), 14, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3133), 1, + anon_sym_COMMA, + ACTIONS(3136), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1441), 24, + ACTIONS(1075), 21, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125482,11 +125584,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71320] = 3, + [71164] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(3591), 1, + anon_sym_LBRACK, + ACTIONS(3595), 1, + sym_number, + ACTIONS(3702), 1, + anon_sym_RBRACE, + ACTIONS(3704), 1, + anon_sym_async, + ACTIONS(3706), 1, + anon_sym_static, + ACTIONS(3712), 1, + sym_readonly, + STATE(1873), 1, + sym_accessibility_modifier, + STATE(2792), 1, + aux_sym_object_repeat1, + STATE(3299), 1, + sym_object, + STATE(3300), 1, + sym_array, + ACTIONS(3708), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2135), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2795), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(3700), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [71249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 14, + ACTIONS(897), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125500,13 +125667,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1487), 25, - sym__automatic_semicolon, + ACTIONS(899), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -125526,10 +125690,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71367] = 3, + anon_sym_LBRACE_PIPE, + [71296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 14, + ACTIONS(3143), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125544,7 +125709,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1503), 25, + ACTIONS(3145), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125570,11 +125735,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71414] = 3, + [71343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1513), 14, + ACTIONS(3714), 1, + sym__automatic_semicolon, + ACTIONS(1023), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125588,13 +125756,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1511), 25, - sym__automatic_semicolon, + ACTIONS(1021), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -125614,11 +125779,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71461] = 3, + anon_sym_LBRACE_PIPE, + [71392] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(109), 1, + anon_sym_STAR, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(3591), 1, + anon_sym_LBRACK, + ACTIONS(3595), 1, + sym_number, + ACTIONS(3718), 1, + anon_sym_RBRACE, + ACTIONS(3720), 1, + anon_sym_async, + ACTIONS(3722), 1, + anon_sym_static, + ACTIONS(3728), 1, + sym_readonly, + STATE(1873), 1, + sym_accessibility_modifier, + STATE(2733), 1, + aux_sym_object_repeat1, + STATE(3299), 1, + sym_object, + STATE(3300), 1, + sym_array, + ACTIONS(3724), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3726), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2135), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2731), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(3716), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [71477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 14, + ACTIONS(2842), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125632,13 +125863,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1411), 25, - sym__automatic_semicolon, + ACTIONS(2844), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -125658,11 +125886,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71508] = 3, + anon_sym_LBRACE_PIPE, + [71524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 14, + ACTIONS(2838), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -125676,13 +125907,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3164), 25, - sym__automatic_semicolon, + ACTIONS(2840), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -125702,10 +125930,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71555] = 3, + anon_sym_LBRACE_PIPE, + [71571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 14, + ACTIONS(1453), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125720,7 +125949,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1495), 25, + ACTIONS(1451), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125746,10 +125975,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71602] = 3, + [71618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1425), 14, + ACTIONS(2942), 1, + anon_sym_DOT, + ACTIONS(1707), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125764,7 +125995,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 25, + ACTIONS(1705), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125772,7 +126003,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -125790,39 +126020,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71649] = 8, + [71667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(3617), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(3279), 1, - anon_sym_COMMA, - ACTIONS(3282), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 11, + ACTIONS(1497), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, + ACTIONS(1495), 24, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125839,10 +126065,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71706] = 3, + [71716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 14, + ACTIONS(1437), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125857,7 +126083,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3156), 25, + ACTIONS(1435), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125883,10 +126109,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71753] = 3, + [71763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 14, + ACTIONS(1489), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -125901,7 +126127,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3168), 25, + ACTIONS(1487), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -125927,39 +126153,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71800] = 8, + [71810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(3292), 1, - anon_sym_COMMA, - ACTIONS(3295), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 11, + ACTIONS(1493), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 21, + ACTIONS(1491), 25, sym__automatic_semicolon, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -125976,76 +126197,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71857] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3302), 1, - anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, - anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3734), 1, - anon_sym_COLON, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71948] = 3, + [71857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 14, + ACTIONS(1421), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126060,7 +126215,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3230), 25, + ACTIONS(1419), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -126086,79 +126241,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [71995] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2821), 1, - anon_sym_QMARK_DOT, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3302), 1, - anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, - anon_sym_AMP, - ACTIONS(3312), 1, - anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - ACTIONS(3736), 1, - anon_sym_COLON, - STATE(2525), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1073), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72086] = 4, + [71904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 1, - anon_sym_EQ_GT, - ACTIONS(2951), 14, + ACTIONS(2834), 16, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126172,65 +126261,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2953), 24, + ACTIONS(2836), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [72135] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2269), 1, - anon_sym_QMARK, - ACTIONS(3633), 1, - anon_sym_EQ, - ACTIONS(2260), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1035), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1037), 18, - anon_sym_as, - anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -126247,10 +126284,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72194] = 3, + anon_sym_LBRACE_PIPE, + [71951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 14, + ACTIONS(3730), 1, + anon_sym_LBRACE, + STATE(1633), 1, + sym_statement_block, + ACTIONS(905), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126265,13 +126307,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3263), 25, - sym__automatic_semicolon, + ACTIONS(903), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -126291,10 +126330,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72241] = 3, + anon_sym_LBRACE_PIPE, + [72002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 14, + ACTIONS(1529), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126309,7 +126349,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2917), 25, + ACTIONS(1527), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -126335,7 +126375,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72288] = 9, + [72049] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, @@ -126344,21 +126384,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(3682), 1, + ACTIONS(2803), 1, anon_sym_EQ, - ACTIONS(3690), 1, - anon_sym_QMARK, - ACTIONS(3685), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1035), 13, + ACTIONS(1073), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -126366,9 +126401,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(1075), 21, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -126385,10 +126423,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72347] = 3, + [72104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 14, + ACTIONS(1425), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126403,7 +126441,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1065), 25, + ACTIONS(1423), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -126429,10 +126467,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72394] = 3, + [72151] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1607), 14, + ACTIONS(3730), 1, + anon_sym_LBRACE, + ACTIONS(3732), 1, + anon_sym_DOT, + STATE(1633), 1, + sym_statement_block, + ACTIONS(905), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -126447,15 +126491,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1605), 25, - sym__automatic_semicolon, + ACTIONS(903), 22, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -126473,72 +126513,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [72441] = 20, + anon_sym_LBRACE_PIPE, + [72204] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2750), 1, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(2138), 1, anon_sym_LBRACK, - ACTIONS(3738), 1, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3322), 1, + anon_sym_LT, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3734), 1, + anon_sym_COLON, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(3318), 3, anon_sym_STAR, - ACTIONS(3740), 1, - anon_sym_RBRACE, - ACTIONS(3742), 1, - anon_sym_async, - ACTIONS(3744), 1, - sym_number, - ACTIONS(3746), 1, - anon_sym_static, - ACTIONS(3748), 1, - anon_sym_abstract, - ACTIONS(3752), 1, - sym_readonly, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3750), 2, - anon_sym_get, - anon_sym_set, - STATE(1625), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2744), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [72521] = 3, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3330), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72295] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 15, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(2801), 1, + anon_sym_EQ, + ACTIONS(1073), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126552,13 +126606,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2979), 23, + ACTIONS(1075), 21, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -126575,63 +126628,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [72567] = 12, + [72350] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3760), 1, - sym_number, - STATE(2778), 1, - aux_sym_object_repeat1, - ACTIONS(3762), 2, - anon_sym_get, - anon_sym_set, - STATE(2229), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2811), 1, + anon_sym_QMARK_DOT, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3322), 1, anon_sym_LT, + ACTIONS(3324), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [72631] = 3, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + ACTIONS(3736), 1, + anon_sym_RBRACK, + STATE(2638), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1178), 2, + sym_template_string, + sym_arguments, + ACTIONS(3318), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3330), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 15, + ACTIONS(3101), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -126647,7 +126713,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3253), 23, + ACTIONS(3103), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -126671,70 +126737,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [72677] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(3738), 1, - anon_sym_STAR, - ACTIONS(3742), 1, - anon_sym_async, - ACTIONS(3744), 1, - sym_number, - ACTIONS(3746), 1, - anon_sym_static, - ACTIONS(3748), 1, - anon_sym_abstract, - ACTIONS(3752), 1, - sym_readonly, - ACTIONS(3764), 1, - anon_sym_RBRACE, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3750), 2, - anon_sym_get, - anon_sym_set, - STATE(1567), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2744), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [72757] = 3, + [72487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 15, + ACTIONS(985), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -126750,7 +126756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3242), 23, + ACTIONS(983), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -126774,10 +126780,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [72803] = 3, + [72533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 15, + ACTIONS(1457), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -126793,7 +126799,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3238), 23, + ACTIONS(1455), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -126817,70 +126823,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [72849] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(3738), 1, - anon_sym_STAR, - ACTIONS(3742), 1, - anon_sym_async, - ACTIONS(3744), 1, - sym_number, - ACTIONS(3746), 1, - anon_sym_static, - ACTIONS(3748), 1, - anon_sym_abstract, - ACTIONS(3752), 1, - sym_readonly, - ACTIONS(3766), 1, - anon_sym_RBRACE, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3750), 2, - anon_sym_get, - anon_sym_set, - STATE(1634), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2744), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [72929] = 3, + [72579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3232), 15, + ACTIONS(1477), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -126896,7 +126842,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3234), 23, + ACTIONS(1475), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -126920,10 +126866,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [72975] = 3, + [72625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 15, + ACTIONS(3109), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -126939,7 +126885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3217), 23, + ACTIONS(3111), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -126963,12 +126909,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73021] = 3, + [72671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 15, + ACTIONS(1453), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1451), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(897), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -126976,17 +126929,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1503), 23, + ACTIONS(899), 20, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -127005,11 +126954,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [73067] = 3, + [72721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1513), 15, + ACTIONS(1529), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127025,7 +126973,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1511), 23, + ACTIONS(1527), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127049,10 +126997,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73113] = 3, + [72767] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3744), 1, + sym_number, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(3746), 2, + anon_sym_get, + anon_sym_set, + STATE(2242), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 17, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [72831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 15, + ACTIONS(3123), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127068,7 +127068,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3026), 23, + ACTIONS(3125), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127092,10 +127092,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73159] = 3, + [72877] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, + anon_sym_STAR, + ACTIONS(3750), 1, + anon_sym_RBRACE, + ACTIONS(3752), 1, + anon_sym_async, + ACTIONS(3754), 1, + sym_number, + ACTIONS(3756), 1, + anon_sym_static, + ACTIONS(3758), 1, + anon_sym_abstract, + ACTIONS(3762), 1, + sym_readonly, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3760), 2, + anon_sym_get, + anon_sym_set, + STATE(1618), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2746), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [72957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 15, + ACTIONS(3139), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127111,7 +127171,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3030), 23, + ACTIONS(3141), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127135,10 +127195,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73205] = 3, + [73003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 15, + ACTIONS(3139), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127154,7 +127214,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1495), 23, + ACTIONS(3141), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127178,37 +127238,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73251] = 8, + [73049] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_QMARK_DOT, - ACTIONS(3279), 1, - anon_sym_COMMA, - ACTIONS(3282), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 12, + ACTIONS(3748), 1, + anon_sym_STAR, + ACTIONS(3752), 1, + anon_sym_async, + ACTIONS(3754), 1, + sym_number, + ACTIONS(3756), 1, + anon_sym_static, + ACTIONS(3758), 1, + anon_sym_abstract, + ACTIONS(3762), 1, + sym_readonly, + ACTIONS(3764), 1, + anon_sym_RBRACE, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3760), 2, + anon_sym_get, + anon_sym_set, + STATE(1574), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2746), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [73129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2983), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 19, + ACTIONS(2962), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -127226,14 +127341,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73307] = 5, + [73175] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 1, - anon_sym_AMP, - ACTIONS(3770), 1, - anon_sym_PIPE, - ACTIONS(1739), 13, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, + anon_sym_STAR, + ACTIONS(3752), 1, + anon_sym_async, + ACTIONS(3754), 1, + sym_number, + ACTIONS(3756), 1, + anon_sym_static, + ACTIONS(3758), 1, + anon_sym_abstract, + ACTIONS(3762), 1, + sym_readonly, + ACTIONS(3766), 1, + anon_sym_RBRACE, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3760), 2, + anon_sym_get, + anon_sym_set, + STATE(1618), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2746), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [73255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3151), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127243,11 +127414,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1737), 23, + ACTIONS(2906), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127271,10 +127444,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73357] = 3, + [73301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 15, + ACTIONS(1493), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127290,7 +127463,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2932), 23, + ACTIONS(1491), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127314,79 +127487,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73403] = 20, + [73347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, + ACTIONS(1489), 15, anon_sym_STAR, - ACTIONS(123), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1616), 1, anon_sym_LBRACE, - ACTIONS(3587), 1, - anon_sym_LBRACK, - ACTIONS(3591), 1, - sym_number, - ACTIONS(3774), 1, - anon_sym_async, - ACTIONS(3776), 1, - anon_sym_static, - ACTIONS(3782), 1, - sym_readonly, - STATE(1869), 1, - sym_accessibility_modifier, - STATE(3256), 1, - sym_object, - STATE(3265), 1, - sym_array, - ACTIONS(2642), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3778), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2133), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2892), 4, - sym_assignment_pattern, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(3772), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [73483] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1529), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1527), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(905), 13, - anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -127394,13 +127500,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(907), 20, + ACTIONS(1487), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -127419,10 +127529,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [73533] = 3, + anon_sym_LBRACE_PIPE, + [73393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1644), 15, + ACTIONS(1015), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127438,7 +127549,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1642), 23, + ACTIONS(1017), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127462,10 +127573,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73579] = 3, + [73439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 15, + ACTIONS(3153), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127481,7 +127592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3156), 23, + ACTIONS(3155), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127505,138 +127616,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73625] = 24, + [73485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2862), 1, + ACTIONS(1437), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(3000), 1, - anon_sym_QMARK_DOT, - ACTIONS(3302), 1, + anon_sym_in, anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(3312), 1, anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - STATE(2580), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1479), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73713] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(3738), 1, - anon_sym_STAR, - ACTIONS(3742), 1, - anon_sym_async, - ACTIONS(3744), 1, - sym_number, - ACTIONS(3746), 1, - anon_sym_static, - ACTIONS(3748), 1, - anon_sym_abstract, - ACTIONS(3752), 1, - sym_readonly, - ACTIONS(3784), 1, - anon_sym_RBRACE, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3750), 2, - anon_sym_get, - anon_sym_set, - STATE(1632), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2744), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [73793] = 5, + ACTIONS(1435), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [73531] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3768), 1, - anon_sym_AMP, - ACTIONS(3770), 1, - anon_sym_PIPE, - ACTIONS(1729), 13, + anon_sym_LBRACK, + ACTIONS(1497), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127646,15 +127674,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1727), 23, + ACTIONS(1495), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -127674,10 +127703,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73843] = 3, + [73579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 15, + ACTIONS(3732), 1, + anon_sym_DOT, + ACTIONS(1707), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127693,12 +127724,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3168), 23, + ACTIONS(1705), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -127717,14 +127747,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73889] = 5, + [73627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 1, - anon_sym_AMP, - ACTIONS(3770), 1, - anon_sym_PIPE, - ACTIONS(1725), 13, + ACTIONS(1453), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127734,11 +127760,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1723), 23, + ACTIONS(1451), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127762,10 +127790,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73939] = 3, + [73673] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 15, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, + anon_sym_STAR, + ACTIONS(3752), 1, + anon_sym_async, + ACTIONS(3754), 1, + sym_number, + ACTIONS(3756), 1, + anon_sym_static, + ACTIONS(3758), 1, + anon_sym_abstract, + ACTIONS(3762), 1, + sym_readonly, + ACTIONS(3770), 1, + anon_sym_RBRACE, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3760), 2, + anon_sym_get, + anon_sym_set, + STATE(1618), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2746), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [73753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1445), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127781,7 +127869,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1654), 23, + ACTIONS(1443), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127805,10 +127893,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [73985] = 3, + [73799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 15, + ACTIONS(3058), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127824,7 +127912,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 23, + ACTIONS(3060), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127848,14 +127936,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74031] = 5, + [73845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 1, - anon_sym_AMP, - ACTIONS(3770), 1, - anon_sym_PIPE, - ACTIONS(1713), 13, + ACTIONS(1441), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127865,11 +127949,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1711), 23, + ACTIONS(1439), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127893,10 +127979,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74081] = 3, + [73891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 15, + ACTIONS(3161), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127912,7 +127998,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3152), 23, + ACTIONS(3163), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127936,10 +128022,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74127] = 3, + [73937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 15, + ACTIONS(3119), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -127955,7 +128041,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 23, + ACTIONS(3121), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -127979,27 +128065,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74173] = 12, + [73983] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3754), 1, + ACTIONS(3738), 1, anon_sym_STAR, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3760), 1, + ACTIONS(3744), 1, sym_number, - STATE(2671), 1, + STATE(2677), 1, aux_sym_object_repeat1, - ACTIONS(3762), 2, + ACTIONS(3746), 2, anon_sym_get, anon_sym_set, - STATE(2229), 3, + STATE(2242), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -128013,7 +128099,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -128031,14 +128117,232 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [74237] = 5, + [74047] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, + anon_sym_STAR, + ACTIONS(3752), 1, + anon_sym_async, + ACTIONS(3754), 1, + sym_number, + ACTIONS(3756), 1, + anon_sym_static, + ACTIONS(3758), 1, + anon_sym_abstract, + ACTIONS(3762), 1, + sym_readonly, + ACTIONS(3772), 1, + anon_sym_RBRACE, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3760), 2, + anon_sym_get, + anon_sym_set, + STATE(1594), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2746), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74127] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1696), 1, + anon_sym_COMMA, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3130), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3770), 1, anon_sym_PIPE, - ACTIONS(1735), 13, + ACTIONS(1073), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 20, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [74183] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_async, + ACTIONS(3778), 1, + sym_number, + ACTIONS(3782), 1, + sym_readonly, + STATE(2677), 1, + aux_sym_object_repeat1, + ACTIONS(3780), 2, + anon_sym_get, + anon_sym_set, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74251] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, + anon_sym_STAR, + ACTIONS(3752), 1, + anon_sym_async, + ACTIONS(3754), 1, + sym_number, + ACTIONS(3756), 1, + anon_sym_static, + ACTIONS(3758), 1, + anon_sym_abstract, + ACTIONS(3762), 1, + sym_readonly, + ACTIONS(3784), 1, + anon_sym_RBRACE, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3760), 2, + anon_sym_get, + anon_sym_set, + STATE(1618), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2746), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128048,11 +128352,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1733), 23, + ACTIONS(3159), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128076,10 +128382,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74287] = 3, + [74377] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(761), 1, + anon_sym_BQUOTE, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3205), 1, + anon_sym_QMARK_DOT, + ACTIONS(3322), 1, + anon_sym_LT, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + STATE(2560), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1648), 2, + sym_template_string, + sym_arguments, + ACTIONS(3318), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3330), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1607), 15, + ACTIONS(1485), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128095,7 +128465,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1605), 23, + ACTIONS(1483), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128119,10 +128489,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74333] = 3, + [74511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(945), 15, + ACTIONS(3768), 1, + anon_sym_LBRACK, + ACTIONS(1525), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128138,11 +128510,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(947), 23, + ACTIONS(1523), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -128162,19 +128533,175 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74379] = 7, + [74559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(3052), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3054), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [74605] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, + anon_sym_STAR, + ACTIONS(3752), 1, + anon_sym_async, + ACTIONS(3754), 1, + sym_number, + ACTIONS(3756), 1, + anon_sym_static, + ACTIONS(3758), 1, + anon_sym_abstract, + ACTIONS(3762), 1, + sym_readonly, ACTIONS(3786), 1, - anon_sym_EQ, - ACTIONS(1035), 14, + anon_sym_RBRACE, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3760), 2, + anon_sym_get, + anon_sym_set, + STATE(1584), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2746), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74685] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, + anon_sym_STAR, + ACTIONS(3752), 1, + anon_sym_async, + ACTIONS(3754), 1, + sym_number, + ACTIONS(3756), 1, + anon_sym_static, + ACTIONS(3758), 1, + anon_sym_abstract, + ACTIONS(3762), 1, + sym_readonly, + ACTIONS(3788), 1, + anon_sym_RBRACE, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3760), 2, + anon_sym_get, + anon_sym_set, + STATE(1608), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2746), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [74765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1481), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128188,11 +128715,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 20, - sym__automatic_semicolon, + ACTIONS(1479), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -128209,10 +128738,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74433] = 3, + anon_sym_LBRACE_PIPE, + [74811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 15, + ACTIONS(1469), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128228,7 +128758,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3259), 23, + ACTIONS(1467), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128252,10 +128782,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74479] = 3, + [74857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 15, + ACTIONS(3165), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128271,7 +128801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1475), 23, + ACTIONS(3167), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128295,19 +128825,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74525] = 7, + [74903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(3169), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3171), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, anon_sym_DOT, - ACTIONS(3788), 1, - anon_sym_EQ, - ACTIONS(1035), 14, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [74949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1097), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -128321,11 +128887,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 20, - sym__automatic_semicolon, + ACTIONS(1095), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -128342,10 +128910,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [74579] = 3, + anon_sym_LBRACE_PIPE, + [74995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1001), 15, + ACTIONS(1461), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128361,7 +128930,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(999), 23, + ACTIONS(1459), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128385,10 +128954,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74625] = 3, + [75041] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 15, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2756), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, + anon_sym_STAR, + ACTIONS(3752), 1, + anon_sym_async, + ACTIONS(3754), 1, + sym_number, + ACTIONS(3756), 1, + anon_sym_static, + ACTIONS(3758), 1, + anon_sym_abstract, + ACTIONS(3762), 1, + sym_readonly, + ACTIONS(3790), 1, + anon_sym_RBRACE, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3760), 2, + anon_sym_get, + anon_sym_set, + STATE(1618), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2746), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [75121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1433), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128404,7 +129033,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1499), 23, + ACTIONS(1431), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128428,10 +129057,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74671] = 3, + [75167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 15, + ACTIONS(3034), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128447,7 +129076,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1479), 23, + ACTIONS(3036), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128471,10 +129100,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74717] = 3, + [75213] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 15, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_async, + ACTIONS(3778), 1, + sym_number, + STATE(2677), 1, + aux_sym_object_repeat1, + ACTIONS(3780), 2, + anon_sym_get, + anon_sym_set, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [75279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3173), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128490,7 +129172,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1065), 23, + ACTIONS(3175), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128514,10 +129196,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74763] = 3, + [75325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 15, + ACTIONS(3177), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128533,7 +129215,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1507), 23, + ACTIONS(3179), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128557,10 +129239,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74809] = 3, + [75371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 15, + ACTIONS(3032), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128576,7 +129258,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1487), 23, + ACTIONS(2923), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128600,10 +129282,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74855] = 3, + [75417] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 15, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_async, + ACTIONS(3778), 1, + sym_number, + ACTIONS(3782), 1, + sym_readonly, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(3780), 2, + anon_sym_get, + anon_sym_set, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [75485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2989), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128619,7 +129355,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3142), 23, + ACTIONS(2991), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128643,10 +129379,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74901] = 3, + [75531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(973), 15, + ACTIONS(3181), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128662,7 +129398,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(975), 23, + ACTIONS(3183), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128686,10 +129422,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74947] = 3, + [75577] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3795), 1, + anon_sym_STAR, + ACTIONS(3798), 1, + anon_sym_RBRACE, + ACTIONS(3800), 1, + anon_sym_LBRACK, + ACTIONS(3803), 1, + anon_sym_async, + ACTIONS(3806), 1, + anon_sym_DQUOTE, + ACTIONS(3809), 1, + anon_sym_SQUOTE, + ACTIONS(3812), 1, + sym_number, + ACTIONS(3815), 1, + anon_sym_AT, + ACTIONS(3818), 1, + anon_sym_static, + ACTIONS(3821), 1, + anon_sym_abstract, + ACTIONS(3830), 1, + sym_readonly, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3824), 2, + anon_sym_get, + anon_sym_set, + STATE(1618), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(3827), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(3792), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [75657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(929), 15, + ACTIONS(3185), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128705,7 +129501,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(931), 23, + ACTIONS(3187), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128729,10 +129525,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [74993] = 3, + [75703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(993), 15, + ACTIONS(2987), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128748,7 +129544,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(995), 23, + ACTIONS(2925), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128772,10 +129568,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75039] = 3, + [75749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1073), 15, + ACTIONS(3270), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128791,7 +129587,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1075), 23, + ACTIONS(2927), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128815,10 +129611,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75085] = 3, + [75795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 15, + ACTIONS(3043), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128834,7 +129630,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(917), 23, + ACTIONS(3045), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128858,12 +129654,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75131] = 4, + [75841] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(1443), 15, + ACTIONS(3776), 1, + anon_sym_async, + ACTIONS(3778), 1, + sym_number, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(3780), 2, + anon_sym_get, + anon_sym_set, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [75907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1465), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128879,10 +129726,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1441), 22, + ACTIONS(1463), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -128902,10 +129750,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75179] = 3, + [75953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 15, + ACTIONS(3294), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128921,7 +129769,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3172), 23, + ACTIONS(3296), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128945,10 +129793,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75225] = 3, + [75999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 15, + ACTIONS(3062), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -128964,7 +129812,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1051), 23, + ACTIONS(3064), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -128988,70 +129836,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75271] = 20, + [76045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(3738), 1, - anon_sym_STAR, - ACTIONS(3742), 1, - anon_sym_async, - ACTIONS(3744), 1, - sym_number, - ACTIONS(3746), 1, - anon_sym_static, - ACTIONS(3748), 1, - anon_sym_abstract, - ACTIONS(3752), 1, - sym_readonly, - ACTIONS(3792), 1, - anon_sym_RBRACE, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3750), 2, - anon_sym_get, - anon_sym_set, - STATE(1660), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2744), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3244), 15, + ACTIONS(3066), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129067,7 +129855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3246), 23, + ACTIONS(3068), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129091,37 +129879,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75397] = 8, + [76091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_QMARK_DOT, - ACTIONS(3292), 1, - anon_sym_COMMA, - ACTIONS(3295), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 12, + ACTIONS(3070), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 19, + ACTIONS(3072), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -129139,12 +129922,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75453] = 3, + [76137] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1007), 15, + ACTIONS(1491), 1, + anon_sym_RPAREN, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(1493), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -129152,19 +129945,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1009), 23, + ACTIONS(1075), 20, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -129181,11 +129970,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [75499] = 3, + [76193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1045), 15, + ACTIONS(981), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129201,7 +129989,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1047), 23, + ACTIONS(979), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129225,10 +130013,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75545] = 3, + [76239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3144), 15, + ACTIONS(1027), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129244,7 +130032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2967), 23, + ACTIONS(1025), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129268,10 +130056,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75591] = 3, + [76285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 15, + ACTIONS(3091), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129287,7 +130075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1427), 23, + ACTIONS(3093), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129311,10 +130099,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75637] = 3, + [76331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1015), 15, + ACTIONS(1037), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129330,7 +130118,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1013), 23, + ACTIONS(1035), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129354,12 +130142,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75683] = 4, + [76377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 1, - anon_sym_DOT, - ACTIONS(1705), 15, + ACTIONS(3095), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129375,11 +130161,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1703), 22, + ACTIONS(3097), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -129398,130 +130185,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75731] = 20, + [76423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(3738), 1, + ACTIONS(3288), 15, anon_sym_STAR, - ACTIONS(3742), 1, - anon_sym_async, - ACTIONS(3744), 1, - sym_number, - ACTIONS(3746), 1, - anon_sym_static, - ACTIONS(3748), 1, - anon_sym_abstract, - ACTIONS(3752), 1, - sym_readonly, - ACTIONS(3794), 1, - anon_sym_RBRACE, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3750), 2, - anon_sym_get, - anon_sym_set, - STATE(1669), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2744), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75811] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2750), 1, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3290), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3738), 1, - anon_sym_STAR, - ACTIONS(3742), 1, - anon_sym_async, - ACTIONS(3744), 1, - sym_number, - ACTIONS(3746), 1, - anon_sym_static, - ACTIONS(3748), 1, - anon_sym_abstract, - ACTIONS(3752), 1, - sym_readonly, - ACTIONS(3796), 1, - anon_sym_RBRACE, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3750), 2, - anon_sym_get, - anon_sym_set, - STATE(1634), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2744), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [75891] = 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [76469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(937), 15, + ACTIONS(955), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129537,7 +130247,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(935), 23, + ACTIONS(957), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129561,10 +130271,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75937] = 3, + [76515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 15, + ACTIONS(1033), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129580,7 +130290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(921), 23, + ACTIONS(1031), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129604,10 +130314,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [75983] = 3, + [76561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 15, + ACTIONS(3292), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2890), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [76607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(945), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129623,7 +130376,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1519), 23, + ACTIONS(947), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129647,10 +130400,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76029] = 3, + [76653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 15, + ACTIONS(1063), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129666,7 +130419,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3164), 23, + ACTIONS(1065), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129690,10 +130443,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76075] = 3, + [76699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 15, + ACTIONS(991), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129709,7 +130462,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1027), 23, + ACTIONS(993), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129733,7 +130486,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76121] = 24, + [76745] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(505), 1, @@ -129744,60 +130497,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(2140), 1, anon_sym_DOT, - ACTIONS(2817), 1, + ACTIONS(2807), 1, anon_sym_as, - ACTIONS(2821), 1, + ACTIONS(2811), 1, anon_sym_QMARK_DOT, ACTIONS(2862), 1, anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3322), 1, anon_sym_LT, - ACTIONS(3304), 1, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3332), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3334), 1, anon_sym_PIPE, - ACTIONS(3316), 1, + ACTIONS(3338), 1, anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, + ACTIONS(3342), 1, anon_sym_QMARK_QMARK, - STATE(2525), 1, + STATE(2638), 1, sym_type_arguments, ACTIONS(2888), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(3306), 2, + ACTIONS(3328), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(3314), 2, + ACTIONS(3336), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1073), 2, + STATE(1178), 2, sym_template_string, sym_arguments, - ACTIONS(3298), 3, + ACTIONS(3318), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(3308), 3, + ACTIONS(3330), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(3300), 4, + ACTIONS(3320), 4, anon_sym_in, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3318), 5, + ACTIONS(3340), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76209] = 20, + [76833] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -129806,46 +130559,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2750), 1, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(3738), 1, + ACTIONS(3748), 1, anon_sym_STAR, - ACTIONS(3742), 1, + ACTIONS(3752), 1, anon_sym_async, - ACTIONS(3744), 1, + ACTIONS(3754), 1, sym_number, - ACTIONS(3746), 1, + ACTIONS(3756), 1, anon_sym_static, - ACTIONS(3748), 1, + ACTIONS(3758), 1, anon_sym_abstract, - ACTIONS(3752), 1, + ACTIONS(3762), 1, sym_readonly, - ACTIONS(3798), 1, + ACTIONS(3833), 1, anon_sym_RBRACE, - STATE(1858), 1, + STATE(1854), 1, sym_method_definition, - STATE(1861), 1, + STATE(1864), 1, sym_accessibility_modifier, - ACTIONS(3750), 2, + ACTIONS(3760), 2, anon_sym_get, anon_sym_set, - STATE(1634), 2, + STATE(1569), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1916), 3, + STATE(1919), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2814), 4, + STATE(2820), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(2744), 11, + ACTIONS(2746), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -129857,10 +130610,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [76289] = 3, + [76913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 15, + ACTIONS(1429), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129876,7 +130629,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3180), 23, + ACTIONS(1427), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -129900,72 +130653,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76335] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3803), 1, - anon_sym_STAR, - ACTIONS(3806), 1, - anon_sym_RBRACE, - ACTIONS(3808), 1, - anon_sym_LBRACK, - ACTIONS(3811), 1, - anon_sym_async, - ACTIONS(3814), 1, - anon_sym_DQUOTE, - ACTIONS(3817), 1, - anon_sym_SQUOTE, - ACTIONS(3820), 1, - sym_number, - ACTIONS(3823), 1, - anon_sym_AT, - ACTIONS(3826), 1, - anon_sym_static, - ACTIONS(3829), 1, - anon_sym_abstract, - ACTIONS(3838), 1, - sym_readonly, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3832), 2, - anon_sym_get, - anon_sym_set, - STATE(1634), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(3835), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3800), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76415] = 4, + [76959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, - anon_sym_DOT, - ACTIONS(1409), 15, + ACTIONS(3143), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -129981,60 +130672,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1407), 22, + ACTIONS(3145), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [76463] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - anon_sym_COMMA, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, anon_sym_DOT, - ACTIONS(2288), 1, anon_sym_QMARK_DOT, - ACTIONS(1513), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 12, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1037), 19, - anon_sym_as, - anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130052,10 +130696,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76519] = 3, + [77005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 15, + ACTIONS(3233), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130071,7 +130715,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3184), 23, + ACTIONS(3235), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130095,10 +130739,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76565] = 3, + [77051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 15, + ACTIONS(3147), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130114,7 +130758,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 23, + ACTIONS(3149), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130138,10 +130782,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76611] = 3, + [77097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(983), 15, + ACTIONS(3284), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130157,7 +130801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(985), 23, + ACTIONS(3286), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130181,10 +130825,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76657] = 3, + [77143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 15, + ACTIONS(1009), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130200,7 +130844,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1523), 23, + ACTIONS(1007), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130224,115 +130868,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76703] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3760), 1, - sym_number, - STATE(2782), 1, - aux_sym_object_repeat1, - ACTIONS(3762), 2, - anon_sym_get, - anon_sym_set, - STATE(2229), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [76767] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3843), 1, - anon_sym_async, - ACTIONS(3845), 1, - sym_number, - STATE(2778), 1, - aux_sym_object_repeat1, - ACTIONS(3847), 2, - anon_sym_get, - anon_sym_set, - STATE(1931), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [76833] = 3, + [77189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 15, + ACTIONS(3280), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130348,7 +130887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3138), 23, + ACTIONS(3282), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130372,226 +130911,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [76879] = 3, + [77235] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3132), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3134), 23, - anon_sym_as, + ACTIONS(1427), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(2218), 1, anon_sym_LBRACK, + ACTIONS(2223), 1, anon_sym_DOT, + ACTIONS(2227), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [76925] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3843), 1, - anon_sym_async, - ACTIONS(3845), 1, - sym_number, - ACTIONS(3849), 1, - sym_readonly, - STATE(2782), 1, - aux_sym_object_repeat1, - ACTIONS(3847), 2, - anon_sym_get, - anon_sym_set, - STATE(1931), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [76993] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(3136), 3, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [77039] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3843), 1, - anon_sym_async, - ACTIONS(3845), 1, - sym_number, - ACTIONS(3849), 1, - sym_readonly, - STATE(2778), 1, - aux_sym_object_repeat1, - ACTIONS(3847), 2, - anon_sym_get, - anon_sym_set, - STATE(1931), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [77107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3191), 15, + ACTIONS(1073), 11, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3193), 23, + ACTIONS(1075), 20, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130608,77 +130959,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [77153] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3843), 1, - anon_sym_async, - ACTIONS(3845), 1, - sym_number, - ACTIONS(3849), 1, - sym_readonly, - STATE(2671), 1, - aux_sym_object_repeat1, - ACTIONS(3847), 2, - anon_sym_get, - anon_sym_set, - STATE(1931), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [77221] = 8, + [77291] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - anon_sym_RPAREN, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(1513), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 12, + sym_comment, + ACTIONS(3189), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -130686,15 +130972,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 20, + ACTIONS(3191), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -130711,63 +131001,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77277] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3843), 1, - anon_sym_async, - ACTIONS(3845), 1, - sym_number, - STATE(2782), 1, - aux_sym_object_repeat1, - ACTIONS(3847), 2, - anon_sym_get, - anon_sym_set, - STATE(1931), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [77343] = 3, + anon_sym_LBRACE_PIPE, + [77337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 15, + ACTIONS(963), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130783,7 +131021,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1411), 23, + ACTIONS(961), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130807,10 +131045,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77389] = 3, + [77383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 15, + ACTIONS(1043), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130826,7 +131064,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1095), 23, + ACTIONS(1045), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130850,10 +131088,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77435] = 3, + [77429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3124), 15, + ACTIONS(3105), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130869,7 +131107,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3126), 23, + ACTIONS(3107), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130893,10 +131131,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77481] = 3, + [77475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 15, + ACTIONS(915), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130912,7 +131150,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(951), 23, + ACTIONS(917), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130936,10 +131174,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77527] = 3, + [77521] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2807), 1, + anon_sym_as, + ACTIONS(2862), 1, + anon_sym_BANG, + ACTIONS(3008), 1, + anon_sym_QMARK_DOT, + ACTIONS(3322), 1, + anon_sym_LT, + ACTIONS(3324), 1, + anon_sym_QMARK, + ACTIONS(3326), 1, + anon_sym_AMP_AMP, + ACTIONS(3332), 1, + anon_sym_AMP, + ACTIONS(3334), 1, + anon_sym_PIPE, + ACTIONS(3338), 1, + anon_sym_STAR_STAR, + ACTIONS(3342), 1, + anon_sym_QMARK_QMARK, + STATE(2625), 1, + sym_type_arguments, + ACTIONS(2888), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(3328), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(3336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1427), 2, + sym_template_string, + sym_arguments, + ACTIONS(3318), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(3330), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(3320), 4, + anon_sym_in, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3340), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 15, + ACTIONS(1421), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130955,7 +131257,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3176), 23, + ACTIONS(1419), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -130979,10 +131281,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77573] = 3, + [77655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 15, + ACTIONS(3074), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -130998,7 +131300,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3122), 23, + ACTIONS(3076), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131022,10 +131324,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77619] = 3, + [77701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 15, + ACTIONS(1425), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131041,7 +131343,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3118), 23, + ACTIONS(1423), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131065,7 +131367,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77665] = 20, + [77747] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -131074,106 +131376,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2750), 1, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(3738), 1, - anon_sym_STAR, - ACTIONS(3742), 1, - anon_sym_async, - ACTIONS(3744), 1, - sym_number, - ACTIONS(3746), 1, - anon_sym_static, ACTIONS(3748), 1, - anon_sym_abstract, - ACTIONS(3752), 1, - sym_readonly, - ACTIONS(3851), 1, - anon_sym_RBRACE, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3750), 2, - anon_sym_get, - anon_sym_set, - STATE(1666), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1916), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2744), 11, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [77745] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2750), 1, - anon_sym_LBRACK, - ACTIONS(3738), 1, anon_sym_STAR, - ACTIONS(3742), 1, + ACTIONS(3752), 1, anon_sym_async, - ACTIONS(3744), 1, + ACTIONS(3754), 1, sym_number, - ACTIONS(3746), 1, + ACTIONS(3756), 1, anon_sym_static, - ACTIONS(3748), 1, + ACTIONS(3758), 1, anon_sym_abstract, - ACTIONS(3752), 1, + ACTIONS(3762), 1, sym_readonly, - ACTIONS(3853), 1, + ACTIONS(3835), 1, anon_sym_RBRACE, - STATE(1858), 1, + STATE(1854), 1, sym_method_definition, - STATE(1861), 1, + STATE(1864), 1, sym_accessibility_modifier, - ACTIONS(3750), 2, + ACTIONS(3760), 2, anon_sym_get, anon_sym_set, - STATE(1634), 2, + STATE(1618), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(2760), 3, + ACTIONS(2766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1916), 3, + STATE(1919), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2814), 4, + STATE(2820), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(2744), 11, + ACTIONS(2746), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -131185,10 +131427,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [77825] = 3, + [77827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 15, + ACTIONS(1053), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131204,7 +131446,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3199), 23, + ACTIONS(1055), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131228,10 +131470,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77871] = 3, + [77873] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1491), 1, + anon_sym_COMMA, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2272), 1, + anon_sym_QMARK_DOT, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(1493), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 12, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 19, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [77929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 15, + ACTIONS(935), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131247,7 +131537,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3160), 23, + ACTIONS(937), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131271,22 +131561,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [77917] = 8, + [77975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3279), 1, - anon_sym_RPAREN, - ACTIONS(3282), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 12, + ACTIONS(1001), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -131294,15 +131574,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 20, + ACTIONS(1003), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131319,12 +131603,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [77973] = 3, + anon_sym_LBRACE_PIPE, + [78021] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 15, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3837), 1, + anon_sym_EQ, + ACTIONS(1073), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -131338,13 +131630,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3112), 23, + ACTIONS(1075), 20, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131361,11 +131651,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [78019] = 3, + [78075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 15, + ACTIONS(3276), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131381,7 +131670,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2953), 23, + ACTIONS(3278), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131405,70 +131694,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78065] = 20, + [78121] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(2750), 1, - anon_sym_LBRACK, ACTIONS(3738), 1, anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, ACTIONS(3742), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(3744), 1, sym_number, - ACTIONS(3746), 1, - anon_sym_static, - ACTIONS(3748), 1, - anon_sym_abstract, - ACTIONS(3752), 1, - sym_readonly, - ACTIONS(3855), 1, - anon_sym_RBRACE, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3750), 2, + STATE(2742), 1, + aux_sym_object_repeat1, + ACTIONS(3746), 2, anon_sym_get, anon_sym_set, - STATE(1634), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2760), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1916), 3, + STATE(2242), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2744), 11, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, + anon_sym_static, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78145] = 3, + sym_readonly, + [78185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 15, + ACTIONS(3272), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131484,7 +131765,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1467), 23, + ACTIONS(3274), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131508,10 +131789,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78191] = 3, + [78231] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2218), 1, + anon_sym_LBRACK, + ACTIONS(2223), 1, + anon_sym_DOT, + ACTIONS(2227), 1, + anon_sym_QMARK_DOT, + ACTIONS(3839), 1, + anon_sym_EQ, + ACTIONS(1073), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1075), 20, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [78285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 15, + ACTIONS(973), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131527,7 +131855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2860), 23, + ACTIONS(975), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131551,118 +131879,170 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78237] = 20, + [78331] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(2750), 1, - anon_sym_LBRACK, ACTIONS(3738), 1, anon_sym_STAR, - ACTIONS(3742), 1, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, anon_sym_async, - ACTIONS(3744), 1, + ACTIONS(3778), 1, sym_number, - ACTIONS(3746), 1, - anon_sym_static, - ACTIONS(3748), 1, - anon_sym_abstract, - ACTIONS(3752), 1, + ACTIONS(3782), 1, sym_readonly, - ACTIONS(3857), 1, - anon_sym_RBRACE, - STATE(1858), 1, - sym_method_definition, - STATE(1861), 1, - sym_accessibility_modifier, - ACTIONS(3750), 2, + STATE(2742), 1, + aux_sym_object_repeat1, + ACTIONS(3780), 2, anon_sym_get, anon_sym_set, - STATE(1634), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(2760), 3, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1916), 3, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78399] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3744), 1, + sym_number, + STATE(2824), 1, + aux_sym_object_repeat1, + ACTIONS(3746), 2, + anon_sym_get, + anon_sym_set, + STATE(2242), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(2814), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(2744), 11, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, + anon_sym_static, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [78317] = 8, + sym_readonly, + [78463] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, - anon_sym_COMMA, - ACTIONS(2215), 1, - anon_sym_LBRACK, - ACTIONS(2221), 1, - anon_sym_QMARK_DOT, - ACTIONS(2247), 1, - anon_sym_DOT, - ACTIONS(3282), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 11, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1037), 20, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_async, + ACTIONS(3778), 1, + sym_number, + ACTIONS(3782), 1, + sym_readonly, + STATE(2824), 1, + aux_sym_object_repeat1, + ACTIONS(3780), 2, + anon_sym_get, + anon_sym_set, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, sym__automatic_semicolon, - anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [78373] = 3, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3228), 15, + ACTIONS(925), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131678,7 +132058,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3230), 23, + ACTIONS(927), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131702,10 +132082,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78419] = 3, + [78577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 15, + ACTIONS(3049), 1, + anon_sym_DOT, + ACTIONS(1409), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131721,12 +132103,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2975), 23, + ACTIONS(1407), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131745,53 +132126,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78465] = 3, + [78625] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 15, + ACTIONS(109), 1, anon_sym_STAR, + ACTIONS(123), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1622), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1491), 23, - anon_sym_as, + ACTIONS(3591), 1, + anon_sym_LBRACK, + ACTIONS(3595), 1, + sym_number, + ACTIONS(3843), 1, + anon_sym_async, + ACTIONS(3845), 1, + anon_sym_static, + ACTIONS(3851), 1, + sym_readonly, + STATE(1873), 1, + sym_accessibility_modifier, + STATE(3299), 1, + sym_object, + STATE(3300), 1, + sym_array, + ACTIONS(2592), 2, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + ACTIONS(3847), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3849), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2135), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2881), 4, + sym_assignment_pattern, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(3841), 11, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [78705] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3774), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [78511] = 3, + ACTIONS(3776), 1, + anon_sym_async, + ACTIONS(3778), 1, + sym_number, + STATE(2742), 1, + aux_sym_object_repeat1, + ACTIONS(3780), 2, + anon_sym_get, + anon_sym_set, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [78771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 15, + ACTIONS(3237), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131807,7 +132258,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3130), 23, + ACTIONS(3239), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131831,32 +132282,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78557] = 3, + [78817] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1057), 15, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2272), 1, + anon_sym_QMARK_DOT, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(3133), 1, + anon_sym_COMMA, + ACTIONS(3136), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 12, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1055), 23, + ACTIONS(1075), 19, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -131874,10 +132330,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78603] = 3, + [78873] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 15, + ACTIONS(3853), 1, + anon_sym_AMP, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(1713), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131887,13 +132347,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3078), 23, + ACTIONS(1711), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131917,10 +132375,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78649] = 3, + [78923] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_async, + ACTIONS(3778), 1, + sym_number, + STATE(2824), 1, + aux_sym_object_repeat1, + ACTIONS(3780), 2, + anon_sym_get, + anon_sym_set, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [78989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 15, + ACTIONS(1023), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131936,7 +132447,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3226), 23, + ACTIONS(1021), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -131960,10 +132471,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78695] = 3, + [79035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 15, + ACTIONS(2698), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -131979,7 +132490,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3072), 23, + ACTIONS(2702), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132003,10 +132514,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78741] = 3, + [79081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 15, + ACTIONS(1628), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132022,7 +132533,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2917), 23, + ACTIONS(1626), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132046,179 +132557,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [78787] = 24, + [79127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, - anon_sym_BQUOTE, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_as, - ACTIONS(2862), 1, - anon_sym_BANG, - ACTIONS(3044), 1, - anon_sym_QMARK_DOT, - ACTIONS(3302), 1, - anon_sym_LT, - ACTIONS(3304), 1, - anon_sym_AMP_AMP, - ACTIONS(3310), 1, + ACTIONS(3853), 1, anon_sym_AMP, - ACTIONS(3312), 1, + ACTIONS(3855), 1, anon_sym_PIPE, - ACTIONS(3316), 1, - anon_sym_STAR_STAR, - ACTIONS(3337), 1, - anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_QMARK_QMARK, - STATE(2554), 1, - sym_type_arguments, - ACTIONS(2888), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(3306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(3314), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1633), 2, - sym_template_string, - sym_arguments, - ACTIONS(3298), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(3308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(3300), 4, - anon_sym_in, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78875] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3843), 1, - anon_sym_async, - ACTIONS(3845), 1, - sym_number, - STATE(2671), 1, - aux_sym_object_repeat1, - ACTIONS(3847), 2, - anon_sym_get, - anon_sym_set, - STATE(1931), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [78941] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3760), 1, - sym_number, - STATE(2740), 1, - aux_sym_object_repeat1, - ACTIONS(3762), 2, - anon_sym_get, - anon_sym_set, - STATE(2229), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [79005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1529), 15, + ACTIONS(1726), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132228,13 +132574,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1527), 23, + ACTIONS(1724), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132258,10 +132602,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79051] = 3, + [79177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 15, + ACTIONS(3853), 1, + anon_sym_AMP, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(1730), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132271,13 +132619,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3287), 23, + ACTIONS(1728), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132301,32 +132647,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79097] = 3, + [79227] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1019), 15, + ACTIONS(2263), 1, + anon_sym_LBRACK, + ACTIONS(2272), 1, + anon_sym_QMARK_DOT, + ACTIONS(2291), 1, + anon_sym_DOT, + ACTIONS(3127), 1, + anon_sym_COMMA, + ACTIONS(3130), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 12, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1017), 23, + ACTIONS(1075), 19, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132344,10 +132695,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79143] = 3, + [79283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(957), 15, + ACTIONS(1473), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132363,7 +132714,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(955), 23, + ACTIONS(1471), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132387,12 +132738,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79189] = 4, + [79329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, - anon_sym_LBRACK, - ACTIONS(1433), 15, + ACTIONS(1646), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132408,10 +132757,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1431), 22, + ACTIONS(1644), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -132431,10 +132781,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79237] = 3, + [79375] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 15, + ACTIONS(3853), 1, + anon_sym_AMP, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(1738), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132444,13 +132798,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3271), 23, + ACTIONS(1736), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132474,92 +132826,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79283] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3843), 1, - anon_sym_async, - ACTIONS(3845), 1, - sym_number, - ACTIONS(3849), 1, - sym_readonly, - STATE(2740), 1, - aux_sym_object_repeat1, - ACTIONS(3847), 2, - anon_sym_get, - anon_sym_set, - STATE(1931), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [79351] = 8, + [79425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1692), 1, - anon_sym_COMMA, - ACTIONS(2215), 1, + ACTIONS(2263), 1, anon_sym_LBRACK, - ACTIONS(2221), 1, + ACTIONS(2272), 1, anon_sym_QMARK_DOT, - ACTIONS(2247), 1, + ACTIONS(2291), 1, anon_sym_DOT, - ACTIONS(3295), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 11, + ACTIONS(1073), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 20, - sym__automatic_semicolon, + ACTIONS(1075), 20, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132576,10 +132871,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [79407] = 3, + anon_sym_LBRACE_PIPE, + [79477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 15, + ACTIONS(967), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132595,7 +132891,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2702), 23, + ACTIONS(965), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132619,10 +132915,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79453] = 3, + [79523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 15, + ACTIONS(1449), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132638,7 +132934,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3263), 23, + ACTIONS(1447), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132662,63 +132958,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79499] = 13, + [79569] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(91), 1, + anon_sym_AT, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3841), 1, + ACTIONS(2756), 1, anon_sym_LBRACK, - ACTIONS(3843), 1, + ACTIONS(3748), 1, + anon_sym_STAR, + ACTIONS(3752), 1, anon_sym_async, - ACTIONS(3845), 1, + ACTIONS(3754), 1, sym_number, - STATE(2740), 1, - aux_sym_object_repeat1, - ACTIONS(3847), 2, + ACTIONS(3756), 1, + anon_sym_static, + ACTIONS(3758), 1, + anon_sym_abstract, + ACTIONS(3762), 1, + sym_readonly, + ACTIONS(3857), 1, + anon_sym_RBRACE, + STATE(1854), 1, + sym_method_definition, + STATE(1864), 1, + sym_accessibility_modifier, + ACTIONS(3760), 2, anon_sym_get, anon_sym_set, - STATE(1931), 3, + STATE(1661), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(2766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(1919), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 16, + STATE(2820), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(2746), 11, anon_sym_export, anon_sym_namespace, anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [79565] = 3, + [79649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 15, + ACTIONS(3853), 1, + anon_sym_AMP, + ACTIONS(3855), 1, + anon_sym_PIPE, + ACTIONS(1748), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132728,13 +133035,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 23, + ACTIONS(1746), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132758,10 +133063,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79611] = 3, + [79699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 15, + ACTIONS(2964), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132777,7 +133082,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1483), 23, + ACTIONS(2966), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -132801,16 +133106,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79657] = 6, + [79745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2282), 1, - anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_DOT, - ACTIONS(2288), 1, - anon_sym_QMARK_DOT, - ACTIONS(1035), 15, + ACTIONS(1612), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -132826,10 +133125,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 20, + ACTIONS(1610), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132847,12 +133149,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [79709] = 3, + [79791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(963), 15, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3133), 1, + anon_sym_RPAREN, + ACTIONS(3136), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -132860,19 +133172,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(965), 23, + ACTIONS(1075), 20, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132889,13 +133197,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [79755] = 3, + [79847] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 15, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3859), 1, + anon_sym_STAR, + ACTIONS(3861), 1, + anon_sym_async, + ACTIONS(3863), 1, + sym_number, + ACTIONS(3865), 1, + anon_sym_abstract, + ACTIONS(3867), 2, + anon_sym_get, + anon_sym_set, + STATE(1917), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2746), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [79910] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3127), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3130), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -132903,19 +133272,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3148), 23, + ACTIONS(1075), 18, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132932,13 +133295,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [79801] = 3, + [79965] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 15, + ACTIONS(2138), 1, + anon_sym_LBRACK, + ACTIONS(2140), 1, + anon_sym_DOT, + ACTIONS(2142), 1, + anon_sym_QMARK_DOT, + ACTIONS(3133), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3136), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1073), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -132946,19 +133319,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3277), 23, + ACTIONS(1075), 18, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -132975,45 +133342,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [79847] = 12, + [80020] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3859), 1, - anon_sym_STAR, - ACTIONS(3861), 1, - anon_sym_async, - ACTIONS(3863), 1, + ACTIONS(3744), 1, sym_number, - ACTIONS(3865), 1, - anon_sym_abstract, - ACTIONS(3867), 2, + STATE(2677), 1, + aux_sym_object_repeat1, + STATE(2242), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_get, anon_sym_set, - STATE(1918), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [80079] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3744), 1, + sym_number, + STATE(2746), 1, + aux_sym_object_repeat1, + STATE(2242), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [80138] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3744), 1, + sym_number, + ACTIONS(2778), 2, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, + ACTIONS(3746), 2, + anon_sym_get, + anon_sym_set, + STATE(2242), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2744), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -133027,14 +133491,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [79910] = 12, + [80201] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_async, + ACTIONS(3778), 1, + sym_number, + ACTIONS(3782), 1, + sym_readonly, + ACTIONS(2778), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3780), 2, + anon_sym_get, + anon_sym_set, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 15, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [80268] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, ACTIONS(3869), 1, anon_sym_STAR, @@ -133047,7 +133564,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3877), 2, anon_sym_get, anon_sym_set, - STATE(1914), 3, + STATE(1918), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -133061,7 +133578,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2744), 16, + ACTIONS(2746), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -133078,54 +133595,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [79973] = 8, + [80331] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2138), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(1511), 2, + ACTIONS(3776), 1, + anon_sym_async, + ACTIONS(3778), 1, + sym_number, + ACTIONS(2778), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1513), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_RBRACE, + ACTIONS(3780), 2, + anon_sym_get, + anon_sym_set, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1037), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [80028] = 9, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [80396] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, @@ -133134,13 +133656,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2787), 1, + ACTIONS(2803), 1, anon_sym_EQ, - ACTIONS(2900), 1, + ACTIONS(2948), 1, anon_sym_in, - ACTIONS(2903), 1, + ACTIONS(2951), 1, anon_sym_of, - ACTIONS(1035), 13, + ACTIONS(1073), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -133154,7 +133676,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(1075), 18, anon_sym_as, anon_sym_LPAREN, anon_sym_AMP_AMP, @@ -133173,7 +133695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [80085] = 9, + [80453] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, @@ -133184,11 +133706,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(2801), 1, anon_sym_EQ, - ACTIONS(2909), 1, + ACTIONS(2957), 1, anon_sym_in, - ACTIONS(2912), 1, + ACTIONS(2960), 1, anon_sym_of, - ACTIONS(1035), 13, + ACTIONS(1073), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -133202,54 +133724,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [80142] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2138), 1, - anon_sym_LBRACK, - ACTIONS(2140), 1, - anon_sym_DOT, - ACTIONS(2142), 1, - anon_sym_QMARK_DOT, - ACTIONS(3292), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3295), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1035), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(1075), 18, anon_sym_as, anon_sym_LPAREN, anon_sym_AMP_AMP, @@ -133268,22 +133743,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [80197] = 10, + [80510] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3760), 1, + ACTIONS(3744), 1, sym_number, - STATE(2778), 1, + STATE(2742), 1, aux_sym_object_repeat1, - STATE(2229), 3, + STATE(2242), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -133297,7 +133772,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -133317,22 +133792,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [80256] = 10, + [80569] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3760), 1, + ACTIONS(3744), 1, sym_number, - STATE(2782), 1, + STATE(2824), 1, aux_sym_object_repeat1, - STATE(2229), 3, + STATE(2242), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -133346,7 +133821,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -133366,59 +133841,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [80315] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3843), 1, - anon_sym_async, - ACTIONS(3845), 1, - sym_number, - ACTIONS(2772), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3847), 2, - anon_sym_get, - anon_sym_set, - STATE(1931), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [80380] = 9, + [80628] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, @@ -133429,11 +133852,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, ACTIONS(2801), 1, anon_sym_EQ, - ACTIONS(3451), 1, + ACTIONS(3485), 1, anon_sym_in, - ACTIONS(3454), 1, + ACTIONS(3488), 1, anon_sym_of, - ACTIONS(1035), 13, + ACTIONS(1073), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -133447,7 +133870,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(1075), 18, anon_sym_as, anon_sym_LPAREN, anon_sym_AMP_AMP, @@ -133466,56 +133889,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [80437] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3760), 1, - sym_number, - STATE(2740), 1, - aux_sym_object_repeat1, - STATE(2229), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [80496] = 9, + [80685] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, @@ -133524,13 +133898,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(2787), 1, + ACTIONS(2803), 1, anon_sym_EQ, - ACTIONS(3490), 1, + ACTIONS(3496), 1, anon_sym_in, - ACTIONS(3493), 1, + ACTIONS(3499), 1, anon_sym_of, - ACTIONS(1035), 13, + ACTIONS(1073), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -133544,7 +133918,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(1075), 18, anon_sym_as, anon_sym_LPAREN, anon_sym_AMP_AMP, @@ -133563,7 +133937,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [80553] = 8, + [80742] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2138), 1, @@ -133572,13 +133946,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(2142), 1, anon_sym_QMARK_DOT, - ACTIONS(3279), 2, + ACTIONS(1491), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(3282), 2, + ACTIONS(1493), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1035), 12, + ACTIONS(1073), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -133591,7 +133965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1037), 18, + ACTIONS(1075), 18, anon_sym_as, anon_sym_LPAREN, anon_sym_AMP_AMP, @@ -133610,93 +133984,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [80608] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3843), 1, - anon_sym_async, - ACTIONS(3845), 1, - sym_number, - ACTIONS(3849), 1, - sym_readonly, - ACTIONS(2772), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3847), 2, - anon_sym_get, - anon_sym_set, - STATE(1931), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 15, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [80675] = 12, + [80797] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3760), 1, + ACTIONS(3869), 1, + anon_sym_STAR, + ACTIONS(3879), 1, sym_number, - ACTIONS(2772), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3762), 2, + ACTIONS(3881), 2, anon_sym_get, anon_sym_set, - STATE(2229), 3, + STATE(2187), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2716), 7, + ACTIONS(2716), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -133714,22 +134032,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [80738] = 10, + [80855] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3760), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, + anon_sym_async, + ACTIONS(3887), 1, sym_number, - STATE(2671), 1, - aux_sym_object_repeat1, - STATE(2229), 3, + ACTIONS(3889), 2, + anon_sym_get, + anon_sym_set, + STATE(1923), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -133743,15 +134064,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, + ACTIONS(2746), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -133763,23 +134081,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [80797] = 10, + [80915] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3879), 1, + ACTIONS(3891), 1, anon_sym_STAR, - ACTIONS(3881), 1, + ACTIONS(3893), 1, + anon_sym_async, + ACTIONS(3895), 1, sym_number, - ACTIONS(3883), 2, + ACTIONS(3899), 1, + sym_readonly, + ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - STATE(2227), 3, + STATE(1928), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -133793,61 +134115,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [80855] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3760), 1, - sym_number, - ACTIONS(2772), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2229), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, + ACTIONS(2746), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -133858,38 +134131,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [80913] = 10, + [80977] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3885), 1, + ACTIONS(3901), 1, anon_sym_STAR, - ACTIONS(3887), 1, + ACTIONS(3903), 1, sym_number, - ACTIONS(3889), 2, + ACTIONS(3905), 2, anon_sym_get, anon_sym_set, - STATE(2191), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -133907,14 +134179,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [80971] = 11, + [81035] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, ACTIONS(3891), 1, anon_sym_STAR, @@ -133925,7 +134197,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3897), 2, anon_sym_get, anon_sym_set, - STATE(1930), 3, + STATE(1928), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -133939,7 +134211,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2744), 16, + ACTIONS(2746), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -133956,23 +134228,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81031] = 10, + [81095] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3891), 1, anon_sym_STAR, - ACTIONS(3899), 1, + ACTIONS(3907), 1, sym_number, - ACTIONS(3901), 2, + ACTIONS(3909), 2, anon_sym_get, anon_sym_set, - STATE(2189), 3, + STATE(2236), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -133986,7 +134258,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134004,23 +134276,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81089] = 10, + [81153] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3903), 1, + ACTIONS(3911), 1, anon_sym_STAR, - ACTIONS(3905), 1, + ACTIONS(3913), 1, + anon_sym_async, + ACTIONS(3915), 1, sym_number, - ACTIONS(3907), 2, + ACTIONS(3917), 2, anon_sym_get, anon_sym_set, - STATE(2203), 3, + STATE(1927), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -134034,11 +134308,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, + ACTIONS(2746), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134052,37 +134325,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81147] = 10, + [81213] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3909), 1, + ACTIONS(3919), 1, anon_sym_STAR, - ACTIONS(3911), 1, + ACTIONS(3921), 1, sym_number, - ACTIONS(3913), 2, + ACTIONS(3923), 2, anon_sym_get, anon_sym_set, - STATE(2218), 3, + STATE(2184), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134100,23 +134373,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81205] = 10, + [81271] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3915), 1, + ACTIONS(3925), 1, anon_sym_STAR, - ACTIONS(3917), 1, + ACTIONS(3927), 1, sym_number, - ACTIONS(3919), 2, + ACTIONS(3929), 2, anon_sym_get, anon_sym_set, - STATE(2262), 3, + STATE(2194), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -134130,7 +134403,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134148,41 +134421,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81263] = 10, + [81329] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_STAR, - ACTIONS(3923), 1, + ACTIONS(3933), 1, + anon_sym_async, + ACTIONS(3935), 1, sym_number, - ACTIONS(3925), 2, + ACTIONS(3937), 2, anon_sym_get, anon_sym_set, - STATE(2174), 3, + STATE(1913), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, + ACTIONS(2746), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134196,39 +134470,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81321] = 11, + [81389] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3927), 1, + ACTIONS(3869), 1, anon_sym_STAR, - ACTIONS(3929), 1, + ACTIONS(3871), 1, anon_sym_async, - ACTIONS(3931), 1, + ACTIONS(3873), 1, sym_number, - ACTIONS(3933), 2, + ACTIONS(3939), 1, + sym_readonly, + ACTIONS(3877), 2, anon_sym_get, anon_sym_set, - STATE(1935), 3, + STATE(1918), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 16, + ACTIONS(2746), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134244,26 +134520,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [81381] = 11, + [81451] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3903), 1, + ACTIONS(3941), 1, anon_sym_STAR, - ACTIONS(3935), 1, + ACTIONS(3943), 1, anon_sym_async, - ACTIONS(3937), 1, + ACTIONS(3945), 1, sym_number, - ACTIONS(3939), 2, + ACTIONS(3947), 2, anon_sym_get, anon_sym_set, - STATE(1934), 3, + STATE(1925), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -134277,7 +134552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2744), 16, + ACTIONS(2746), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134294,83 +134569,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81441] = 4, + [81511] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 5, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(2716), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1557), 20, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [81487] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 1, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3869), 1, - anon_sym_STAR, ACTIONS(3941), 1, + anon_sym_STAR, + ACTIONS(3943), 1, + anon_sym_async, + ACTIONS(3945), 1, sym_number, - ACTIONS(3943), 2, + ACTIONS(3949), 1, + sym_readonly, + ACTIONS(3947), 2, anon_sym_get, anon_sym_set, - STATE(2185), 3, + STATE(1925), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134383,28 +134619,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [81545] = 12, + [81573] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3921), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3945), 1, - anon_sym_async, - ACTIONS(3947), 1, - sym_number, ACTIONS(3951), 1, - sym_readonly, - ACTIONS(3949), 2, + sym_number, + ACTIONS(3953), 2, anon_sym_get, anon_sym_set, - STATE(1933), 3, + STATE(2241), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -134418,10 +134649,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2744), 15, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134434,25 +134666,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81607] = 11, + sym_readonly, + [81631] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3953), 1, + ACTIONS(3859), 1, anon_sym_STAR, - ACTIONS(3955), 1, + ACTIONS(3861), 1, anon_sym_async, - ACTIONS(3957), 1, + ACTIONS(3863), 1, sym_number, - ACTIONS(3959), 2, + ACTIONS(3867), 2, anon_sym_get, anon_sym_set, - STATE(1915), 3, + STATE(1917), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -134466,7 +134699,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2744), 16, + ACTIONS(2746), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134483,23 +134716,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81667] = 10, + [81691] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3927), 1, + ACTIONS(3955), 1, anon_sym_STAR, - ACTIONS(3961), 1, + ACTIONS(3957), 1, sym_number, - ACTIONS(3963), 2, + ACTIONS(3959), 2, anon_sym_get, anon_sym_set, - STATE(2196), 3, + STATE(2253), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -134513,7 +134746,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 17, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134531,42 +134764,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81725] = 11, + [81749] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3921), 1, + ACTIONS(3859), 1, anon_sym_STAR, - ACTIONS(3945), 1, - anon_sym_async, - ACTIONS(3947), 1, + ACTIONS(3961), 1, sym_number, - ACTIONS(3949), 2, + ACTIONS(3963), 2, anon_sym_get, anon_sym_set, - STATE(1933), 3, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 16, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134580,39 +134812,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81785] = 11, + [81807] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3859), 1, + ACTIONS(3901), 1, anon_sym_STAR, - ACTIONS(3861), 1, + ACTIONS(3965), 1, anon_sym_async, - ACTIONS(3863), 1, + ACTIONS(3967), 1, sym_number, - ACTIONS(3867), 2, + ACTIONS(3969), 2, anon_sym_get, anon_sym_set, - STATE(1918), 3, + STATE(1933), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2744), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134629,27 +134861,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [81845] = 12, + [81867] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3869), 1, + ACTIONS(3859), 1, anon_sym_STAR, - ACTIONS(3871), 1, + ACTIONS(3861), 1, anon_sym_async, - ACTIONS(3873), 1, + ACTIONS(3863), 1, sym_number, - ACTIONS(3965), 1, + ACTIONS(3971), 1, sym_readonly, - ACTIONS(3877), 2, + ACTIONS(3867), 2, anon_sym_get, anon_sym_set, - STATE(1914), 3, + STATE(1917), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -134663,7 +134895,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2744), 15, + ACTIONS(2746), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134679,46 +134911,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81907] = 12, + [81929] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3859), 1, - anon_sym_STAR, - ACTIONS(3861), 1, - anon_sym_async, - ACTIONS(3863), 1, + ACTIONS(3744), 1, sym_number, - ACTIONS(3967), 1, - sym_readonly, - ACTIONS(3867), 2, - anon_sym_get, - anon_sym_set, - STATE(1918), 3, + ACTIONS(2778), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2242), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2716), 9, + ACTIONS(2716), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2744), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -134729,42 +134958,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [81969] = 11, + sym_readonly, + [81987] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3915), 1, + ACTIONS(3931), 1, anon_sym_STAR, - ACTIONS(3969), 1, - anon_sym_async, - ACTIONS(3971), 1, + ACTIONS(3973), 1, sym_number, - ACTIONS(3973), 2, + ACTIONS(3975), 2, anon_sym_get, anon_sym_set, - STATE(1926), 3, + STATE(2238), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2744), 16, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134778,20 +135007,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82029] = 10, + [82045] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3859), 1, + ACTIONS(3911), 1, anon_sym_STAR, - ACTIONS(3975), 1, + ACTIONS(3977), 1, sym_number, - ACTIONS(3977), 2, + ACTIONS(3979), 2, anon_sym_get, anon_sym_set, STATE(2255), 3, @@ -134800,15 +135029,15 @@ static uint16_t ts_small_parse_table[] = { sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -134826,41 +135055,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82087] = 10, + [82103] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3953), 1, + ACTIONS(3901), 1, anon_sym_STAR, - ACTIONS(3979), 1, + ACTIONS(3965), 1, + anon_sym_async, + ACTIONS(3967), 1, sym_number, - ACTIONS(3981), 2, + ACTIONS(3981), 1, + sym_readonly, + ACTIONS(3969), 2, anon_sym_get, anon_sym_set, - STATE(2202), 3, + STATE(1933), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2746), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134873,28 +135105,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [82145] = 12, + [82165] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3891), 1, + ACTIONS(3941), 1, anon_sym_STAR, - ACTIONS(3893), 1, - anon_sym_async, - ACTIONS(3895), 1, - sym_number, ACTIONS(3983), 1, - sym_readonly, - ACTIONS(3897), 2, + sym_number, + ACTIONS(3985), 2, anon_sym_get, anon_sym_set, - STATE(1930), 3, + STATE(2217), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -134908,10 +135135,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2744), 15, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -134924,30 +135152,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82207] = 12, + sym_readonly, + [82223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1539), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3915), 1, - anon_sym_STAR, - ACTIONS(3969), 1, - anon_sym_async, - ACTIONS(3971), 1, sym_number, - ACTIONS(3985), 1, - sym_readonly, - ACTIONS(3973), 2, + ACTIONS(2716), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(1537), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, - STATE(1926), 3, - sym_string, - sym__property_name, - sym_computed_property_name, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [82269] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 1, + anon_sym_EQ, + STATE(2742), 1, + aux_sym_object_repeat1, + ACTIONS(1539), 5, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, ACTIONS(2716), 9, sym__automatic_semicolon, anon_sym_COMMA, @@ -134958,12 +135218,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2744), 15, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -134974,49 +135237,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82269] = 16, + sym_readonly, + [82318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1121), 1, - anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1383), 1, - sym_number, - ACTIONS(1417), 1, - anon_sym_async, - ACTIONS(1421), 1, - sym_readonly, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - STATE(2782), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_get, - anon_sym_set, - STATE(2197), 3, + ACTIONS(3983), 1, + sym_number, + STATE(2217), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2716), 4, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -135027,35 +135282,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82338] = 16, + sym_readonly, + [82371] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, + ACTIONS(1172), 1, + anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(1417), 1, - anon_sym_async, - ACTIONS(1421), 1, - sym_readonly, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3987), 1, anon_sym_STAR, - ACTIONS(3989), 1, - anon_sym_RBRACE, - STATE(2821), 1, + STATE(2824), 1, aux_sym_object_repeat1, - ACTIONS(1419), 2, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135064,10 +135316,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 15, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135080,18 +135333,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82407] = 8, + sym_readonly, + [82436] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3903), 1, sym_number, - STATE(2203), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135105,7 +135359,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135125,32 +135379,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82460] = 8, + [82489] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3887), 1, + ACTIONS(3977), 1, sym_number, - STATE(2191), 3, + STATE(2255), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135170,18 +135424,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82513] = 8, + [82542] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3991), 1, + ACTIONS(3961), 1, sym_number, - STATE(2178), 3, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135195,7 +135449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135215,12 +135469,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82566] = 15, + [82595] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1121), 1, + ACTIONS(1172), 1, anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -135228,20 +135482,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(1417), 1, + ACTIONS(1413), 1, anon_sym_async, - ACTIONS(3756), 1, + ACTIONS(1417), 1, + sym_readonly, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3987), 1, anon_sym_STAR, - STATE(2782), 1, + STATE(2824), 1, aux_sym_object_repeat1, - ACTIONS(1419), 2, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135250,7 +135506,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 16, + ACTIONS(1411), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135266,47 +135522,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [82633] = 14, + [82664] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1172), 1, - anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1383), 1, - sym_number, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - STATE(2740), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_get, - anon_sym_set, - STATE(2197), 3, + ACTIONS(3957), 1, + sym_number, + STATE(2253), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2716), 4, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -135318,49 +135567,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82698] = 16, + [82717] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1172), 1, - anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1383), 1, - sym_number, - ACTIONS(1417), 1, - anon_sym_async, - ACTIONS(1421), 1, - sym_readonly, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - STATE(2740), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_get, - anon_sym_set, - STATE(2197), 3, + ACTIONS(3951), 1, + sym_number, + STATE(2241), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2716), 4, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -135371,31 +135611,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82767] = 14, + sym_readonly, + [82770] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1121), 1, - anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(3756), 1, + ACTIONS(1413), 1, + anon_sym_async, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3987), 1, anon_sym_STAR, - STATE(2782), 1, + ACTIONS(3989), 1, + anon_sym_RBRACE, + STATE(2677), 1, aux_sym_object_repeat1, - ACTIONS(1419), 2, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135404,11 +135647,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 17, + ACTIONS(1411), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135422,18 +135664,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82832] = 8, + [82837] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3993), 1, + ACTIONS(3991), 1, sym_number, - STATE(2044), 3, + STATE(2041), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135447,7 +135689,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2744), 19, + ACTIONS(2746), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135467,61 +135709,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82885] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3756), 1, - anon_sym_EQ, - STATE(2740), 1, - aux_sym_object_repeat1, - ACTIONS(1559), 5, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1557), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [82934] = 8, + [82890] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3921), 1, sym_number, - STATE(2170), 3, + STATE(2184), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135535,7 +135734,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135555,32 +135754,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [82987] = 8, + [82943] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3899), 1, + ACTIONS(3993), 1, sym_number, - STATE(2189), 3, + STATE(2181), 3, sym_string, sym__property_name, sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135600,31 +135799,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83040] = 14, + [82996] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, + ACTIONS(1172), 1, + anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(3756), 1, + ACTIONS(1413), 1, + anon_sym_async, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3987), 1, anon_sym_STAR, - ACTIONS(3997), 1, - anon_sym_RBRACE, - STATE(2671), 1, + STATE(2824), 1, aux_sym_object_repeat1, - ACTIONS(1419), 2, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135633,11 +135834,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 17, + ACTIONS(1411), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -135651,18 +135851,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83105] = 8, + [83063] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3999), 1, + ACTIONS(3973), 1, sym_number, - STATE(2028), 3, + STATE(2238), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135676,7 +135876,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2744), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135696,18 +135896,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83158] = 8, + [83116] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3979), 1, + ACTIONS(3995), 1, sym_number, - STATE(2202), 3, + STATE(2032), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135721,7 +135921,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + ACTIONS(2746), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135741,40 +135941,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83211] = 8, + [83169] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3881), 1, + ACTIONS(1383), 1, sym_number, - STATE(2227), 3, + ACTIONS(1413), 1, + anon_sym_async, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, + anon_sym_RBRACE, + STATE(2803), 1, + aux_sym_object_repeat1, + ACTIONS(1415), 2, + anon_sym_get, + anon_sym_set, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2716), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, + ACTIONS(1411), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -135786,83 +135993,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83264] = 8, + [83236] = 14, ACTIONS(3), 1, sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3961), 1, + ACTIONS(1383), 1, sym_number, - STATE(2196), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [83317] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - STATE(2782), 1, - aux_sym_object_repeat1, - ACTIONS(1559), 5, - anon_sym_STAR, + ACTIONS(3742), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_RBRACE, + STATE(2803), 1, + aux_sym_object_repeat1, + ACTIONS(1415), 2, + anon_sym_get, + anon_sym_set, + STATE(2204), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1557), 19, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -135874,7 +136044,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83366] = 16, + [83301] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -135885,24 +136055,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(1417), 1, + ACTIONS(1413), 1, anon_sym_async, - ACTIONS(1421), 1, + ACTIONS(1417), 1, sym_readonly, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3987), 1, anon_sym_STAR, ACTIONS(3997), 1, anon_sym_RBRACE, - STATE(2671), 1, + STATE(2803), 1, aux_sym_object_repeat1, - ACTIONS(1419), 2, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -135911,7 +136081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 15, + ACTIONS(1411), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135927,19 +136097,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83435] = 6, + [83370] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, - anon_sym_EQ, - STATE(2671), 1, - aux_sym_object_repeat1, - ACTIONS(1559), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1379), 1, anon_sym_DQUOTE, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3907), 1, sym_number, + STATE(2236), 3, + sym_string, + sym__property_name, + sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, anon_sym_COMMA, @@ -135950,7 +136122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1557), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -135970,7 +136142,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83484] = 14, + [83423] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, @@ -135983,18 +136155,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(3756), 1, + ACTIONS(1413), 1, + anon_sym_async, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3987), 1, anon_sym_STAR, - STATE(2778), 1, + STATE(2746), 1, aux_sym_object_repeat1, - ACTIONS(1419), 2, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -136003,11 +136177,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 17, + ACTIONS(1411), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -136021,49 +136194,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83549] = 16, + [83490] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1170), 1, - anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1383), 1, - sym_number, - ACTIONS(1417), 1, - anon_sym_async, - ACTIONS(1421), 1, - sym_readonly, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - STATE(2778), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_get, - anon_sym_set, - STATE(2197), 3, + ACTIONS(3999), 1, + sym_number, + STATE(2252), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2716), 4, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 15, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136074,21 +136238,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [83618] = 8, + sym_readonly, + [83543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(3740), 1, + anon_sym_EQ, + STATE(2824), 1, + aux_sym_object_repeat1, + ACTIONS(1539), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3917), 1, sym_number, - STATE(2262), 3, - sym_string, - sym__property_name, - sym_computed_property_name, ACTIONS(2716), 9, sym__automatic_semicolon, anon_sym_COMMA, @@ -136099,7 +136262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -136119,33 +136282,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83671] = 15, + [83592] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, + ACTIONS(1170), 1, + anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(1417), 1, + ACTIONS(1413), 1, anon_sym_async, - ACTIONS(3756), 1, + ACTIONS(1417), 1, + sym_readonly, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3987), 1, anon_sym_STAR, - ACTIONS(3989), 1, - anon_sym_RBRACE, - STATE(2821), 1, + STATE(2746), 1, aux_sym_object_repeat1, - ACTIONS(1419), 2, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -136154,7 +136319,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 16, + ACTIONS(1411), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -136170,34 +136335,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [83738] = 15, + [83661] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1170), 1, - anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(1417), 1, + ACTIONS(1413), 1, anon_sym_async, - ACTIONS(3756), 1, + ACTIONS(1417), 1, + sym_readonly, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3987), 1, anon_sym_STAR, - STATE(2778), 1, + ACTIONS(3989), 1, + anon_sym_RBRACE, + STATE(2677), 1, aux_sym_object_repeat1, - ACTIONS(1419), 2, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -136206,7 +136372,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 16, + ACTIONS(1411), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -136222,19 +136388,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [83805] = 8, + [83730] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3911), 1, + ACTIONS(3927), 1, sym_number, - STATE(2218), 3, + STATE(2194), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -136248,7 +136413,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -136268,40 +136433,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83858] = 8, + [83783] = 14, ACTIONS(3), 1, sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1170), 1, + anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3941), 1, + ACTIONS(1383), 1, sym_number, - STATE(2185), 3, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_STAR, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(1415), 2, + anon_sym_get, + anon_sym_set, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(2716), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136313,47 +136484,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83911] = 15, + [83848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1379), 1, + ACTIONS(3740), 1, + anon_sym_EQ, + STATE(2677), 1, + aux_sym_object_repeat1, + ACTIONS(1539), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1383), 1, sym_number, - ACTIONS(1417), 1, - anon_sym_async, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2671), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_get, - anon_sym_set, - STATE(2197), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 4, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136365,46 +136527,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [83978] = 14, + [83897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1379), 1, + ACTIONS(3740), 1, + anon_sym_EQ, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(1539), 5, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1383), 1, sym_number, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3989), 1, + ACTIONS(2716), 9, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2821), 1, - aux_sym_object_repeat1, - ACTIONS(1419), 2, - anon_sym_get, - anon_sym_set, - STATE(2197), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 4, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136416,12 +136570,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84043] = 15, + [83946] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1172), 1, + ACTIONS(1121), 1, anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -136429,20 +136583,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(1417), 1, - anon_sym_async, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3987), 1, anon_sym_STAR, - STATE(2740), 1, + STATE(2742), 1, aux_sym_object_repeat1, - ACTIONS(1419), 2, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -136451,57 +136603,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 16, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [84110] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - sym_number, - STATE(2174), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1415), 19, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136513,38 +136621,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84163] = 6, + [84011] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, - anon_sym_EQ, - STATE(2778), 1, - aux_sym_object_repeat1, - ACTIONS(1559), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1121), 1, + anon_sym_RBRACE, + ACTIONS(1379), 1, anon_sym_DQUOTE, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(1383), 1, sym_number, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1413), 1, + anon_sym_async, + ACTIONS(1417), 1, + sym_readonly, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_STAR, + STATE(2742), 1, + aux_sym_object_repeat1, + ACTIONS(1415), 2, + anon_sym_get, + anon_sym_set, + STATE(2204), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1557), 19, + ACTIONS(1411), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136555,19 +136674,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [84212] = 8, + [84080] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3975), 1, + ACTIONS(3879), 1, sym_number, - STATE(2255), 3, + STATE(2187), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -136581,7 +136699,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -136601,30 +136719,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84265] = 13, + [84133] = 14, ACTIONS(3), 1, sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(1417), 1, - anon_sym_async, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(3987), 1, anon_sym_STAR, - ACTIONS(1419), 2, + ACTIONS(3989), 1, + anon_sym_RBRACE, + STATE(2677), 1, + aux_sym_object_repeat1, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - ACTIONS(4001), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -136633,10 +136752,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 16, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_declare, @@ -136650,26 +136770,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84327] = 12, + [84198] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, + ACTIONS(1121), 1, + anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(3756), 1, + ACTIONS(1413), 1, + anon_sym_async, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3997), 1, - anon_sym_RBRACE, - STATE(2671), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + STATE(2742), 1, aux_sym_object_repeat1, - STATE(2197), 3, + ACTIONS(1415), 2, + anon_sym_get, + anon_sym_set, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -136678,15 +136805,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + ACTIONS(1411), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136698,41 +136822,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84387] = 17, + [84265] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(485), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1688), 1, sym_readonly, - ACTIONS(4005), 1, - anon_sym_RPAREN, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - STATE(1801), 1, + ACTIONS(4005), 1, + anon_sym_class, + STATE(1871), 1, aux_sym_export_statement_repeat1, STATE(1901), 1, sym_decorator, STATE(1902), 1, sym_accessibility_modifier, - STATE(2160), 1, + STATE(2158), 1, sym__parameter_name, - STATE(2363), 1, + STATE(2300), 1, sym_object, - STATE(2365), 1, + STATE(2311), 1, sym_array, - ACTIONS(4003), 2, + ACTIONS(4001), 2, sym_identifier, sym_this, ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2833), 3, + STATE(2664), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, @@ -136751,20 +136875,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84457] = 17, + [84335] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1383), 1, + sym_number, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3989), 1, + anon_sym_RBRACE, + STATE(2677), 1, + aux_sym_object_repeat1, + STATE(2204), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1411), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [84395] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(485), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1688), 1, sym_readonly, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - ACTIONS(4009), 1, + ACTIONS(4007), 1, anon_sym_RPAREN, STATE(1796), 1, aux_sym_export_statement_repeat1, @@ -136772,20 +136944,20 @@ static uint16_t ts_small_parse_table[] = { sym_decorator, STATE(1902), 1, sym_accessibility_modifier, - STATE(2160), 1, + STATE(2158), 1, sym__parameter_name, - STATE(2363), 1, + STATE(2300), 1, sym_object, - STATE(2365), 1, + STATE(2311), 1, sym_array, - ACTIONS(4003), 2, + ACTIONS(4001), 2, sym_identifier, sym_this, ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2985), 3, + STATE(3070), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, @@ -136804,68 +136976,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84527] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4015), 1, - anon_sym_LPAREN, - ACTIONS(4017), 1, - anon_sym_DOT, - STATE(1817), 1, - sym_arguments, - ACTIONS(4013), 9, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4011), 22, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [84575] = 12, + [84465] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(3756), 1, + ACTIONS(1413), 1, + anon_sym_async, + ACTIONS(1417), 1, + sym_readonly, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3989), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(1415), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4009), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2821), 1, - aux_sym_object_repeat1, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -136874,15 +137010,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + ACTIONS(1411), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136893,27 +137026,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [84635] = 12, + [84529] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1170), 1, - anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - STATE(2778), 1, - aux_sym_object_repeat1, - STATE(2197), 3, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(1415), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4009), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -136922,15 +137056,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -136942,20 +137074,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84695] = 17, + [84589] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(485), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1688), 1, sym_readonly, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - ACTIONS(4019), 1, + ACTIONS(4011), 1, anon_sym_RPAREN, STATE(1796), 1, aux_sym_export_statement_repeat1, @@ -136963,20 +137095,20 @@ static uint16_t ts_small_parse_table[] = { sym_decorator, STATE(1902), 1, sym_accessibility_modifier, - STATE(2160), 1, + STATE(2158), 1, sym__parameter_name, - STATE(2363), 1, + STATE(2300), 1, sym_object, - STATE(2365), 1, + STATE(2311), 1, sym_array, - ACTIONS(4003), 2, + ACTIONS(4001), 2, sym_identifier, sym_this, ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2985), 3, + STATE(3070), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, @@ -136995,71 +137127,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84765] = 17, + [84659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(465), 1, - anon_sym_RPAREN, - ACTIONS(485), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(4017), 1, + anon_sym_LPAREN, + ACTIONS(4019), 1, + anon_sym_DOT, + STATE(1818), 1, + sym_arguments, + ACTIONS(4015), 9, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(1688), 1, - sym_readonly, - ACTIONS(4007), 1, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(1797), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - STATE(1902), 1, - sym_accessibility_modifier, - STATE(2160), 1, - sym__parameter_name, - STATE(2363), 1, - sym_object, - STATE(2365), 1, - sym_array, - ACTIONS(4003), 2, - sym_identifier, - sym_this, - ACTIONS(1684), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2666), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1660), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4013), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, + sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84835] = 17, + sym_readonly, + [84707] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(485), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1688), 1, sym_readonly, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, ACTIONS(4021), 1, anon_sym_RPAREN, @@ -137069,20 +137190,20 @@ static uint16_t ts_small_parse_table[] = { sym_decorator, STATE(1902), 1, sym_accessibility_modifier, - STATE(2160), 1, + STATE(2158), 1, sym__parameter_name, - STATE(2363), 1, + STATE(2300), 1, sym_object, - STATE(2365), 1, + STATE(2311), 1, sym_array, - ACTIONS(4003), 2, + ACTIONS(4001), 2, sym_identifier, sym_this, ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2985), 3, + STATE(3070), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, @@ -137101,28 +137222,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [84905] = 12, + [84777] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1121), 1, + anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(1419), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4001), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2197), 3, + STATE(2742), 1, + aux_sym_object_repeat1, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -137131,13 +137250,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 17, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -137149,15 +137270,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [84965] = 6, + [84837] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(1688), 1, + sym_readonly, + ACTIONS(4003), 1, + anon_sym_LBRACK, + ACTIONS(4023), 1, + anon_sym_RPAREN, + STATE(1802), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + STATE(1902), 1, + sym_accessibility_modifier, + STATE(2158), 1, + sym__parameter_name, + STATE(2300), 1, + sym_object, + STATE(2311), 1, + sym_array, + ACTIONS(4001), 2, + sym_identifier, + sym_this, + ACTIONS(1684), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(2798), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1660), 14, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [84907] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(2772), 2, + ACTIONS(2778), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1559), 5, + ACTIONS(1539), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -137171,7 +137345,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(1557), 19, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -137191,70 +137365,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [85013] = 14, + [84955] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1383), 1, - sym_number, - ACTIONS(1417), 1, - anon_sym_async, - ACTIONS(1421), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(1688), 1, sym_readonly, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(1419), 2, - anon_sym_get, - anon_sym_set, + ACTIONS(4025), 1, + anon_sym_RPAREN, + STATE(1796), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + STATE(1902), 1, + sym_accessibility_modifier, + STATE(2158), 1, + sym__parameter_name, + STATE(2300), 1, + sym_object, + STATE(2311), 1, + sym_array, ACTIONS(4001), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2197), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1415), 15, + sym_identifier, + sym_this, + ACTIONS(1684), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3070), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1660), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - sym_identifier, + anon_sym_async, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85077] = 17, + [85025] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(485), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1688), 1, sym_readonly, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - ACTIONS(4023), 1, + ACTIONS(4027), 1, anon_sym_RPAREN, STATE(1796), 1, aux_sym_export_statement_repeat1, @@ -137262,20 +137439,20 @@ static uint16_t ts_small_parse_table[] = { sym_decorator, STATE(1902), 1, sym_accessibility_modifier, - STATE(2160), 1, + STATE(2158), 1, sym__parameter_name, - STATE(2363), 1, + STATE(2300), 1, sym_object, - STATE(2365), 1, + STATE(2311), 1, sym_array, - ACTIONS(4003), 2, + ACTIONS(4001), 2, sym_identifier, sym_this, ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2985), 3, + STATE(3070), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, @@ -137294,26 +137471,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85147] = 12, + [85095] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1172), 1, - anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - STATE(2740), 1, + ACTIONS(3997), 1, + anon_sym_RBRACE, + STATE(2803), 1, aux_sym_object_repeat1, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -137322,7 +137499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -137342,59 +137519,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [85207] = 17, + [85155] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(485), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(1688), 1, - sym_readonly, - ACTIONS(4007), 1, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1383), 1, + sym_number, + ACTIONS(1413), 1, + anon_sym_async, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4025), 1, - anon_sym_RPAREN, - STATE(1796), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - STATE(1902), 1, - sym_accessibility_modifier, - STATE(2160), 1, - sym__parameter_name, - STATE(2363), 1, - sym_object, - STATE(2365), 1, - sym_array, - ACTIONS(4003), 2, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(1415), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4009), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2204), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1411), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, sym_identifier, - sym_this, - ACTIONS(1684), 3, + anon_sym_static, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2985), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1660), 14, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [85217] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1170), 1, + anon_sym_RBRACE, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1383), 1, + sym_number, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, + anon_sym_LBRACK, + STATE(2746), 1, + aux_sym_object_repeat1, + STATE(2204), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, + sym_readonly, [85277] = 17, ACTIONS(3), 1, sym_comment, @@ -137402,34 +137623,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(485), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1688), 1, sym_readonly, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - ACTIONS(4027), 1, - anon_sym_class, - STATE(1876), 1, + ACTIONS(4029), 1, + anon_sym_RPAREN, + STATE(1796), 1, aux_sym_export_statement_repeat1, STATE(1901), 1, sym_decorator, STATE(1902), 1, sym_accessibility_modifier, - STATE(2160), 1, + STATE(2158), 1, sym__parameter_name, - STATE(2363), 1, + STATE(2300), 1, sym_object, - STATE(2365), 1, + STATE(2311), 1, sym_array, - ACTIONS(4003), 2, + ACTIONS(4001), 2, sym_identifier, sym_this, ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2707), 3, + STATE(3070), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, @@ -137453,7 +137674,7 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1121), 1, + ACTIONS(1172), 1, anon_sym_RBRACE, ACTIONS(1379), 1, anon_sym_DQUOTE, @@ -137461,13 +137682,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1383), 1, sym_number, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - STATE(2782), 1, + STATE(2824), 1, aux_sym_object_repeat1, - STATE(2197), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, @@ -137476,7 +137697,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -137501,36 +137722,36 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, + ACTIONS(465), 1, + anon_sym_RPAREN, ACTIONS(485), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1688), 1, sym_readonly, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - ACTIONS(4029), 1, - anon_sym_RPAREN, - STATE(1796), 1, + STATE(1807), 1, aux_sym_export_statement_repeat1, STATE(1901), 1, sym_decorator, STATE(1902), 1, sym_accessibility_modifier, - STATE(2160), 1, + STATE(2158), 1, sym__parameter_name, - STATE(2363), 1, + STATE(2300), 1, sym_object, - STATE(2365), 1, + STATE(2311), 1, sym_array, - ACTIONS(4003), 2, + ACTIONS(4001), 2, sym_identifier, sym_this, ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2985), 3, + STATE(2725), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, @@ -137554,41 +137775,41 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1123), 1, + ACTIONS(2714), 1, + anon_sym_namespace, + ACTIONS(2718), 1, anon_sym_type, - ACTIONS(1125), 1, + ACTIONS(2720), 1, anon_sym_import, - ACTIONS(1127), 1, + ACTIONS(2722), 1, anon_sym_var, - ACTIONS(1129), 1, + ACTIONS(2724), 1, anon_sym_let, - ACTIONS(1131), 1, + ACTIONS(2726), 1, anon_sym_const, - ACTIONS(1148), 1, + ACTIONS(2728), 1, anon_sym_class, - ACTIONS(1150), 1, + ACTIONS(2730), 1, anon_sym_async, - ACTIONS(1152), 1, + ACTIONS(2732), 1, anon_sym_function, - ACTIONS(1160), 1, + ACTIONS(2734), 1, anon_sym_abstract, - ACTIONS(1166), 1, + ACTIONS(2736), 1, + anon_sym_declare, + ACTIONS(2740), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(2742), 1, anon_sym_enum, - ACTIONS(1202), 1, - anon_sym_namespace, - ACTIONS(1206), 1, - anon_sym_declare, - ACTIONS(1208), 1, - anon_sym_module, ACTIONS(4031), 1, - anon_sym_default, + anon_sym_module, + ACTIONS(4033), 1, + anon_sym_global, STATE(1901), 1, sym_decorator, - STATE(2571), 1, + STATE(2582), 1, aux_sym_export_statement_repeat1, - STATE(598), 15, + STATE(2372), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -137631,19 +137852,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(1168), 1, anon_sym_enum, - ACTIONS(1192), 1, - anon_sym_global, - ACTIONS(1202), 1, + ACTIONS(1190), 1, anon_sym_namespace, - ACTIONS(1206), 1, + ACTIONS(1194), 1, anon_sym_declare, - ACTIONS(1244), 1, + ACTIONS(1196), 1, anon_sym_module, + ACTIONS(4035), 1, + anon_sym_default, STATE(1901), 1, sym_decorator, - STATE(2571), 1, + STATE(2544), 1, aux_sym_export_statement_repeat1, - STATE(605), 15, + STATE(594), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -137666,32 +137887,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(485), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1688), 1, sym_readonly, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - STATE(1876), 1, + STATE(1871), 1, aux_sym_export_statement_repeat1, STATE(1901), 1, sym_decorator, STATE(1902), 1, sym_accessibility_modifier, - STATE(2160), 1, + STATE(2158), 1, sym__parameter_name, - STATE(2363), 1, + STATE(2300), 1, sym_object, - STATE(2365), 1, + STATE(2311), 1, sym_array, - ACTIONS(4003), 2, + ACTIONS(4001), 2, sym_identifier, sym_this, ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2977), 3, + STATE(2937), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, @@ -137710,97 +137931,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85694] = 16, + [85694] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(485), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(1688), 1, - sym_readonly, - ACTIONS(4007), 1, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(1383), 1, + sym_number, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(3742), 1, anon_sym_LBRACK, - STATE(1876), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - STATE(1902), 1, - sym_accessibility_modifier, - STATE(2160), 1, - sym__parameter_name, - STATE(2363), 1, - sym_object, - STATE(2365), 1, - sym_array, - ACTIONS(4003), 2, - sym_identifier, - sym_this, - ACTIONS(1684), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2707), 3, - sym_rest_parameter, - sym_required_parameter, - sym_optional_parameter, - ACTIONS(1660), 14, + ACTIONS(4009), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2204), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2716), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [85761] = 20, + sym_readonly, + [85749] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2714), 1, + ACTIONS(1115), 1, anon_sym_namespace, - ACTIONS(2718), 1, + ACTIONS(1123), 1, anon_sym_type, - ACTIONS(2720), 1, + ACTIONS(1125), 1, anon_sym_import, - ACTIONS(2722), 1, + ACTIONS(1127), 1, anon_sym_var, - ACTIONS(2724), 1, + ACTIONS(1129), 1, anon_sym_let, - ACTIONS(2726), 1, + ACTIONS(1131), 1, anon_sym_const, - ACTIONS(2728), 1, + ACTIONS(1148), 1, anon_sym_class, - ACTIONS(2730), 1, + ACTIONS(1150), 1, anon_sym_async, - ACTIONS(2732), 1, + ACTIONS(1152), 1, anon_sym_function, - ACTIONS(2734), 1, + ACTIONS(1160), 1, anon_sym_abstract, - ACTIONS(2736), 1, + ACTIONS(1162), 1, anon_sym_declare, - ACTIONS(2738), 1, - anon_sym_module, - ACTIONS(2740), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(2742), 1, + ACTIONS(1168), 1, anon_sym_enum, - ACTIONS(4033), 1, - anon_sym_default, + ACTIONS(1206), 1, + anon_sym_module, + ACTIONS(1208), 1, + anon_sym_global, STATE(1901), 1, sym_decorator, - STATE(2613), 1, + STATE(2544), 1, aux_sym_export_statement_repeat1, - STATE(2316), 15, + STATE(596), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -137816,7 +138031,7 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [85836] = 20, + [85824] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -137841,21 +138056,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1160), 1, anon_sym_abstract, - ACTIONS(1162), 1, - anon_sym_declare, + ACTIONS(1164), 1, + anon_sym_module, ACTIONS(1166), 1, anon_sym_interface, ACTIONS(1168), 1, anon_sym_enum, - ACTIONS(1190), 1, - anon_sym_module, - ACTIONS(1192), 1, - anon_sym_global, + ACTIONS(1212), 1, + anon_sym_declare, + ACTIONS(4035), 1, + anon_sym_default, STATE(1901), 1, sym_decorator, - STATE(2571), 1, + STATE(2544), 1, aux_sym_export_statement_repeat1, - STATE(605), 15, + STATE(594), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -137871,46 +138086,84 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [85911] = 20, + [85899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4039), 10, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4037), 23, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_abstract, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [85940] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(2714), 1, + ACTIONS(1115), 1, anon_sym_namespace, - ACTIONS(2718), 1, + ACTIONS(1123), 1, anon_sym_type, - ACTIONS(2720), 1, + ACTIONS(1125), 1, anon_sym_import, - ACTIONS(2722), 1, + ACTIONS(1127), 1, anon_sym_var, - ACTIONS(2724), 1, + ACTIONS(1129), 1, anon_sym_let, - ACTIONS(2726), 1, + ACTIONS(1131), 1, anon_sym_const, - ACTIONS(2728), 1, + ACTIONS(1148), 1, anon_sym_class, - ACTIONS(2730), 1, + ACTIONS(1150), 1, anon_sym_async, - ACTIONS(2732), 1, + ACTIONS(1152), 1, anon_sym_function, - ACTIONS(2734), 1, + ACTIONS(1160), 1, anon_sym_abstract, - ACTIONS(2736), 1, - anon_sym_declare, - ACTIONS(2740), 1, + ACTIONS(1166), 1, anon_sym_interface, - ACTIONS(2742), 1, + ACTIONS(1168), 1, anon_sym_enum, - ACTIONS(4035), 1, - anon_sym_module, - ACTIONS(4037), 1, + ACTIONS(1208), 1, anon_sym_global, + ACTIONS(1212), 1, + anon_sym_declare, + ACTIONS(1244), 1, + anon_sym_module, STATE(1901), 1, sym_decorator, - STATE(2613), 1, + STATE(2544), 1, aux_sym_export_statement_repeat1, - STATE(2343), 15, + STATE(596), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -137926,39 +138179,39 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [85986] = 16, + [86015] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(485), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1688), 1, sym_readonly, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - STATE(1876), 1, + STATE(1871), 1, aux_sym_export_statement_repeat1, STATE(1901), 1, sym_decorator, STATE(1902), 1, sym_accessibility_modifier, - STATE(2160), 1, + STATE(2158), 1, sym__parameter_name, - STATE(2363), 1, + STATE(2300), 1, sym_object, - STATE(2365), 1, + STATE(2311), 1, sym_array, - ACTIONS(4003), 2, + ACTIONS(4001), 2, sym_identifier, sym_this, ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2726), 3, + STATE(2809), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, @@ -137977,7 +138230,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86053] = 20, + [86082] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, @@ -138002,21 +138255,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(1160), 1, anon_sym_abstract, + ACTIONS(1162), 1, + anon_sym_declare, ACTIONS(1164), 1, anon_sym_module, ACTIONS(1166), 1, anon_sym_interface, ACTIONS(1168), 1, anon_sym_enum, - ACTIONS(1198), 1, - anon_sym_declare, - ACTIONS(4031), 1, + ACTIONS(4035), 1, anon_sym_default, STATE(1901), 1, sym_decorator, - STATE(2571), 1, + STATE(2544), 1, aux_sym_export_statement_repeat1, - STATE(598), 15, + STATE(594), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -138032,13 +138285,62 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86128] = 20, + [86157] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1115), 1, + ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(1688), 1, + sym_readonly, + ACTIONS(4003), 1, + anon_sym_LBRACK, + STATE(1796), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + STATE(1902), 1, + sym_accessibility_modifier, + STATE(2158), 1, + sym__parameter_name, + STATE(2300), 1, + sym_object, + STATE(2311), 1, + sym_array, + ACTIONS(4001), 2, + sym_identifier, + sym_this, + ACTIONS(1684), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3070), 3, + sym_rest_parameter, + sym_required_parameter, + sym_optional_parameter, + ACTIONS(1660), 14, + anon_sym_export, anon_sym_namespace, + anon_sym_type, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [86224] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, ACTIONS(1123), 1, anon_sym_type, ACTIONS(1125), 1, @@ -138061,17 +138363,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(1168), 1, anon_sym_enum, - ACTIONS(1192), 1, - anon_sym_global, - ACTIONS(1198), 1, + ACTIONS(1190), 1, + anon_sym_namespace, + ACTIONS(1194), 1, anon_sym_declare, - ACTIONS(1240), 1, + ACTIONS(1208), 1, + anon_sym_global, + ACTIONS(1246), 1, anon_sym_module, STATE(1901), 1, sym_decorator, - STATE(2571), 1, + STATE(2544), 1, aux_sym_export_statement_repeat1, - STATE(605), 15, + STATE(596), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -138087,91 +138391,46 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86203] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(1383), 1, - sym_number, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(4001), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2197), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2716), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1415), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [86258] = 20, + [86299] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(1115), 1, + ACTIONS(2714), 1, anon_sym_namespace, - ACTIONS(1123), 1, + ACTIONS(2718), 1, anon_sym_type, - ACTIONS(1125), 1, + ACTIONS(2720), 1, anon_sym_import, - ACTIONS(1127), 1, + ACTIONS(2722), 1, anon_sym_var, - ACTIONS(1129), 1, + ACTIONS(2724), 1, anon_sym_let, - ACTIONS(1131), 1, + ACTIONS(2726), 1, anon_sym_const, - ACTIONS(1148), 1, + ACTIONS(2728), 1, anon_sym_class, - ACTIONS(1150), 1, + ACTIONS(2730), 1, anon_sym_async, - ACTIONS(1152), 1, + ACTIONS(2732), 1, anon_sym_function, - ACTIONS(1160), 1, + ACTIONS(2734), 1, anon_sym_abstract, - ACTIONS(1162), 1, + ACTIONS(2736), 1, anon_sym_declare, - ACTIONS(1164), 1, + ACTIONS(2738), 1, anon_sym_module, - ACTIONS(1166), 1, + ACTIONS(2740), 1, anon_sym_interface, - ACTIONS(1168), 1, + ACTIONS(2742), 1, anon_sym_enum, - ACTIONS(4031), 1, + ACTIONS(4041), 1, anon_sym_default, STATE(1901), 1, sym_decorator, - STATE(2571), 1, + STATE(2582), 1, aux_sym_export_statement_repeat1, - STATE(598), 15, + STATE(2509), 15, sym__declaration, sym_variable_declaration, sym_lexical_declaration, @@ -138187,39 +138446,39 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [86333] = 16, + [86374] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, ACTIONS(485), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, ACTIONS(1688), 1, sym_readonly, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, - STATE(1796), 1, + STATE(1871), 1, aux_sym_export_statement_repeat1, STATE(1901), 1, sym_decorator, STATE(1902), 1, sym_accessibility_modifier, - STATE(2160), 1, + STATE(2158), 1, sym__parameter_name, - STATE(2363), 1, + STATE(2300), 1, sym_object, - STATE(2365), 1, + STATE(2311), 1, sym_array, - ACTIONS(4003), 2, + ACTIONS(4001), 2, sym_identifier, sym_this, ACTIONS(1684), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2985), 3, + STATE(2664), 3, sym_rest_parameter, sym_required_parameter, sym_optional_parameter, @@ -138238,67 +138497,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [86400] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4041), 10, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4039), 23, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, [86441] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1170), 1, - anon_sym_RBRACE, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - STATE(2778), 1, + ACTIONS(3997), 1, + anon_sym_RBRACE, + STATE(2803), 1, aux_sym_object_repeat1, ACTIONS(2716), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1559), 5, + ACTIONS(1539), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1557), 19, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138323,24 +138544,24 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3997), 1, + ACTIONS(1170), 1, anon_sym_RBRACE, - STATE(2671), 1, + ACTIONS(3740), 1, + anon_sym_EQ, + STATE(2746), 1, aux_sym_object_repeat1, ACTIONS(2716), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1559), 5, + ACTIONS(1539), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1557), 19, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138365,24 +138586,24 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1172), 1, - anon_sym_RBRACE, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - STATE(2740), 1, + ACTIONS(3989), 1, + anon_sym_RBRACE, + STATE(2677), 1, aux_sym_object_repeat1, ACTIONS(2716), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1559), 5, + ACTIONS(1539), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1557), 19, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138407,24 +138628,24 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(1121), 1, anon_sym_RBRACE, - STATE(2821), 1, + ACTIONS(3740), 1, + anon_sym_EQ, + STATE(2742), 1, aux_sym_object_repeat1, ACTIONS(2716), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1559), 5, + ACTIONS(1539), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1557), 19, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138449,24 +138670,24 @@ static uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1121), 1, + ACTIONS(1172), 1, anon_sym_RBRACE, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - STATE(2782), 1, + STATE(2824), 1, aux_sym_object_repeat1, ACTIONS(2716), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1559), 5, + ACTIONS(1539), 5, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1557), 19, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138489,7 +138710,7 @@ static uint16_t ts_small_parse_table[] = { [86691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 9, + ACTIONS(3149), 9, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -138499,7 +138720,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(2951), 22, + ACTIONS(3147), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138525,7 +138746,7 @@ static uint16_t ts_small_parse_table[] = { [86730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3130), 9, + ACTIONS(3076), 9, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -138535,7 +138756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(3128), 22, + ACTIONS(3074), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138561,7 +138782,7 @@ static uint16_t ts_small_parse_table[] = { [86769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3160), 9, + ACTIONS(2966), 9, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -138571,7 +138792,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(3158), 22, + ACTIONS(2964), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138594,32 +138815,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [86808] = 6, + [86808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(4001), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2716), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1559), 5, + ACTIONS(4015), 9, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - ACTIONS(1557), 19, + anon_sym_AT, + ACTIONS(4013), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -138633,29 +138851,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [86853] = 3, + [86847] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 9, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(4009), 2, + anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(2716), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1539), 5, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - anon_sym_AT, - ACTIONS(4043), 22, + ACTIONS(1537), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -138672,7 +138893,7 @@ static uint16_t ts_small_parse_table[] = { [86892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 9, + ACTIONS(4045), 9, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -138682,7 +138903,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4011), 22, + ACTIONS(4043), 22, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138712,7 +138933,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(4047), 1, anon_sym_STAR, @@ -138727,11 +138948,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2250), 3, + STATE(2188), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 16, + ACTIONS(1411), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138755,24 +138976,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4055), 1, + ACTIONS(4047), 1, anon_sym_STAR, - ACTIONS(4057), 1, + ACTIONS(4051), 1, sym_number, - ACTIONS(4059), 2, + ACTIONS(4053), 2, anon_sym_get, anon_sym_set, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2175), 3, + STATE(2188), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 17, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138797,24 +139018,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4061), 1, + ACTIONS(4055), 1, anon_sym_STAR, - ACTIONS(4063), 1, + ACTIONS(4057), 1, sym_number, - ACTIONS(4065), 2, + ACTIONS(4059), 2, anon_sym_get, anon_sym_set, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2236), 3, + STATE(2250), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 17, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138832,36 +139053,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87089] = 9, + [87089] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4051), 1, + ACTIONS(4061), 1, + anon_sym_STAR, + ACTIONS(4063), 1, sym_number, - ACTIONS(4067), 1, - anon_sym_EQ_GT, + ACTIONS(4065), 2, + anon_sym_get, + anon_sym_set, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2250), 3, + STATE(2210), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -138873,37 +139095,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87139] = 10, + [87141] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, - anon_sym_STAR, ACTIONS(4051), 1, sym_number, - ACTIONS(4053), 2, - anon_sym_get, - anon_sym_set, + ACTIONS(4067), 1, + anon_sym_EQ_GT, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2250), 3, + STATE(2188), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 17, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -138922,7 +139143,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(4047), 1, anon_sym_STAR, @@ -138939,11 +139160,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2250), 3, + STATE(2188), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 15, + ACTIONS(1411), 15, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -138966,7 +139187,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, ACTIONS(4055), 1, anon_sym_STAR, @@ -138981,11 +139202,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2175), 3, + STATE(2250), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 16, + ACTIONS(1411), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139009,92 +139230,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3881), 1, - sym_number, - ACTIONS(2716), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2227), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1415), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [87348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4075), 9, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(4073), 20, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [87385] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(3903), 1, sym_number, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2213), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139114,32 +139262,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87432] = 8, + [87348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(4075), 9, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + sym_number, + anon_sym_AT, + ACTIONS(4073), 20, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_abstract, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [87385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 9, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3923), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, - ACTIONS(2716), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2174), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1415), 19, + anon_sym_AT, + ACTIONS(4077), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139153,10 +139330,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87479] = 3, + [87422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4081), 9, + ACTIONS(4083), 9, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -139166,7 +139343,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4079), 20, + ACTIONS(4081), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139187,16 +139364,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87516] = 8, + [87459] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4051), 1, + ACTIONS(4057), 1, sym_number, ACTIONS(2716), 3, anon_sym_LPAREN, @@ -139206,7 +139383,7 @@ static uint16_t ts_small_parse_table[] = { sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139226,10 +139403,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87563] = 3, + [87506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(999), 9, + ACTIONS(4087), 9, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -139239,7 +139416,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(1001), 20, + ACTIONS(4085), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139260,26 +139437,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87600] = 8, + [87543] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4089), 1, sym_number, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2203), 3, + STATE(2176), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139299,49 +139476,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87647] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(4007), 1, - anon_sym_LBRACK, - STATE(2317), 1, - sym_object, - STATE(2318), 1, - sym_array, - ACTIONS(1609), 2, - sym_identifier, - sym_this, - ACTIONS(1621), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1611), 18, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [87694] = 3, + [87590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4085), 9, + ACTIONS(4093), 9, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -139351,7 +139489,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4083), 20, + ACTIONS(4091), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139372,32 +139510,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87731] = 8, + [87627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(4097), 9, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3911), 1, sym_number, - ACTIONS(2716), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2218), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1415), 19, + anon_sym_AT, + ACTIONS(4095), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139411,26 +139544,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87778] = 8, + [87664] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3961), 1, + ACTIONS(3921), 1, sym_number, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2196), 3, + STATE(2184), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139450,32 +139583,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87825] = 8, + [87711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(4101), 9, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3979), 1, sym_number, - ACTIONS(2716), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2202), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1415), 19, + anon_sym_AT, + ACTIONS(4099), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139489,12 +139617,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87872] = 4, + [87748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 1, + ACTIONS(965), 9, sym__automatic_semicolon, - ACTIONS(935), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -139503,7 +139630,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(937), 20, + ACTIONS(967), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139524,66 +139651,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87911] = 8, + [87785] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(4007), 1, - anon_sym_LBRACK, - STATE(2333), 1, - sym_object, - STATE(2335), 1, - sym_array, - ACTIONS(4089), 2, - sym_identifier, - sym_this, - ACTIONS(4093), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4091), 18, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [87958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 9, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1379), 1, anon_sym_DQUOTE, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3973), 1, sym_number, - anon_sym_AT, - ACTIONS(4095), 20, + ACTIONS(2716), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2238), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139597,27 +139690,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [87995] = 3, + [87832] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 9, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1379), 1, anon_sym_DQUOTE, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3907), 1, sym_number, - anon_sym_AT, - ACTIONS(4099), 20, + ACTIONS(2716), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2236), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139631,26 +139729,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88032] = 8, + [87879] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4103), 1, + ACTIONS(3951), 1, sym_number, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2186), 3, + STATE(2241), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139670,27 +139768,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88079] = 3, + [87926] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 9, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1379), 1, anon_sym_DQUOTE, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3957), 1, sym_number, - anon_sym_AT, - ACTIONS(4105), 20, + ACTIONS(2716), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2253), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139704,31 +139807,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88116] = 8, + [87973] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(4003), 1, anon_sym_LBRACK, - ACTIONS(4109), 1, - sym_number, - ACTIONS(2716), 3, - anon_sym_LPAREN, - anon_sym_LT, + STATE(2326), 1, + sym_array, + STATE(2342), 1, + sym_object, + ACTIONS(1618), 2, + sym_identifier, + sym_this, + ACTIONS(1614), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK, - STATE(2212), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1620), 18, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, @@ -139743,26 +139846,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88163] = 8, + [88020] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3899), 1, + ACTIONS(3927), 1, sym_number, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2189), 3, + STATE(2194), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139782,10 +139885,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88210] = 3, + [88067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 9, + ACTIONS(4105), 9, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -139795,7 +139898,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4111), 20, + ACTIONS(4103), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139816,27 +139919,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88247] = 3, + [88104] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 9, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1379), 1, anon_sym_DQUOTE, + ACTIONS(1381), 1, anon_sym_SQUOTE, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(4107), 1, sym_number, - anon_sym_AT, - ACTIONS(4115), 20, + ACTIONS(2716), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2177), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -139850,10 +139958,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88284] = 3, + [88151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4121), 9, + ACTIONS(4111), 9, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -139863,7 +139971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4119), 20, + ACTIONS(4109), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139884,10 +139992,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88321] = 3, + [88188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(935), 9, + ACTIONS(4115), 9, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -139897,7 +140005,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(937), 20, + ACTIONS(4113), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139918,31 +140026,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88358] = 8, + [88225] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(1622), 1, + anon_sym_LBRACE, + ACTIONS(4003), 1, anon_sym_LBRACK, - ACTIONS(3887), 1, - sym_number, - ACTIONS(2716), 3, - anon_sym_LPAREN, - anon_sym_LT, + STATE(2367), 1, + sym_object, + STATE(2375), 1, + sym_array, + ACTIONS(4117), 2, + sym_identifier, + sym_this, + ACTIONS(4121), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK, - STATE(2191), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(4119), 18, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, @@ -139957,26 +140065,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88405] = 8, + [88272] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3975), 1, + ACTIONS(4051), 1, sym_number, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2255), 3, + STATE(2188), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -139996,7 +140104,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88452] = 3, + [88319] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4125), 9, @@ -140030,7 +140138,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88489] = 3, + [88356] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4129), 9, @@ -140064,67 +140172,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88526] = 8, + [88393] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(3961), 1, sym_number, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2175), 3, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, - anon_sym_export, - anon_sym_namespace, - anon_sym_type, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - sym_readonly, - [88573] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4131), 1, - sym__automatic_semicolon, - ACTIONS(901), 8, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(903), 20, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -140138,26 +140211,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88612] = 8, + [88440] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4131), 1, sym_number, ACTIONS(2716), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(2251), 3, + STATE(2248), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140177,13 +140250,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88659] = 4, + [88487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 2, + ACTIONS(4137), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(4137), 7, + ACTIONS(4135), 7, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -140191,7 +140264,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4135), 20, + ACTIONS(4133), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140212,32 +140285,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88698] = 8, + [88526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(4139), 1, + sym__automatic_semicolon, + ACTIONS(893), 8, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(4063), 1, sym_number, - ACTIONS(2716), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(2236), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1415), 19, + anon_sym_AT, + ACTIONS(895), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -140251,11 +140320,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88745] = 3, + [88565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4143), 9, + ACTIONS(4141), 1, sym__automatic_semicolon, + ACTIONS(1021), 8, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -140264,7 +140334,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(4141), 20, + ACTIONS(1023), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140285,39 +140355,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88782] = 13, + [88604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1021), 9, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3869), 1, - anon_sym_STAR, - ACTIONS(3871), 1, - anon_sym_async, - ACTIONS(3873), 1, sym_number, - ACTIONS(4145), 1, - anon_sym_static, - ACTIONS(4147), 1, - anon_sym_abstract, - ACTIONS(4149), 1, - sym_readonly, - ACTIONS(3877), 2, - anon_sym_get, - anon_sym_set, - STATE(1914), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2744), 14, + anon_sym_AT, + ACTIONS(1023), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_abstract, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -140328,26 +140388,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [88838] = 9, + sym_readonly, + [88641] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4151), 1, - anon_sym_RBRACE, - ACTIONS(4153), 1, + ACTIONS(3977), 1, sym_number, - STATE(2845), 1, - sym_enum_assignment, - STATE(2526), 3, + ACTIONS(2716), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2255), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140367,26 +140428,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88886] = 9, + [88688] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4153), 1, + ACTIONS(4143), 1, sym_number, - ACTIONS(4155), 1, - anon_sym_RBRACE, - STATE(2845), 1, - sym_enum_assignment, - STATE(2526), 3, + ACTIONS(2716), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2247), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140406,26 +140467,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88934] = 9, + [88735] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4153), 1, + ACTIONS(4063), 1, sym_number, - ACTIONS(4157), 1, - anon_sym_RBRACE, - STATE(2845), 1, - sym_enum_assignment, - STATE(2526), 3, + ACTIONS(2716), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(2210), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140445,26 +140506,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [88982] = 9, + [88782] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4159), 1, + ACTIONS(4145), 1, anon_sym_RBRACE, - ACTIONS(4161), 1, + ACTIONS(4147), 1, sym_number, - STATE(2670), 1, + STATE(2722), 1, sym_enum_assignment, - STATE(2475), 3, + STATE(2466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140484,26 +140545,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89030] = 9, + [88830] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4163), 1, + ACTIONS(4149), 1, anon_sym_RBRACE, - ACTIONS(4165), 1, + ACTIONS(4151), 1, sym_number, - STATE(2645), 1, + STATE(2934), 1, sym_enum_assignment, - STATE(2399), 3, + STATE(2563), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140523,26 +140584,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89078] = 9, + [88878] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4153), 1, + ACTIONS(4151), 1, sym_number, - ACTIONS(4167), 1, + ACTIONS(4153), 1, anon_sym_RBRACE, - STATE(2845), 1, + STATE(2934), 1, sym_enum_assignment, - STATE(2526), 3, + STATE(2563), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140562,35 +140623,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89126] = 10, + [88926] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(4169), 1, + ACTIONS(3869), 1, anon_sym_STAR, - ACTIONS(4171), 1, + ACTIONS(3871), 1, + anon_sym_async, + ACTIONS(3873), 1, sym_number, - ACTIONS(4175), 1, + ACTIONS(4155), 1, + anon_sym_static, + ACTIONS(4157), 1, + anon_sym_abstract, + ACTIONS(4159), 1, sym_readonly, - ACTIONS(4173), 2, + ACTIONS(3877), 2, anon_sym_get, anon_sym_set, - STATE(1921), 3, + STATE(1918), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2744), 16, + ACTIONS(2746), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -140601,37 +140666,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89175] = 12, + [88982] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1383), 1, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(4151), 1, sym_number, - ACTIONS(1417), 1, + ACTIONS(4161), 1, + anon_sym_RBRACE, + STATE(2934), 1, + sym_enum_assignment, + STATE(2563), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1411), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, anon_sym_async, - ACTIONS(1421), 1, - sym_readonly, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(4177), 1, + sym_identifier, anon_sym_static, - ACTIONS(1419), 2, anon_sym_get, anon_sym_set, - STATE(2197), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [89030] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(4151), 1, + sym_number, + ACTIONS(4163), 1, + anon_sym_RBRACE, + STATE(2934), 1, + sym_enum_assignment, + STATE(2563), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 14, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -140642,24 +140743,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89228] = 8, + sym_readonly, + [89078] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4153), 1, + ACTIONS(4165), 1, + anon_sym_RBRACE, + ACTIONS(4167), 1, sym_number, - STATE(2845), 1, + STATE(2834), 1, sym_enum_assignment, - STATE(2526), 3, + STATE(2405), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140679,27 +140783,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89273] = 3, + [89126] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 7, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(2346), 1, anon_sym_DQUOTE, + ACTIONS(2348), 1, anon_sym_SQUOTE, + ACTIONS(3738), 1, + anon_sym_STAR, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3776), 1, + anon_sym_async, + ACTIONS(3778), 1, sym_number, - anon_sym_AT, - ACTIONS(4179), 20, + ACTIONS(3782), 1, + sym_readonly, + ACTIONS(4169), 1, + anon_sym_static, + ACTIONS(3780), 2, + anon_sym_get, + anon_sym_set, + STATE(1926), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2746), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_abstract, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -140710,27 +140824,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - sym_readonly, - [89308] = 4, + [89179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 2, - anon_sym_LBRACE, + ACTIONS(3798), 7, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(1621), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1557), 20, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(4171), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, + anon_sym_abstract, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -140744,29 +140856,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89345] = 10, + [89214] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(4181), 1, + ACTIONS(4173), 1, anon_sym_STAR, - ACTIONS(4183), 1, + ACTIONS(4175), 1, sym_number, - ACTIONS(4187), 1, + ACTIONS(4179), 1, sym_readonly, - ACTIONS(4185), 2, + ACTIONS(4177), 2, anon_sym_get, anon_sym_set, - STATE(1917), 3, + STATE(1916), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2744), 16, + ACTIONS(2746), 16, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140783,33 +140895,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89394] = 12, + [89263] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4185), 1, + anon_sym_AT, + STATE(1871), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + ACTIONS(4183), 3, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + ACTIONS(4181), 21, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [89304] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2346), 1, anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3754), 1, - anon_sym_STAR, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3843), 1, + ACTIONS(3941), 1, + anon_sym_STAR, + ACTIONS(3943), 1, anon_sym_async, - ACTIONS(3845), 1, + ACTIONS(3945), 1, sym_number, - ACTIONS(3849), 1, + ACTIONS(3949), 1, sym_readonly, - ACTIONS(4189), 1, + ACTIONS(4188), 1, anon_sym_static, - ACTIONS(3847), 2, + ACTIONS(3947), 2, anon_sym_get, anon_sym_set, - STATE(1931), 3, + STATE(1925), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2744), 14, + ACTIONS(2746), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140824,33 +140971,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89447] = 12, + [89357] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, - anon_sym_LBRACK, - ACTIONS(3915), 1, - anon_sym_STAR, - ACTIONS(3969), 1, - anon_sym_async, - ACTIONS(3971), 1, + ACTIONS(1383), 1, sym_number, - ACTIONS(3985), 1, + ACTIONS(1413), 1, + anon_sym_async, + ACTIONS(1417), 1, sym_readonly, - ACTIONS(4191), 1, + ACTIONS(3742), 1, + anon_sym_LBRACK, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(4190), 1, anon_sym_static, - ACTIONS(3973), 2, + ACTIONS(1415), 2, anon_sym_get, anon_sym_set, - STATE(1926), 3, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2744), 14, + ACTIONS(1411), 14, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140865,24 +141012,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89500] = 6, + [89410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4197), 1, - anon_sym_AT, - STATE(1876), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - ACTIONS(4195), 3, + ACTIONS(1539), 2, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - ACTIONS(4193), 21, + ACTIONS(1614), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1537), 20, anon_sym_export, anon_sym_namespace, anon_sym_type, - anon_sym_class, anon_sym_async, sym_identifier, sym_this, @@ -140900,22 +141045,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, sym_readonly, - [89541] = 7, + [89447] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, + ACTIONS(4151), 1, + sym_number, + STATE(2934), 1, + sym_enum_assignment, + STATE(2563), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1411), 19, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + sym_readonly, + [89492] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(4192), 1, + anon_sym_STAR, + ACTIONS(4194), 1, sym_number, - STATE(2185), 3, + ACTIONS(4198), 1, + sym_readonly, + ACTIONS(4196), 2, + anon_sym_get, + anon_sym_set, + STATE(1915), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(2746), 16, + anon_sym_export, + anon_sym_namespace, + anon_sym_type, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [89541] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LBRACK, + ACTIONS(3995), 1, + sym_number, + STATE(2032), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2746), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140942,15 +141163,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(1383), 1, - sym_number, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - STATE(2197), 3, + ACTIONS(3927), 1, + sym_number, + STATE(2194), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -140977,15 +141198,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(3977), 1, sym_number, - STATE(2175), 3, + STATE(2255), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141012,15 +141233,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3961), 1, + ACTIONS(4057), 1, sym_number, - STATE(2196), 3, + STATE(2250), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141047,15 +141268,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3979), 1, + ACTIONS(3993), 1, sym_number, - STATE(2202), 3, + STATE(2181), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141082,15 +141303,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4077), 1, + ACTIONS(4107), 1, sym_number, - STATE(2213), 3, + STATE(2177), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141117,15 +141338,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3917), 1, + ACTIONS(4143), 1, sym_number, - STATE(2262), 3, + STATE(2247), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141152,15 +141373,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4063), 1, + ACTIONS(3879), 1, sym_number, - STATE(2236), 3, + STATE(2187), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141187,15 +141408,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3881), 1, + ACTIONS(4063), 1, sym_number, - STATE(2227), 3, + STATE(2210), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141222,15 +141443,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(3957), 1, sym_number, - STATE(2174), 3, + STATE(2253), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141257,15 +141478,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3975), 1, + ACTIONS(3744), 1, sym_number, - STATE(2255), 3, + STATE(2242), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141292,15 +141513,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3887), 1, + ACTIONS(3973), 1, sym_number, - STATE(2191), 3, + STATE(2238), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141327,15 +141548,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, - anon_sym_LBRACK, - ACTIONS(3911), 1, + ACTIONS(1383), 1, sym_number, - STATE(2218), 3, + ACTIONS(3742), 1, + anon_sym_LBRACK, + STATE(2204), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141362,15 +141583,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4109), 1, + ACTIONS(4089), 1, sym_number, - STATE(2212), 3, + STATE(2176), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141397,15 +141618,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3999), 1, sym_number, - STATE(2170), 3, + STATE(2252), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141432,15 +141653,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3991), 1, + ACTIONS(3983), 1, sym_number, - STATE(2178), 3, + STATE(2217), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141467,15 +141688,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4051), 1, + ACTIONS(3921), 1, sym_number, - STATE(2250), 3, + STATE(2184), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141502,15 +141723,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3774), 1, anon_sym_LBRACK, - ACTIONS(3999), 1, + ACTIONS(3991), 1, sym_number, - STATE(2028), 3, + STATE(2041), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2744), 19, + ACTIONS(2746), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141537,15 +141758,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4103), 1, + ACTIONS(3961), 1, sym_number, - STATE(2186), 3, + STATE(2193), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141572,15 +141793,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3903), 1, sym_number, - STATE(2203), 3, + STATE(2218), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141603,19 +141824,19 @@ static uint16_t ts_small_parse_table[] = { [90381] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3841), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3993), 1, + ACTIONS(4051), 1, sym_number, - STATE(2044), 3, + STATE(2188), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2744), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141642,15 +141863,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3899), 1, + ACTIONS(3907), 1, sym_number, - STATE(2189), 3, + STATE(2236), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141677,15 +141898,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(4133), 1, + ACTIONS(4131), 1, sym_number, - STATE(2251), 3, + STATE(2248), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141712,15 +141933,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(3758), 1, + ACTIONS(3742), 1, anon_sym_LBRACK, - ACTIONS(3760), 1, + ACTIONS(3951), 1, sym_number, - STATE(2229), 3, + STATE(2241), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1415), 19, + ACTIONS(1411), 19, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141773,20 +141994,20 @@ static uint16_t ts_small_parse_table[] = { [90582] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(1622), 1, anon_sym_LBRACE, - ACTIONS(4007), 1, + ACTIONS(4003), 1, anon_sym_LBRACK, ACTIONS(4204), 1, sym_readonly, - STATE(2317), 1, - sym_object, - STATE(2318), 1, + STATE(2326), 1, sym_array, - ACTIONS(1609), 2, + STATE(2342), 1, + sym_object, + ACTIONS(1618), 2, sym_identifier, sym_this, - ACTIONS(1611), 17, + ACTIONS(1620), 17, anon_sym_export, anon_sym_namespace, anon_sym_type, @@ -141829,17 +142050,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOT, ACTIONS(4227), 1, anon_sym_extends, - STATE(2061), 1, + STATE(2054), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2074), 1, + STATE(2068), 1, sym_type_arguments, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2638), 1, + STATE(2523), 1, sym_constraint, - STATE(3043), 1, + STATE(2944), 1, sym_default_type, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, [90680] = 18, @@ -141867,17 +142088,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(4229), 1, anon_sym_SLASH, - STATE(2055), 1, + STATE(2052), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2074), 1, + STATE(2068), 1, sym_type_arguments, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2638), 1, + STATE(2523), 1, sym_constraint, - STATE(3043), 1, + STATE(2944), 1, sym_default_type, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, [90736] = 18, @@ -141905,28 +142126,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_extends, ACTIONS(4231), 1, anon_sym_SLASH, - STATE(2049), 1, + STATE(2051), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2074), 1, + STATE(2068), 1, sym_type_arguments, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2638), 1, + STATE(2523), 1, sym_constraint, - STATE(3043), 1, + STATE(2944), 1, sym_default_type, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, [90792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1053), 4, + ACTIONS(985), 4, anon_sym_EQ, anon_sym_while, anon_sym_SLASH, sym_identifier, - ACTIONS(1051), 12, + ACTIONS(983), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -141942,49 +142163,9 @@ static uint16_t ts_small_parse_table[] = { [90816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 3, - anon_sym_EQ, - anon_sym_while, - sym_identifier, - ACTIONS(1654), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, - [90839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, + ACTIONS(1009), 1, anon_sym_PIPE, - ACTIONS(921), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE_RBRACE, - [90862] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1015), 1, - anon_sym_PIPE, - ACTIONS(1013), 14, + ACTIONS(1007), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -141999,14 +142180,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [90885] = 3, + [90839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1644), 3, + ACTIONS(1628), 3, anon_sym_EQ, anon_sym_while, sym_identifier, - ACTIONS(1642), 12, + ACTIONS(1626), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -142019,20 +142200,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_BQUOTE, - [90908] = 7, + [90862] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, + ACTIONS(1581), 1, anon_sym_EQ, - ACTIONS(2272), 1, + ACTIONS(2318), 1, anon_sym_is, ACTIONS(4216), 1, anon_sym_LT, ACTIONS(4233), 1, anon_sym_DOT, - STATE(420), 1, + STATE(426), 1, sym_type_arguments, - ACTIONS(1577), 10, + ACTIONS(1579), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -142043,14 +142224,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - [90939] = 3, + [90893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1607), 3, + ACTIONS(1027), 1, + anon_sym_PIPE, + ACTIONS(1025), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [90916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1612), 3, anon_sym_EQ, anon_sym_while, sym_identifier, - ACTIONS(1605), 12, + ACTIONS(1610), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -142063,34 +142264,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_BQUOTE, - [90962] = 6, + [90939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1646), 3, anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_LT, - ACTIONS(4233), 1, - anon_sym_DOT, - STATE(420), 1, - sym_type_arguments, - ACTIONS(1650), 10, + anon_sym_while, + sym_identifier, + ACTIONS(1644), 12, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + sym_jsx_identifier, anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - [90990] = 13, + anon_sym_BQUOTE, + [90962] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, @@ -142100,272 +142299,253 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(4241), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2272), 1, - sym__call_signature, - STATE(2277), 1, + STATE(2333), 1, sym_type_annotation, - STATE(2705), 1, + STATE(2514), 1, + sym__call_signature, + STATE(2694), 1, sym__initializer, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, ACTIONS(4237), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [91032] = 13, + [91004] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + anon_sym_is, + ACTIONS(4208), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_LT, + ACTIONS(4233), 1, + anon_sym_DOT, + STATE(426), 1, + sym_type_arguments, + STATE(2523), 1, + sym_constraint, + STATE(2944), 1, + sym_default_type, + ACTIONS(4243), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(4246), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(1579), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [91042] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, ACTIONS(4235), 1, anon_sym_EQ, - ACTIONS(4245), 1, + ACTIONS(4250), 1, anon_sym_BANG, - ACTIONS(4247), 1, + ACTIONS(4252), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2460), 1, + STATE(2287), 1, sym_type_annotation, - STATE(2479), 1, + STATE(2679), 1, sym__call_signature, - STATE(2791), 1, + STATE(2699), 1, sym__initializer, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4243), 3, + ACTIONS(4248), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [91074] = 13, + [91084] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, ACTIONS(4235), 1, anon_sym_EQ, - ACTIONS(4251), 1, + ACTIONS(4256), 1, anon_sym_BANG, - ACTIONS(4253), 1, + ACTIONS(4258), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2339), 1, + STATE(2454), 1, sym_type_annotation, - STATE(2438), 1, + STATE(2654), 1, sym__call_signature, - STATE(2704), 1, + STATE(2655), 1, sym__initializer, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4249), 3, + ACTIONS(4254), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [91116] = 13, + [91126] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, ACTIONS(4235), 1, anon_sym_EQ, - ACTIONS(4239), 1, + ACTIONS(4250), 1, anon_sym_BANG, - ACTIONS(4255), 1, + ACTIONS(4260), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2277), 1, + STATE(2287), 1, sym_type_annotation, - STATE(2647), 1, + STATE(2315), 1, sym__call_signature, - STATE(2705), 1, + STATE(2699), 1, sym__initializer, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4237), 3, + ACTIONS(4248), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [91158] = 13, + [91168] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, ACTIONS(4235), 1, anon_sym_EQ, - ACTIONS(4259), 1, + ACTIONS(4256), 1, anon_sym_BANG, - ACTIONS(4261), 1, + ACTIONS(4262), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2447), 1, + STATE(2349), 1, sym__call_signature, - STATE(2510), 1, + STATE(2454), 1, sym_type_annotation, - STATE(2807), 1, + STATE(2655), 1, sym__initializer, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4257), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [91200] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_is, - ACTIONS(4208), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_LT, - ACTIONS(4233), 1, - anon_sym_DOT, - STATE(420), 1, - sym_type_arguments, - STATE(2638), 1, - sym_constraint, - STATE(3043), 1, - sym_default_type, - ACTIONS(4263), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(4266), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(1577), 3, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [91238] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 1, - anon_sym_PIPE, - ACTIONS(2200), 1, - anon_sym_is, - ACTIONS(4268), 1, - anon_sym_LT, - ACTIONS(4270), 1, - anon_sym_DOT, - STATE(1995), 1, - sym_type_arguments, - ACTIONS(1577), 9, + ACTIONS(4254), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE_RBRACE, - [91268] = 13, + [91210] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, ACTIONS(4235), 1, anon_sym_EQ, - ACTIONS(4259), 1, + ACTIONS(4266), 1, anon_sym_BANG, - ACTIONS(4272), 1, + ACTIONS(4268), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2510), 1, + STATE(2431), 1, + sym__call_signature, + STATE(2433), 1, sym_type_annotation, - STATE(2807), 1, + STATE(2744), 1, sym__initializer, - STATE(2834), 1, - sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4257), 3, + ACTIONS(4264), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [91310] = 9, + [91252] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(1656), 1, + anon_sym_EQ, ACTIONS(4216), 1, anon_sym_LT, ACTIONS(4233), 1, anon_sym_DOT, - ACTIONS(4278), 1, - anon_sym_GT, - ACTIONS(4281), 1, - anon_sym_is, - STATE(420), 1, + STATE(426), 1, sym_type_arguments, - ACTIONS(4274), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(4276), 2, + ACTIONS(1654), 10, anon_sym_LBRACE, - sym_jsx_identifier, - ACTIONS(1577), 5, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - [91344] = 5, + [91280] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 1, - anon_sym_EQ, ACTIONS(4216), 1, anon_sym_LT, - STATE(430), 1, + ACTIONS(4233), 1, + anon_sym_DOT, + ACTIONS(4274), 1, + anon_sym_GT, + ACTIONS(4277), 1, + anon_sym_is, + STATE(426), 1, sym_type_arguments, - ACTIONS(1692), 10, + ACTIONS(4270), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4272), 2, anon_sym_LBRACE, + sym_jsx_identifier, + ACTIONS(1579), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - [91369] = 6, + [91314] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1581), 1, anon_sym_PIPE, - ACTIONS(4268), 1, + ACTIONS(2173), 1, + anon_sym_is, + ACTIONS(4279), 1, anon_sym_LT, - ACTIONS(4270), 1, + ACTIONS(4281), 1, anon_sym_DOT, - STATE(1995), 1, + STATE(1987), 1, sym_type_arguments, - ACTIONS(1650), 9, + ACTIONS(1579), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -142375,283 +142555,296 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [91396] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4216), 1, - anon_sym_LT, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(4285), 1, - anon_sym_GT, - ACTIONS(4287), 1, - anon_sym_SLASH, - STATE(2053), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2074), 1, - sym_type_arguments, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [91437] = 10, + [91344] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4291), 1, + ACTIONS(4285), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2389), 1, + STATE(2477), 1, sym_type_annotation, - STATE(2489), 1, + STATE(2499), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4289), 5, + ACTIONS(4283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [91472] = 13, + [91379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, + ACTIONS(1698), 1, + anon_sym_EQ, ACTIONS(4216), 1, anon_sym_LT, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(4285), 1, - anon_sym_GT, - ACTIONS(4293), 1, - anon_sym_SLASH, - STATE(2046), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2074), 1, + STATE(429), 1, sym_type_arguments, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [91513] = 10, + ACTIONS(1696), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + [91404] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4297), 1, + ACTIONS(4289), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2308), 1, - sym__call_signature, - STATE(2309), 1, + STATE(2280), 1, sym_type_annotation, - STATE(2909), 1, + STATE(2313), 1, + sym__call_signature, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4295), 5, + ACTIONS(4287), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [91548] = 10, + [91439] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, + ACTIONS(2186), 1, + anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4299), 1, - anon_sym_COLON, - ACTIONS(4301), 1, + ACTIONS(4291), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2126), 1, + STATE(2159), 1, sym__call_signature, - STATE(2309), 1, + STATE(2280), 1, sym_type_annotation, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4295), 5, + ACTIONS(4287), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [91583] = 10, + [91474] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4305), 1, + ACTIONS(4293), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2440), 1, - sym_type_annotation, - STATE(2443), 1, + STATE(2157), 1, sym__call_signature, - STATE(2909), 1, + STATE(2477), 1, + sym_type_annotation, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4303), 5, + ACTIONS(4283), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [91618] = 10, + [91509] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4307), 1, + ACTIONS(4297), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2114), 1, + STATE(2290), 1, sym__call_signature, - STATE(2389), 1, + STATE(2325), 1, sym_type_annotation, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4289), 5, + ACTIONS(4295), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [91653] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1497), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_LT, - STATE(430), 1, - sym_type_arguments, - ACTIONS(1495), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - [91678] = 10, + [91544] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4309), 1, + ACTIONS(4301), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2109), 1, + STATE(2296), 1, sym__call_signature, - STATE(2440), 1, + STATE(2314), 1, sym_type_annotation, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4303), 5, + ACTIONS(4299), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [91713] = 10, + [91579] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1656), 1, + anon_sym_PIPE, + ACTIONS(4279), 1, + anon_sym_LT, + ACTIONS(4281), 1, + anon_sym_DOT, + STATE(1987), 1, + sym_type_arguments, + ACTIONS(1654), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [91606] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, - anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4313), 1, + ACTIONS(4303), 1, + anon_sym_COLON, + ACTIONS(4305), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2391), 1, - sym_type_annotation, - STATE(2403), 1, + STATE(2133), 1, sym__call_signature, - STATE(2909), 1, + STATE(2314), 1, + sym_type_annotation, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4311), 5, + ACTIONS(4299), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [91748] = 10, + [91641] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, + anon_sym_LT, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(4309), 1, + anon_sym_GT, + ACTIONS(4311), 1, + anon_sym_SLASH, + STATE(2040), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2068), 1, + sym_type_arguments, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, + sym_jsx_expression, + sym_jsx_attribute, + [91682] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4315), 1, + ACTIONS(4313), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2107), 1, + STATE(2163), 1, sym__call_signature, - STATE(2391), 1, + STATE(2325), 1, sym_type_annotation, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4311), 5, + ACTIONS(4295), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [91783] = 12, + [91717] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1529), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + anon_sym_LT, + STATE(429), 1, + sym_type_arguments, + ACTIONS(1527), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + [91742] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -142664,159 +142857,277 @@ static uint16_t ts_small_parse_table[] = { sym_jsx_identifier, ACTIONS(4225), 1, anon_sym_DOT, - ACTIONS(4285), 1, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(4309), 1, anon_sym_GT, - ACTIONS(4293), 1, + ACTIONS(4315), 1, anon_sym_SLASH, - STATE(2046), 1, + STATE(2028), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2074), 1, + STATE(2068), 1, sym_type_arguments, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [91821] = 11, + [91783] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2287), 1, - sym_type_annotation, - STATE(2290), 1, + STATE(2155), 1, sym__call_signature, - STATE(2714), 1, - sym__initializer, - STATE(2909), 1, + STATE(2439), 1, + sym_type_annotation, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4317), 3, + ACTIONS(4317), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [91857] = 11, + anon_sym_PIPE_RBRACE, + [91815] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, + anon_sym_LT, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_GT, + ACTIONS(4315), 1, + anon_sym_SLASH, + STATE(2028), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2068), 1, + sym_type_arguments, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, + sym_jsx_expression, + sym_jsx_attribute, + [91853] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2318), 1, + anon_sym_is, + ACTIONS(4216), 1, + anon_sym_LT, + ACTIONS(4233), 1, + anon_sym_DOT, + ACTIONS(4319), 1, + anon_sym_RPAREN, + STATE(426), 1, + sym_type_arguments, + ACTIONS(1579), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2448), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [91883] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, + anon_sym_LT, + ACTIONS(4221), 1, + anon_sym_SLASH, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(4309), 1, + anon_sym_GT, + STATE(2054), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2068), 1, + sym_type_arguments, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, + sym_jsx_expression, + sym_jsx_attribute, + [91921] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, ACTIONS(4235), 1, anon_sym_EQ, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2476), 1, + STATE(2511), 1, sym_type_annotation, - STATE(2793), 1, - sym__call_signature, - STATE(2803), 1, + STATE(2685), 1, sym__initializer, - STATE(2909), 1, + STATE(2691), 1, + sym__call_signature, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4319), 3, + ACTIONS(4322), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [91957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(983), 1, + anon_sym_DOT, + ACTIONS(1409), 1, + anon_sym_PIPE, + ACTIONS(1407), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [91893] = 9, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [91979] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, + anon_sym_LT, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(4229), 1, + anon_sym_SLASH, + ACTIONS(4309), 1, + anon_sym_GT, + STATE(2052), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2068), 1, + sym_type_arguments, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, + sym_jsx_expression, + sym_jsx_attribute, + [92017] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1707), 1, + anon_sym_EQ, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(1705), 10, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + [92039] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2113), 1, + STATE(2318), 1, sym__call_signature, - STATE(2511), 1, + STATE(2354), 1, sym_type_annotation, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4321), 5, + ACTIONS(4324), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [91925] = 11, + [92071] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, ACTIONS(4235), 1, anon_sym_EQ, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2361), 1, - sym__call_signature, - STATE(2508), 1, + STATE(2285), 1, sym_type_annotation, - STATE(2776), 1, + STATE(2675), 1, sym__initializer, - STATE(2909), 1, + STATE(2681), 1, + sym__call_signature, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4323), 3, + ACTIONS(4326), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [91961] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1705), 1, - anon_sym_EQ, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(1703), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - [91983] = 9, + [92107] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2106), 1, + STATE(2366), 1, sym__call_signature, - STATE(2380), 1, + STATE(2369), 1, sym_type_annotation, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4325), 5, + ACTIONS(4328), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92015] = 12, + [92139] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -142829,112 +143140,135 @@ static uint16_t ts_small_parse_table[] = { sym_jsx_identifier, ACTIONS(4225), 1, anon_sym_DOT, - ACTIONS(4231), 1, - anon_sym_SLASH, - ACTIONS(4285), 1, + ACTIONS(4309), 1, anon_sym_GT, - STATE(2049), 1, + ACTIONS(4311), 1, + anon_sym_SLASH, + STATE(2040), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2074), 1, + STATE(2068), 1, sym_type_arguments, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [92053] = 9, + [92177] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2059), 1, sym_formal_parameters, - STATE(2393), 1, - sym_type_annotation, - STATE(2405), 1, + STATE(2489), 1, sym__call_signature, - STATE(2909), 1, + STATE(2511), 1, + sym_type_annotation, + STATE(2685), 1, + sym__initializer, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4327), 5, + ACTIONS(4322), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [92085] = 9, + [92213] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2380), 1, - sym_type_annotation, - STATE(2385), 1, + STATE(2160), 1, sym__call_signature, - STATE(2909), 1, + STATE(2383), 1, + sym_type_annotation, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4325), 5, + ACTIONS(4330), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [92245] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1698), 1, + anon_sym_PIPE, + ACTIONS(4279), 1, + anon_sym_LT, + STATE(1994), 1, + sym_type_arguments, + ACTIONS(1696), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE_RBRACE, - [92117] = 9, + [92269] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2108), 1, - sym__call_signature, - STATE(2393), 1, + STATE(2439), 1, sym_type_annotation, - STATE(2909), 1, + STATE(2469), 1, + sym__call_signature, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4327), 5, + ACTIONS(4317), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92149] = 9, + [92301] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2059), 1, sym_formal_parameters, - STATE(2110), 1, - sym__call_signature, - STATE(2439), 1, + STATE(2501), 1, sym_type_annotation, - STATE(2909), 1, + STATE(2502), 1, + sym__call_signature, + STATE(2652), 1, + sym__initializer, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4329), 5, + ACTIONS(4332), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [92181] = 12, + [92337] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -142947,103 +143281,54 @@ static uint16_t ts_small_parse_table[] = { sym_jsx_identifier, ACTIONS(4225), 1, anon_sym_DOT, - ACTIONS(4285), 1, - anon_sym_GT, - ACTIONS(4287), 1, - anon_sym_SLASH, - STATE(2053), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2074), 1, - sym_type_arguments, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [92219] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4216), 1, - anon_sym_LT, - ACTIONS(4221), 1, + ACTIONS(4231), 1, anon_sym_SLASH, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(4285), 1, + ACTIONS(4309), 1, anon_sym_GT, - STATE(2061), 1, + STATE(2051), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2074), 1, + STATE(2068), 1, sym_type_arguments, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [92257] = 11, + [92375] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, ACTIONS(4235), 1, anon_sym_EQ, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2408), 1, - sym_type_annotation, - STATE(2425), 1, + STATE(2424), 1, sym__call_signature, - STATE(2784), 1, - sym__initializer, - STATE(2909), 1, - sym_type_parameters, - ACTIONS(4331), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [92293] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2181), 1, - anon_sym_COLON, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2439), 1, + STATE(2471), 1, sym_type_annotation, - STATE(2452), 1, - sym__call_signature, - STATE(2909), 1, + STATE(2702), 1, + sym__initializer, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4329), 5, + ACTIONS(4334), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [92325] = 5, + [92411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 1, + ACTIONS(1529), 1, anon_sym_PIPE, - ACTIONS(4268), 1, + ACTIONS(4279), 1, anon_sym_LT, - STATE(1973), 1, + STATE(1994), 1, sym_type_arguments, - ACTIONS(1692), 9, + ACTIONS(1527), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143053,174 +143338,144 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [92349] = 11, + [92435] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2508), 1, + STATE(2383), 1, sym_type_annotation, - STATE(2776), 1, - sym__initializer, - STATE(2832), 1, + STATE(2478), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4323), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [92385] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1497), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, - anon_sym_LT, - STATE(1973), 1, - sym_type_arguments, - ACTIONS(1495), 9, + ACTIONS(4330), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE_RBRACE, - [92409] = 9, + [92467] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2511), 1, - sym_type_annotation, - STATE(2513), 1, + STATE(2164), 1, sym__call_signature, - STATE(2909), 1, + STATE(2354), 1, + sym_type_annotation, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4321), 5, + ACTIONS(4324), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [92441] = 8, + [92499] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 1, - anon_sym_is, - ACTIONS(4216), 1, + ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4233), 1, - anon_sym_DOT, - ACTIONS(4333), 1, - anon_sym_RPAREN, - STATE(420), 1, - sym_type_arguments, - ACTIONS(1577), 3, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2458), 4, + ACTIONS(2186), 1, + anon_sym_COLON, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(4235), 1, anon_sym_EQ, + STATE(2059), 1, + sym_formal_parameters, + STATE(2285), 1, + sym_type_annotation, + STATE(2329), 1, + sym__call_signature, + STATE(2675), 1, + sym__initializer, + STATE(2990), 1, + sym_type_parameters, + ACTIONS(4326), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [92471] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4216), 1, - anon_sym_LT, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(4229), 1, - anon_sym_SLASH, - ACTIONS(4285), 1, - anon_sym_GT, - STATE(2055), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2074), 1, - sym_type_arguments, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [92509] = 11, + anon_sym_SEMI, + [92535] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2476), 1, - sym_type_annotation, - STATE(2481), 1, + STATE(2161), 1, sym__call_signature, - STATE(2803), 1, - sym__initializer, - STATE(2909), 1, + STATE(2369), 1, + sym_type_annotation, + STATE(2990), 1, sym_type_parameters, - ACTIONS(4319), 3, + ACTIONS(4328), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [92545] = 4, + anon_sym_PIPE_RBRACE, + [92567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_DOT, - ACTIONS(1409), 1, - anon_sym_PIPE, - ACTIONS(1407), 10, + ACTIONS(3740), 1, + anon_sym_EQ, + STATE(2742), 1, + aux_sym_object_repeat1, + ACTIONS(2716), 9, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [92588] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3740), 1, anon_sym_EQ, - anon_sym_LBRACE, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(2716), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LT, - anon_sym_AMP, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [92567] = 5, + [92609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1725), 1, + ACTIONS(1713), 1, anon_sym_EQ, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(1723), 8, + ACTIONS(1711), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -143229,14 +143484,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [92590] = 4, + [92632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, + ACTIONS(1707), 1, anon_sym_PIPE, ACTIONS(4340), 1, anon_sym_DOT, - ACTIONS(1703), 9, + ACTIONS(1705), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143246,28 +143501,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [92611] = 5, + [92653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(1737), 8, - anon_sym_LBRACE, + STATE(2824), 1, + aux_sym_object_repeat1, + ACTIONS(2716), 9, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [92634] = 2, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [92674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 11, + ACTIONS(3478), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -143279,34 +143533,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [92651] = 5, + [92691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 1, - anon_sym_EQ, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, + ACTIONS(985), 1, anon_sym_PIPE, - ACTIONS(1733), 8, + ACTIONS(983), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_while, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - [92674] = 5, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [92710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1713), 1, + ACTIONS(1730), 1, anon_sym_EQ, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(1711), 8, + ACTIONS(1728), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -143315,62 +143567,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [92697] = 4, + [92733] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(1738), 1, anon_sym_EQ, - STATE(2671), 1, - aux_sym_object_repeat1, - ACTIONS(2716), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [92718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1053), 1, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(1051), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1736), 8, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PIPE_RBRACE, - [92737] = 4, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [92756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, - anon_sym_EQ, - STATE(2782), 1, - aux_sym_object_repeat1, - ACTIONS(2716), 9, + ACTIONS(2716), 11, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [92758] = 4, + [92773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - STATE(2740), 1, + STATE(2677), 1, aux_sym_object_repeat1, ACTIONS(2716), 9, sym__automatic_semicolon, @@ -143382,16 +143617,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [92779] = 5, + [92794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(1748), 1, anon_sym_EQ, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(1727), 8, + ACTIONS(1746), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -143400,29 +143635,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - [92802] = 2, + [92817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2716), 11, + ACTIONS(1726), 1, + anon_sym_EQ, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(1724), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + [92840] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4210), 1, + anon_sym_LBRACE, + ACTIONS(4342), 1, + anon_sym_LT, + ACTIONS(4344), 1, + anon_sym_DQUOTE, + ACTIONS(4346), 1, + anon_sym_SQUOTE, + STATE(2053), 1, + sym_jsx_opening_element, + STATE(2320), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym_tsx_string, + [92866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1628), 1, + anon_sym_PIPE, + ACTIONS(1626), 9, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE_RBRACE, - [92819] = 4, + [92884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, + ACTIONS(2494), 1, anon_sym_EQ, - STATE(2778), 1, - aux_sym_object_repeat1, - ACTIONS(2716), 9, + ACTIONS(3478), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -143432,73 +143702,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [92840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 1, - anon_sym_PIPE, - ACTIONS(1423), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE_RBRACE, - [92858] = 11, + [92902] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4342), 1, + ACTIONS(4348), 1, sym_identifier, - ACTIONS(4344), 1, + ACTIONS(4350), 1, anon_sym_LBRACE, - ACTIONS(4346), 1, + ACTIONS(4352), 1, anon_sym_implements, - ACTIONS(4348), 1, + ACTIONS(4354), 1, anon_sym_extends, - STATE(1432), 1, + STATE(1137), 1, sym_class_body, - STATE(2164), 1, + STATE(2121), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2924), 1, + STATE(2905), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [92892] = 11, + [92936] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4346), 1, + ACTIONS(4352), 1, anon_sym_implements, - ACTIONS(4348), 1, + ACTIONS(4354), 1, anon_sym_extends, - ACTIONS(4350), 1, + ACTIONS(4356), 1, sym_identifier, + ACTIONS(4358), 1, + anon_sym_LBRACE, + STATE(1619), 1, + sym_class_body, + STATE(2112), 1, + sym_type_parameters, + STATE(2777), 1, + sym_extends_clause, + STATE(3012), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [92970] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, ACTIONS(4352), 1, + anon_sym_implements, + ACTIONS(4354), 1, + anon_sym_extends, + ACTIONS(4360), 1, + sym_identifier, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(1677), 1, + STATE(1519), 1, sym_class_body, STATE(2093), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2864), 1, + STATE(3027), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [92926] = 3, + [93004] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4352), 1, + anon_sym_implements, + ACTIONS(4354), 1, + anon_sym_extends, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4364), 1, + sym_identifier, + STATE(1431), 1, + sym_class_body, + STATE(2094), 1, + sym_type_parameters, + STATE(2777), 1, + sym_extends_clause, + STATE(3009), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [93038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1453), 1, anon_sym_PIPE, - ACTIONS(1471), 9, + ACTIONS(1451), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143508,146 +143809,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [92944] = 3, + [93056] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4352), 1, + anon_sym_implements, + ACTIONS(4354), 1, + anon_sym_extends, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4366), 1, + sym_identifier, + STATE(1519), 1, + sym_class_body, + STATE(2093), 1, + sym_type_parameters, + STATE(2777), 1, + sym_extends_clause, + STATE(3027), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [93090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1497), 1, anon_sym_PIPE, - ACTIONS(1095), 9, + ACTIONS(4368), 1, + anon_sym_LBRACK, + ACTIONS(1495), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [92962] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4229), 1, - anon_sym_SLASH, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(4285), 1, - anon_sym_GT, - STATE(2055), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [92994] = 4, + [93110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1433), 1, + ACTIONS(1437), 1, anon_sym_PIPE, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(1431), 8, + ACTIONS(1435), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93014] = 10, + [93128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, + ACTIONS(1489), 1, + anon_sym_PIPE, + ACTIONS(1487), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(4285), 1, - anon_sym_GT, - ACTIONS(4287), 1, - anon_sym_SLASH, - STATE(2053), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [93046] = 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [93146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2564), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3523), 9, - sym__automatic_semicolon, + ACTIONS(2778), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(2716), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [93064] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(4285), 1, - anon_sym_GT, - ACTIONS(4293), 1, - anon_sym_SLASH, - STATE(2046), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [93096] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4231), 1, - anon_sym_SLASH, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(4285), 1, - anon_sym_GT, - STATE(2049), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [93128] = 3, + [93166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1529), 1, + ACTIONS(1493), 1, anon_sym_PIPE, - ACTIONS(1527), 9, + ACTIONS(1491), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143657,108 +143909,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93146] = 4, + [93184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, + ACTIONS(1421), 1, anon_sym_PIPE, - ACTIONS(4354), 1, - anon_sym_LBRACK, - ACTIONS(1441), 8, + ACTIONS(1419), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93166] = 11, + [93202] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4346), 1, + ACTIONS(4352), 1, anon_sym_implements, - ACTIONS(4348), 1, + ACTIONS(4354), 1, anon_sym_extends, - ACTIONS(4352), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(4356), 1, + ACTIONS(4370), 1, sym_identifier, - STATE(1573), 1, + STATE(1679), 1, sym_class_body, - STATE(2117), 1, + STATE(2131), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2958), 1, + STATE(3025), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [93200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1493), 1, - anon_sym_PIPE, - ACTIONS(1491), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE_RBRACE, - [93218] = 7, + [93236] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(4206), 1, + sym_identifier, ACTIONS(4210), 1, anon_sym_LBRACE, - ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(4360), 1, - anon_sym_DQUOTE, - ACTIONS(4362), 1, - anon_sym_SQUOTE, - STATE(2045), 1, - sym_jsx_opening_element, - STATE(2266), 5, - sym_jsx_element, - sym_jsx_fragment, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4231), 1, + anon_sym_SLASH, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(4309), 1, + anon_sym_GT, + STATE(2051), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [93244] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4346), 1, - anon_sym_implements, - ACTIONS(4348), 1, - anon_sym_extends, - ACTIONS(4364), 1, - sym_identifier, - STATE(1451), 1, - sym_class_body, - STATE(2155), 1, - sym_type_parameters, - STATE(2693), 1, - sym_extends_clause, - STATE(3044), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [93278] = 3, + sym_jsx_attribute, + [93268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1607), 1, + ACTIONS(1529), 1, anon_sym_PIPE, - ACTIONS(1605), 9, + ACTIONS(1527), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143768,12 +143984,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93296] = 3, + [93286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(1465), 1, anon_sym_PIPE, - ACTIONS(1487), 9, + ACTIONS(1463), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143783,12 +143999,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93314] = 3, + [93304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 1, + ACTIONS(1461), 1, anon_sym_PIPE, - ACTIONS(1503), 9, + ACTIONS(1459), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143798,31 +144014,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93332] = 7, + [93322] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(4206), 1, + sym_identifier, ACTIONS(4210), 1, anon_sym_LBRACE, - ACTIONS(4358), 1, - anon_sym_LT, - ACTIONS(4360), 1, - anon_sym_DQUOTE, - ACTIONS(4362), 1, - anon_sym_SQUOTE, - STATE(2045), 1, - sym_jsx_opening_element, - STATE(2265), 5, - sym_jsx_element, - sym_jsx_fragment, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(4309), 1, + anon_sym_GT, + ACTIONS(4311), 1, + anon_sym_SLASH, + STATE(2040), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [93358] = 3, + sym_jsx_attribute, + [93354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1513), 1, + ACTIONS(1425), 1, anon_sym_PIPE, - ACTIONS(1511), 9, + ACTIONS(1423), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143832,12 +144051,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93376] = 3, + [93372] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1413), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4352), 1, + anon_sym_implements, + ACTIONS(4354), 1, + anon_sym_extends, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4372), 1, + sym_identifier, + STATE(1431), 1, + sym_class_body, + STATE(2094), 1, + sym_type_parameters, + STATE(2777), 1, + sym_extends_clause, + STATE(3009), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [93406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, anon_sym_PIPE, - ACTIONS(1411), 9, + ACTIONS(1467), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143847,12 +144089,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93394] = 3, + [93424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, + ACTIONS(1481), 1, anon_sym_PIPE, - ACTIONS(1495), 9, + ACTIONS(1479), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143862,37 +144104,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93412] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4346), 1, - anon_sym_implements, - ACTIONS(4348), 1, - anon_sym_extends, - ACTIONS(4366), 1, - sym_identifier, - STATE(1432), 1, - sym_class_body, - STATE(2164), 1, - sym_type_parameters, - STATE(2693), 1, - sym_extends_clause, - STATE(2924), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [93446] = 4, + [93442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_AMP, - ACTIONS(4370), 1, + ACTIONS(1612), 1, anon_sym_PIPE, - ACTIONS(1733), 8, + ACTIONS(1610), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143900,15 +144117,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93466] = 4, + [93460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_AMP, - ACTIONS(4370), 1, + ACTIONS(1485), 1, anon_sym_PIPE, - ACTIONS(1711), 8, + ACTIONS(1483), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -143916,95 +144132,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93486] = 11, + [93478] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_implements, - ACTIONS(4348), 1, - anon_sym_extends, - ACTIONS(4372), 1, + ACTIONS(4206), 1, sym_identifier, - ACTIONS(4374), 1, + ACTIONS(4210), 1, anon_sym_LBRACE, - STATE(1114), 1, - sym_class_body, - STATE(2152), 1, - sym_type_parameters, - STATE(2693), 1, - sym_extends_clause, - STATE(2871), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [93520] = 11, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4229), 1, + anon_sym_SLASH, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(4309), 1, + anon_sym_GT, + STATE(2052), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, + sym_jsx_expression, + sym_jsx_attribute, + [93510] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4346), 1, + ACTIONS(4352), 1, anon_sym_implements, - ACTIONS(4348), 1, + ACTIONS(4354), 1, anon_sym_extends, - ACTIONS(4376), 1, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4374), 1, sym_identifier, - STATE(1432), 1, + STATE(1519), 1, sym_class_body, - STATE(2164), 1, + STATE(2093), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2924), 1, + STATE(3027), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [93554] = 3, + [93544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 1, + ACTIONS(1525), 1, anon_sym_PIPE, - ACTIONS(1475), 9, + ACTIONS(4368), 1, + anon_sym_LBRACK, + ACTIONS(1523), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93572] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - ACTIONS(2700), 1, - anon_sym_LBRACE, - ACTIONS(4378), 1, - sym_identifier, - ACTIONS(4380), 1, - anon_sym_STAR, - STATE(2838), 1, - sym_import_clause, - STATE(2837), 2, - sym_string, - sym_import_require_clause, - STATE(3187), 2, - sym_namespace_import, - sym_named_imports, - [93602] = 3, + [93564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 1, + ACTIONS(1429), 1, anon_sym_PIPE, - ACTIONS(1499), 9, + ACTIONS(1427), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144014,12 +144210,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93620] = 3, + [93582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 1, + ACTIONS(1097), 1, anon_sym_PIPE, - ACTIONS(1479), 9, + ACTIONS(1095), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144029,12 +144225,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93638] = 3, + [93600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1656), 1, + ACTIONS(1433), 1, anon_sym_PIPE, - ACTIONS(1654), 9, + ACTIONS(1431), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144044,12 +144240,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93656] = 3, + [93618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 1, + ACTIONS(4376), 1, + anon_sym_AMP, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(1507), 9, + ACTIONS(1746), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144057,14 +144255,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93674] = 3, + [93638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1429), 1, + ACTIONS(4376), 1, + anon_sym_AMP, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(1427), 9, + ACTIONS(1736), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144072,37 +144271,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE_RBRACE, + [93658] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4352), 1, + anon_sym_implements, + ACTIONS(4354), 1, + anon_sym_extends, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4380), 1, + sym_identifier, + STATE(1431), 1, + sym_class_body, + STATE(2094), 1, + sym_type_parameters, + STATE(2777), 1, + sym_extends_clause, + STATE(3009), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, [93692] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4344), 1, + ACTIONS(4350), 1, anon_sym_LBRACE, - ACTIONS(4346), 1, + ACTIONS(4352), 1, anon_sym_implements, - ACTIONS(4348), 1, + ACTIONS(4354), 1, anon_sym_extends, ACTIONS(4382), 1, sym_identifier, - STATE(1451), 1, + STATE(1157), 1, sym_class_body, - STATE(2155), 1, + STATE(2099), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3044), 1, + STATE(2969), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [93726] = 3, + [93726] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(2700), 1, + anon_sym_LBRACE, + ACTIONS(4384), 1, + sym_identifier, + ACTIONS(4386), 1, + anon_sym_STAR, + STATE(3014), 1, + sym_import_clause, + STATE(3015), 2, + sym_string, + sym_import_require_clause, + STATE(3188), 2, + sym_namespace_import, + sym_named_imports, + [93756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 1, + ACTIONS(1441), 1, anon_sym_PIPE, - ACTIONS(1519), 9, + ACTIONS(1439), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144112,14 +144354,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93744] = 4, + [93774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_AMP, - ACTIONS(4370), 1, + ACTIONS(1445), 1, anon_sym_PIPE, - ACTIONS(1723), 8, + ACTIONS(1443), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144127,53 +144367,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93764] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(2772), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2716), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [93784] = 10, + [93792] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, sym_identifier, ACTIONS(4210), 1, anon_sym_LBRACE, - ACTIONS(4221), 1, - anon_sym_SLASH, ACTIONS(4223), 1, sym_jsx_identifier, - ACTIONS(4283), 1, + ACTIONS(4307), 1, anon_sym_COLON, - ACTIONS(4285), 1, + ACTIONS(4309), 1, anon_sym_GT, - STATE(2061), 1, + ACTIONS(4315), 1, + anon_sym_SLASH, + STATE(2028), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [93816] = 4, + [93824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_AMP, - ACTIONS(4370), 1, + ACTIONS(1646), 1, anon_sym_PIPE, - ACTIONS(1727), 8, + ACTIONS(1644), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144181,13 +144404,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93836] = 3, + [93842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 1, + ACTIONS(1449), 1, anon_sym_PIPE, - ACTIONS(1437), 9, + ACTIONS(1447), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144197,12 +144421,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93854] = 3, + [93860] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4210), 1, + anon_sym_LBRACE, + ACTIONS(4342), 1, + anon_sym_LT, + ACTIONS(4344), 1, + anon_sym_DQUOTE, + ACTIONS(4346), 1, + anon_sym_SQUOTE, + STATE(2053), 1, + sym_jsx_opening_element, + STATE(2302), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym_tsx_string, + [93886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1644), 1, + ACTIONS(1473), 1, anon_sym_PIPE, - ACTIONS(1642), 9, + ACTIONS(1471), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144212,12 +144455,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93872] = 3, + [93904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1525), 1, + ACTIONS(1457), 1, anon_sym_PIPE, - ACTIONS(1523), 9, + ACTIONS(1455), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144227,14 +144470,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93890] = 4, + [93922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4370), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(1737), 8, + ACTIONS(1728), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144243,12 +144486,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [93910] = 3, + [93942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 1, + ACTIONS(4376), 1, + anon_sym_AMP, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(1515), 9, + ACTIONS(1711), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144256,37 +144501,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93928] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4346), 1, - anon_sym_implements, - ACTIONS(4348), 1, - anon_sym_extends, - ACTIONS(4374), 1, - anon_sym_LBRACE, - ACTIONS(4384), 1, - sym_identifier, - STATE(1034), 1, - sym_class_body, - STATE(2130), 1, - sym_type_parameters, - STATE(2693), 1, - sym_extends_clause, - STATE(3047), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, [93962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 1, + ACTIONS(1477), 1, anon_sym_PIPE, - ACTIONS(1467), 9, + ACTIONS(1475), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144296,35 +144517,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE_RBRACE, - [93980] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4346), 1, - anon_sym_implements, - ACTIONS(4348), 1, - anon_sym_extends, - ACTIONS(4386), 1, - sym_identifier, - STATE(1451), 1, - sym_class_body, - STATE(2155), 1, - sym_type_parameters, - STATE(2693), 1, - sym_extends_clause, - STATE(3044), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [94014] = 3, + [93980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 1, + ACTIONS(4376), 1, + anon_sym_AMP, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(1483), 9, + ACTIONS(1724), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -144332,239 +144532,327 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE_RBRACE, - [94032] = 4, + [94000] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 1, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_LBRACE, + ACTIONS(4221), 1, + anon_sym_SLASH, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4307), 1, anon_sym_COLON, - STATE(2239), 2, - sym_type_annotation, - sym_asserts, - ACTIONS(4388), 6, - sym__automatic_semicolon, + ACTIONS(4309), 1, + anon_sym_GT, + STATE(2054), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, + sym_jsx_expression, + sym_jsx_attribute, + [94032] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4388), 1, + sym_identifier, + ACTIONS(4391), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [94051] = 10, + ACTIONS(4394), 1, + anon_sym_GT, + ACTIONS(4396), 1, + anon_sym_SLASH, + ACTIONS(4398), 1, + sym_jsx_identifier, + STATE(2024), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, + sym_jsx_expression, + sym_jsx_attribute, + [94061] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4352), 1, + ACTIONS(4401), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1603), 1, + STATE(565), 1, sym_class_body, - STATE(2121), 1, + STATE(2148), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3017), 1, + STATE(3026), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [94082] = 10, + [94092] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4374), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1182), 1, + ACTIONS(4407), 1, + anon_sym_LBRACE, + STATE(95), 1, sym_class_body, - STATE(2127), 1, + STATE(2168), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3004), 1, + STATE(2840), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [94113] = 10, + [94123] = 7, + ACTIONS(4409), 1, + anon_sym_LBRACE, + ACTIONS(4411), 1, + anon_sym_LT, + ACTIONS(4413), 1, + sym_jsx_text, + ACTIONS(4415), 1, + sym_comment, + STATE(1589), 1, + sym_jsx_closing_element, + STATE(2046), 1, + sym_jsx_opening_element, + STATE(2075), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [94148] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_LBRACE, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4417), 1, + anon_sym_GT, + ACTIONS(4419), 1, + anon_sym_SLASH, + STATE(2024), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, + sym_jsx_expression, + sym_jsx_attribute, + [94177] = 7, + ACTIONS(4409), 1, + anon_sym_LBRACE, + ACTIONS(4411), 1, + anon_sym_LT, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(4421), 1, + sym_jsx_text, + STATE(1625), 1, + sym_jsx_closing_element, + STATE(2046), 1, + sym_jsx_opening_element, + STATE(2027), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [94202] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4396), 1, + ACTIONS(4407), 1, anon_sym_LBRACE, - STATE(2129), 1, + STATE(92), 1, + sym_class_body, + STATE(2132), 1, sym_type_parameters, - STATE(2344), 1, + STATE(2777), 1, + sym_extends_clause, + STATE(3008), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [94233] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_implements, + ACTIONS(4405), 1, + anon_sym_extends, + STATE(1387), 1, sym_class_body, - STATE(2693), 1, + STATE(2107), 1, + sym_type_parameters, + STATE(2777), 1, sym_extends_clause, - STATE(2999), 1, + STATE(2933), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [94144] = 7, + [94264] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(4235), 1, anon_sym_EQ, - STATE(2510), 1, + STATE(2333), 1, sym_type_annotation, - STATE(2807), 1, + STATE(2694), 1, sym__initializer, - ACTIONS(4259), 2, + ACTIONS(4239), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(4257), 3, + ACTIONS(4237), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [94169] = 10, + [94289] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4344), 1, + ACTIONS(4403), 1, + anon_sym_implements, + ACTIONS(4405), 1, + anon_sym_extends, + ACTIONS(4423), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + STATE(2140), 1, + sym_type_parameters, + STATE(2324), 1, + sym_class_body, + STATE(2777), 1, + sym_extends_clause, + STATE(2877), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [94320] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1433), 1, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(523), 1, sym_class_body, - STATE(2151), 1, + STATE(2109), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2954), 1, + STATE(2995), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [94200] = 7, - ACTIONS(4398), 1, - anon_sym_LBRACE, - ACTIONS(4400), 1, - anon_sym_LT, - ACTIONS(4402), 1, - sym_jsx_text, - ACTIONS(4404), 1, + [94351] = 9, + ACTIONS(3), 1, sym_comment, - STATE(1555), 1, - sym_jsx_closing_element, - STATE(2032), 1, - sym_jsx_opening_element, - STATE(2070), 4, - sym_jsx_element, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_LBRACE, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4309), 1, + anon_sym_GT, + ACTIONS(4315), 1, + anon_sym_SLASH, + STATE(2028), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [94225] = 7, - ACTIONS(4398), 1, + sym_jsx_attribute, + [94380] = 7, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4402), 1, + ACTIONS(4413), 1, sym_jsx_text, - ACTIONS(4404), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4406), 1, + ACTIONS(4425), 1, anon_sym_LT, - STATE(1142), 1, + STATE(1111), 1, sym_jsx_closing_element, - STATE(2032), 1, - sym_jsx_opening_element, - STATE(2070), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [94250] = 7, - ACTIONS(4398), 1, - anon_sym_LBRACE, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(4408), 1, - anon_sym_LT, - ACTIONS(4410), 1, - sym_jsx_text, - STATE(2032), 1, + STATE(2046), 1, sym_jsx_opening_element, - STATE(2640), 1, - sym_jsx_closing_element, - STATE(2063), 4, + STATE(2075), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [94275] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2207), 1, - anon_sym_is, - ACTIONS(4216), 1, - anon_sym_LT, - ACTIONS(4233), 1, - anon_sym_DOT, - STATE(420), 1, - sym_type_arguments, - ACTIONS(1577), 5, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - [94298] = 10, + [94405] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4412), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(604), 1, + STATE(522), 1, sym_class_body, - STATE(2095), 1, + STATE(2108), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3052), 1, + STATE(2993), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [94329] = 10, - ACTIONS(3), 1, + [94436] = 7, + ACTIONS(4409), 1, + anon_sym_LBRACE, + ACTIONS(4415), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(4427), 1, anon_sym_LT, - ACTIONS(4392), 1, - anon_sym_implements, - ACTIONS(4394), 1, - anon_sym_extends, - ACTIONS(4396), 1, - anon_sym_LBRACE, - STATE(2122), 1, - sym_type_parameters, - STATE(2437), 1, - sym_class_body, - STATE(2693), 1, - sym_extends_clause, - STATE(3054), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [94360] = 9, + ACTIONS(4429), 1, + sym_jsx_text, + STATE(1428), 1, + sym_jsx_closing_element, + STATE(2046), 1, + sym_jsx_opening_element, + STATE(2057), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [94461] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -144575,49 +144863,54 @@ static uint16_t ts_small_parse_table[] = { sym_jsx_identifier, ACTIONS(4229), 1, anon_sym_SLASH, - ACTIONS(4285), 1, + ACTIONS(4309), 1, anon_sym_GT, - STATE(2055), 1, + STATE(2052), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [94389] = 7, - ACTIONS(4398), 1, - anon_sym_LBRACE, - ACTIONS(4402), 1, - sym_jsx_text, - ACTIONS(4404), 1, + [94490] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_LT, - STATE(2032), 1, - sym_jsx_opening_element, - STATE(2483), 1, - sym_jsx_closing_element, - STATE(2070), 4, - sym_jsx_element, + ACTIONS(4206), 1, + sym_identifier, + ACTIONS(4210), 1, + anon_sym_LBRACE, + ACTIONS(4223), 1, + sym_jsx_identifier, + ACTIONS(4417), 1, + anon_sym_GT, + ACTIONS(4431), 1, + anon_sym_SLASH, + STATE(2024), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(2198), 1, + sym_jsx_namespace_name, + STATE(2503), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [94414] = 4, + sym_jsx_attribute, + [94519] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 1, + ACTIONS(2186), 1, anon_sym_COLON, - STATE(2246), 2, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2287), 1, sym_type_annotation, - sym_asserts, - ACTIONS(4416), 6, + STATE(2699), 1, + sym__initializer, + ACTIONS(4250), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4248), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [94433] = 9, + [94544] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -144628,52 +144921,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, ACTIONS(4223), 1, sym_jsx_identifier, - ACTIONS(4285), 1, + ACTIONS(4309), 1, anon_sym_GT, - STATE(2061), 1, + STATE(2054), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [94462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 1, - anon_sym_AMP, - ACTIONS(4370), 1, - anon_sym_PIPE, - ACTIONS(4418), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [94481] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, - anon_sym_implements, - ACTIONS(4394), 1, - anon_sym_extends, - STATE(1408), 1, - sym_class_body, - STATE(2136), 1, - sym_type_parameters, - STATE(2693), 1, - sym_extends_clause, - STATE(2914), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [94512] = 9, + [94573] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -144682,75 +144939,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4223), 1, sym_jsx_identifier, - ACTIONS(4231), 1, - anon_sym_SLASH, - ACTIONS(4285), 1, + ACTIONS(4309), 1, anon_sym_GT, - STATE(2049), 1, + ACTIONS(4311), 1, + anon_sym_SLASH, + STATE(2040), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [94541] = 10, + [94602] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4344), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1365), 1, + STATE(1526), 1, sym_class_body, - STATE(2120), 1, + STATE(2141), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2976), 1, + STATE(2981), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [94572] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2460), 1, - sym_type_annotation, - STATE(2791), 1, - sym__initializer, - ACTIONS(4245), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4243), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [94597] = 7, - ACTIONS(4398), 1, - anon_sym_LBRACE, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_LT, - ACTIONS(4420), 1, - sym_jsx_text, - STATE(2032), 1, - sym_jsx_opening_element, - STATE(2312), 1, - sym_jsx_closing_element, - STATE(2037), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [94622] = 9, + [94633] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -144759,60 +144980,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4223), 1, sym_jsx_identifier, - ACTIONS(4422), 1, - anon_sym_GT, - ACTIONS(4424), 1, + ACTIONS(4231), 1, anon_sym_SLASH, - STATE(2066), 1, + ACTIONS(4309), 1, + anon_sym_GT, + STATE(2051), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, + sym_jsx_expression, + sym_jsx_attribute, + [94662] = 7, + ACTIONS(4409), 1, + anon_sym_LBRACE, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(4433), 1, + anon_sym_LT, + ACTIONS(4435), 1, + sym_jsx_text, + STATE(2046), 1, + sym_jsx_opening_element, + STATE(2751), 1, + sym_jsx_closing_element, + STATE(2063), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [94651] = 10, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [94687] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4350), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4396), 1, - anon_sym_LBRACE, - STATE(2118), 1, - sym_type_parameters, - STATE(2492), 1, + STATE(1102), 1, sym_class_body, - STATE(2693), 1, + STATE(2156), 1, + sym_type_parameters, + STATE(2777), 1, sym_extends_clause, - STATE(2966), 1, + STATE(2862), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [94682] = 10, + [94718] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 1, + anon_sym_AMP, + ACTIONS(4378), 1, + anon_sym_PIPE, + ACTIONS(4437), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [94737] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + anon_sym_is, + ACTIONS(4216), 1, + anon_sym_LT, + ACTIONS(4233), 1, + anon_sym_DOT, + STATE(426), 1, + sym_type_arguments, + ACTIONS(1579), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + [94760] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4344), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1558), 1, + STATE(1641), 1, sym_class_body, - STATE(2163), 1, + STATE(2098), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2990), 1, + STATE(2887), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [94713] = 9, + [94791] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -144821,18 +145092,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4223), 1, sym_jsx_identifier, - ACTIONS(4422), 1, + ACTIONS(4417), 1, anon_sym_GT, - ACTIONS(4426), 1, + ACTIONS(4439), 1, anon_sym_SLASH, - STATE(2066), 1, + STATE(2024), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [94742] = 9, + [94820] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -144841,57 +145112,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4223), 1, sym_jsx_identifier, - ACTIONS(4285), 1, + ACTIONS(4417), 1, anon_sym_GT, - ACTIONS(4287), 1, + ACTIONS(4441), 1, anon_sym_SLASH, - STATE(2053), 1, + STATE(2024), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [94771] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4374), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, - anon_sym_implements, - ACTIONS(4394), 1, - anon_sym_extends, - STATE(1036), 1, - sym_class_body, - STATE(2116), 1, - sym_type_parameters, - STATE(2693), 1, - sym_extends_clause, - STATE(2952), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [94802] = 7, - ACTIONS(4398), 1, + [94849] = 7, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4402), 1, - sym_jsx_text, - ACTIONS(4404), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(4443), 1, anon_sym_LT, - STATE(1692), 1, - sym_jsx_closing_element, - STATE(2032), 1, + ACTIONS(4445), 1, + sym_jsx_text, + STATE(2046), 1, sym_jsx_opening_element, - STATE(2070), 4, + STATE(2394), 1, + sym_jsx_closing_element, + STATE(2064), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [94827] = 9, + [94874] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -144900,272 +145150,263 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4223), 1, sym_jsx_identifier, - ACTIONS(4422), 1, + ACTIONS(4417), 1, anon_sym_GT, - ACTIONS(4430), 1, + ACTIONS(4447), 1, anon_sym_SLASH, - STATE(2066), 1, + STATE(2024), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [94856] = 7, - ACTIONS(4398), 1, + [94903] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 1, + anon_sym_COLON, + STATE(2191), 2, + sym_type_annotation, + sym_asserts, + ACTIONS(4449), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [94922] = 7, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4404), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(4425), 1, anon_sym_LT, - ACTIONS(4432), 1, + ACTIONS(4453), 1, sym_jsx_text, - STATE(1613), 1, + STATE(1182), 1, sym_jsx_closing_element, - STATE(2032), 1, + STATE(2046), 1, sym_jsx_opening_element, - STATE(2052), 4, + STATE(2036), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [94881] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, + [94947] = 7, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4422), 1, - anon_sym_GT, - ACTIONS(4434), 1, - anon_sym_SLASH, - STATE(2066), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [94910] = 10, - ACTIONS(3), 1, + ACTIONS(4413), 1, + sym_jsx_text, + ACTIONS(4415), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4392), 1, - anon_sym_implements, - ACTIONS(4394), 1, - anon_sym_extends, - ACTIONS(4396), 1, - anon_sym_LBRACE, - STATE(524), 1, - sym_class_body, - STATE(2140), 1, - sym_type_parameters, - STATE(2693), 1, - sym_extends_clause, - STATE(3038), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [94941] = 7, - ACTIONS(4398), 1, - anon_sym_LBRACE, - ACTIONS(4400), 1, + ACTIONS(4427), 1, anon_sym_LT, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(4436), 1, - sym_jsx_text, - STATE(1488), 1, + STATE(1501), 1, sym_jsx_closing_element, - STATE(2032), 1, + STATE(2046), 1, sym_jsx_opening_element, - STATE(2030), 4, + STATE(2075), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [94966] = 10, + [94972] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4350), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4396), 1, - anon_sym_LBRACE, - STATE(527), 1, + STATE(1089), 1, sym_class_body, - STATE(2162), 1, + STATE(2129), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2933), 1, + STATE(2900), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [94997] = 10, + [95003] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 1, + anon_sym_COLON, + STATE(2189), 2, + sym_type_annotation, + sym_asserts, + ACTIONS(4455), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [95022] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4352), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1697), 1, + STATE(1335), 1, sym_class_body, - STATE(2119), 1, + STATE(2144), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2964), 1, + STATE(2870), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [95028] = 10, + [95053] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4438), 1, - anon_sym_LBRACE, - STATE(104), 1, + STATE(1530), 1, sym_class_body, - STATE(2091), 1, + STATE(2118), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3061), 1, + STATE(3039), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [95059] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym_LBRACE, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4422), 1, - anon_sym_GT, - ACTIONS(4440), 1, - anon_sym_SLASH, - STATE(2066), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [95088] = 10, + [95084] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4438), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(90), 1, - sym_class_body, - STATE(2097), 1, + STATE(2152), 1, sym_type_parameters, - STATE(2693), 1, + STATE(2426), 1, + sym_class_body, + STATE(2777), 1, sym_extends_clause, - STATE(2839), 1, + STATE(2866), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [95119] = 7, - ACTIONS(4398), 1, + [95115] = 7, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4402), 1, + ACTIONS(4413), 1, sym_jsx_text, - ACTIONS(4404), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4408), 1, + ACTIONS(4433), 1, anon_sym_LT, - STATE(2032), 1, + STATE(2046), 1, sym_jsx_opening_element, - STATE(2682), 1, + STATE(2755), 1, sym_jsx_closing_element, - STATE(2070), 4, + STATE(2075), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [95144] = 7, - ACTIONS(4398), 1, + [95140] = 7, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4404), 1, + ACTIONS(4413), 1, + sym_jsx_text, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4406), 1, + ACTIONS(4443), 1, anon_sym_LT, - ACTIONS(4442), 1, - sym_jsx_text, - STATE(1069), 1, - sym_jsx_closing_element, - STATE(2032), 1, + STATE(2046), 1, sym_jsx_opening_element, - STATE(2031), 4, + STATE(2440), 1, + sym_jsx_closing_element, + STATE(2075), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [95169] = 6, + [95165] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_implements, + ACTIONS(4405), 1, + anon_sym_extends, + STATE(1578), 1, + sym_class_body, + STATE(2111), 1, + sym_type_parameters, + STATE(2777), 1, + sym_extends_clause, + STATE(2972), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [95196] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4233), 1, anon_sym_DOT, - ACTIONS(4444), 1, + ACTIONS(4457), 1, anon_sym_LT, - ACTIONS(4446), 1, + ACTIONS(4459), 1, anon_sym_is, - STATE(420), 1, + STATE(426), 1, sym_type_arguments, - ACTIONS(1577), 5, + ACTIONS(1579), 5, anon_sym_else, anon_sym_while, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [95192] = 9, + [95219] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 1, - sym_identifier, - ACTIONS(4451), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4403), 1, + anon_sym_implements, + ACTIONS(4405), 1, + anon_sym_extends, + ACTIONS(4423), 1, anon_sym_LBRACE, - ACTIONS(4454), 1, - anon_sym_GT, - ACTIONS(4456), 1, - anon_sym_SLASH, - ACTIONS(4458), 1, - sym_jsx_identifier, - STATE(2066), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [95221] = 9, + STATE(2125), 1, + sym_type_parameters, + STATE(2479), 1, + sym_class_body, + STATE(2777), 1, + sym_extends_clause, + STATE(2903), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [95250] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -145174,114 +145415,172 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4223), 1, sym_jsx_identifier, - ACTIONS(4285), 1, + ACTIONS(4461), 1, anon_sym_GT, - ACTIONS(4293), 1, - anon_sym_SLASH, - STATE(2046), 1, + STATE(2079), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [95250] = 6, - ACTIONS(4398), 1, + [95276] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 1, + anon_sym_DOT, + ACTIONS(4463), 1, + anon_sym_LBRACE, + STATE(2370), 1, + sym_statement_block, + ACTIONS(903), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [95296] = 6, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4404), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4461), 1, + ACTIONS(4465), 1, anon_sym_LT, - ACTIONS(4463), 1, + ACTIONS(4467), 1, + sym_jsx_text, + STATE(2046), 1, + sym_jsx_opening_element, + STATE(2085), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [95318] = 6, + ACTIONS(4409), 1, + anon_sym_LBRACE, + ACTIONS(4413), 1, sym_jsx_text, - STATE(2032), 1, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(4469), 1, + anon_sym_LT, + STATE(2046), 1, sym_jsx_opening_element, STATE(2075), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [95272] = 6, + [95340] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - ACTIONS(3997), 1, + ACTIONS(3989), 1, anon_sym_RBRACE, - STATE(2671), 1, + STATE(2677), 1, aux_sym_object_repeat1, ACTIONS(2716), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [95294] = 6, - ACTIONS(4404), 1, + [95362] = 6, + ACTIONS(4409), 1, + anon_sym_LBRACE, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4465), 1, + ACTIONS(4471), 1, + anon_sym_LT, + ACTIONS(4473), 1, + sym_jsx_text, + STATE(2046), 1, + sym_jsx_opening_element, + STATE(2076), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [95384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 1, + anon_sym_AMP, + ACTIONS(4378), 1, + anon_sym_PIPE, + ACTIONS(4475), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [95402] = 6, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(4477), 1, anon_sym_LBRACE, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LT, - ACTIONS(4471), 1, + ACTIONS(4483), 1, sym_jsx_text, - STATE(2032), 1, + STATE(2046), 1, sym_jsx_opening_element, - STATE(2070), 4, + STATE(2075), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [95316] = 6, - ACTIONS(4398), 1, + [95424] = 6, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4402), 1, + ACTIONS(4413), 1, sym_jsx_text, - ACTIONS(4404), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT, - STATE(2032), 1, + STATE(2046), 1, sym_jsx_opening_element, - STATE(2070), 4, + STATE(2075), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [95338] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - ACTIONS(4235), 1, - anon_sym_EQ, - ACTIONS(4476), 1, - anon_sym_BANG, - STATE(2294), 1, - sym_type_annotation, - STATE(2812), 1, - sym__initializer, - ACTIONS(2172), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [95362] = 5, + [95446] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4233), 1, anon_sym_DOT, - ACTIONS(4444), 1, + ACTIONS(4457), 1, anon_sym_LT, - STATE(420), 1, + STATE(426), 1, sym_type_arguments, - ACTIONS(1650), 5, + ACTIONS(1654), 5, anon_sym_else, anon_sym_while, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [95382] = 8, + [95466] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(1170), 1, + anon_sym_RBRACE, + ACTIONS(3740), 1, + anon_sym_EQ, + STATE(2746), 1, + aux_sym_object_repeat1, + ACTIONS(2716), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [95488] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(4206), 1, @@ -145290,1267 +145589,884 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(4223), 1, sym_jsx_identifier, - ACTIONS(4478), 1, + ACTIONS(4488), 1, anon_sym_GT, - STATE(2086), 1, + STATE(2024), 1, aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, + STATE(2198), 1, sym_jsx_namespace_name, - STATE(2397), 2, + STATE(2503), 2, sym_jsx_expression, sym_jsx_attribute, - [95408] = 6, - ACTIONS(4398), 1, - anon_sym_LBRACE, - ACTIONS(4402), 1, - sym_jsx_text, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(4480), 1, - anon_sym_LT, - STATE(2032), 1, - sym_jsx_opening_element, - STATE(2070), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [95430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4482), 1, - anon_sym_RPAREN, - ACTIONS(1095), 3, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1621), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [95448] = 6, - ACTIONS(4398), 1, - anon_sym_LBRACE, - ACTIONS(4402), 1, - sym_jsx_text, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(4485), 1, - anon_sym_LT, - STATE(2032), 1, - sym_jsx_opening_element, - STATE(2070), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [95470] = 6, + [95514] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(1172), 1, anon_sym_RBRACE, - STATE(2821), 1, + ACTIONS(3740), 1, + anon_sym_EQ, + STATE(2824), 1, aux_sym_object_repeat1, ACTIONS(2716), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [95492] = 4, + [95536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, + ACTIONS(899), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1451), 4, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(4370), 1, anon_sym_PIPE, - ACTIONS(4487), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [95510] = 6, - ACTIONS(4398), 1, + [95552] = 6, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4404), 1, + ACTIONS(4413), 1, + sym_jsx_text, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4489), 1, + ACTIONS(4490), 1, anon_sym_LT, - ACTIONS(4491), 1, - sym_jsx_text, - STATE(2032), 1, + STATE(2046), 1, sym_jsx_opening_element, - STATE(2071), 4, + STATE(2075), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [95532] = 6, - ACTIONS(4398), 1, + [95574] = 6, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4404), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4493), 1, + ACTIONS(4492), 1, anon_sym_LT, - ACTIONS(4495), 1, + ACTIONS(4494), 1, sym_jsx_text, - STATE(2032), 1, + STATE(2046), 1, sym_jsx_opening_element, STATE(2082), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [95554] = 6, - ACTIONS(4398), 1, + [95596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_RPAREN, + ACTIONS(1696), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2448), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [95614] = 6, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4402), 1, + ACTIONS(4413), 1, sym_jsx_text, - ACTIONS(4404), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4497), 1, + ACTIONS(4499), 1, anon_sym_LT, - STATE(2032), 1, + STATE(2046), 1, sym_jsx_opening_element, - STATE(2070), 4, + STATE(2075), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [95576] = 6, + [95636] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1172), 1, + ACTIONS(1121), 1, anon_sym_RBRACE, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - STATE(2740), 1, + STATE(2742), 1, aux_sym_object_repeat1, ACTIONS(2716), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [95598] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(907), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1527), 4, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [95614] = 4, + [95658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 1, + ACTIONS(4501), 1, anon_sym_RPAREN, - ACTIONS(1692), 3, + ACTIONS(1095), 3, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2458), 4, + ACTIONS(1614), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [95632] = 8, + [95676] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, + ACTIONS(2186), 1, + anon_sym_COLON, + ACTIONS(4235), 1, + anon_sym_EQ, + ACTIONS(4504), 1, + anon_sym_BANG, + STATE(2452), 1, + sym_type_annotation, + STATE(2764), 1, + sym__initializer, + ACTIONS(2177), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [95700] = 6, + ACTIONS(4409), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, - sym_jsx_identifier, - ACTIONS(4502), 1, - anon_sym_GT, - STATE(2066), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(2221), 1, - sym_jsx_namespace_name, - STATE(2397), 2, - sym_jsx_expression, - sym_jsx_attribute, - [95658] = 6, - ACTIONS(3), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(1121), 1, - anon_sym_RBRACE, - ACTIONS(3756), 1, - anon_sym_EQ, - STATE(2782), 1, - aux_sym_object_repeat1, - ACTIONS(2716), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4506), 1, anon_sym_LT, - anon_sym_QMARK, - [95680] = 6, + ACTIONS(4508), 1, + sym_jsx_text, + STATE(2046), 1, + sym_jsx_opening_element, + STATE(2071), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [95722] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(1170), 1, - anon_sym_RBRACE, - ACTIONS(3756), 1, + ACTIONS(3740), 1, anon_sym_EQ, - STATE(2778), 1, + ACTIONS(3997), 1, + anon_sym_RBRACE, + STATE(2803), 1, aux_sym_object_repeat1, ACTIONS(2716), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [95702] = 5, + [95744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - anon_sym_DOT, - ACTIONS(4504), 1, - anon_sym_LBRACE, - STATE(2285), 1, - sym_statement_block, - ACTIONS(893), 5, + ACTIONS(2968), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [95722] = 6, - ACTIONS(4398), 1, - anon_sym_LBRACE, - ACTIONS(4404), 1, + [95757] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 1, - anon_sym_LT, - ACTIONS(4508), 1, - sym_jsx_text, - STATE(2032), 1, - sym_jsx_opening_element, - STATE(2077), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [95744] = 8, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(4510), 1, + sym_identifier, + ACTIONS(4512), 1, + anon_sym_DOT, + STATE(521), 1, + sym_string, + STATE(608), 1, + sym__module, + STATE(2622), 1, + sym_nested_identifier, + [95782] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4362), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4438), 1, - anon_sym_LBRACE, - STATE(82), 1, + STATE(1430), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2936), 1, + STATE(2958), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [95769] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(4510), 1, - anon_sym_EQ, - ACTIONS(4418), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ_GT, - [95788] = 8, + [95807] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1572), 1, + STATE(1453), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2938), 1, + STATE(2837), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [95813] = 8, + [95832] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 1, - sym_identifier, - ACTIONS(4514), 1, + ACTIONS(841), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2644), 1, anon_sym_LBRACE, + ACTIONS(4514), 1, + anon_sym_LT, ACTIONS(4516), 1, - anon_sym_LBRACK, + anon_sym_extends, + STATE(2334), 1, + sym_type_parameters, + STATE(2497), 1, + sym_object_type, + STATE(2819), 1, + sym_extends_clause, + [95857] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, ACTIONS(4518), 1, - anon_sym_enum, - STATE(2104), 1, - sym_array, - STATE(2153), 1, - sym_object, - STATE(2603), 1, - sym_variable_declarator, - [95838] = 8, + sym_identifier, + ACTIONS(4520), 1, + anon_sym_STAR, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(3024), 1, + sym__call_signature, + [95882] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(4524), 1, + sym_identifier, + ACTIONS(4526), 1, + anon_sym_DOT, + STATE(2069), 1, + sym_nested_identifier, + STATE(2120), 1, + sym_string, + STATE(2373), 1, + sym__module, + [95907] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4358), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4412), 1, - anon_sym_LBRACE, - STATE(579), 1, + STATE(1665), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2873), 1, + STATE(2916), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [95863] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4208), 1, - anon_sym_EQ, - STATE(2638), 1, - sym_constraint, - STATE(3043), 1, - sym_default_type, - ACTIONS(4212), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(4266), 2, - anon_sym_COLON, - anon_sym_extends, - [95884] = 8, + [95932] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4350), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4438), 1, - anon_sym_LBRACE, - STATE(101), 1, + STATE(1135), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3023), 1, + STATE(2925), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [95909] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2476), 1, - sym_type_annotation, - STATE(2803), 1, - sym__initializer, - ACTIONS(4319), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [95930] = 8, + [95957] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym_identifier, + ACTIONS(1670), 1, + anon_sym_LT, ACTIONS(4522), 1, - anon_sym_DOT, - STATE(508), 1, - sym_nested_identifier, - STATE(522), 1, - sym_string, - STATE(539), 1, - sym__module, - [95955] = 6, + anon_sym_LPAREN, + ACTIONS(4528), 1, + sym_identifier, + ACTIONS(4530), 1, + anon_sym_STAR, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(3005), 1, + sym__call_signature, + [95982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(4235), 1, anon_sym_EQ, - STATE(2408), 1, + STATE(2393), 1, sym_type_annotation, - STATE(2784), 1, + STATE(2732), 1, sym__initializer, - ACTIONS(4331), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [95976] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2905), 1, - sym_statement_block, - ACTIONS(4524), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [95993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2903), 1, - sym_statement_block, - ACTIONS(4526), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2898), 1, - sym_statement_block, - ACTIONS(4528), 5, + ACTIONS(2955), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96027] = 6, + [96003] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(4235), 1, anon_sym_EQ, - STATE(2299), 1, + STATE(2511), 1, sym_type_annotation, - STATE(2801), 1, + STATE(2685), 1, sym__initializer, - ACTIONS(2907), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [96048] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2891), 1, - sym_statement_block, - ACTIONS(4530), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96065] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2885), 1, - sym_statement_block, - ACTIONS(4532), 5, + ACTIONS(4322), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96082] = 4, + [96024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2857), 1, - sym_statement_block, - ACTIONS(4534), 5, + ACTIONS(4532), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, anon_sym_LBRACE, - STATE(2847), 1, - sym_statement_block, - ACTIONS(4536), 5, - sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [96116] = 4, + [96037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4534), 1, + anon_sym_EQ, + ACTIONS(4437), 4, anon_sym_LBRACE, - STATE(2915), 1, - sym_statement_block, - ACTIONS(4538), 5, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96133] = 4, + anon_sym_RPAREN, + anon_sym_EQ_GT, + [96056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2919), 1, - sym_statement_block, - ACTIONS(4540), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96150] = 6, + ACTIONS(4457), 1, + anon_sym_LT, + STATE(429), 1, + sym_type_arguments, + ACTIONS(1527), 5, + anon_sym_else, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [96073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, ACTIONS(4235), 1, anon_sym_EQ, - STATE(2287), 1, + STATE(2390), 1, sym_type_annotation, - STATE(2714), 1, + STATE(2726), 1, sym__initializer, - ACTIONS(4317), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [96171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4504), 1, - anon_sym_LBRACE, - STATE(2285), 1, - sym_statement_block, - ACTIONS(893), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(3008), 1, - sym_statement_block, - ACTIONS(4542), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96205] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(3030), 1, - sym_statement_block, - ACTIONS(4544), 5, + ACTIONS(2946), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96222] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4546), 1, - sym_identifier, - ACTIONS(4548), 1, - anon_sym_STAR, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3011), 1, - sym__call_signature, - [96247] = 8, + [96094] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1070), 1, + STATE(1327), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2881), 1, + STATE(2890), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [96272] = 8, + [96119] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1643), 1, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(520), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3009), 1, + STATE(2892), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [96297] = 8, + [96144] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4396), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(2310), 1, + STATE(532), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2890), 1, + STATE(2997), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [96322] = 8, + [96169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, - anon_sym_implements, - ACTIONS(4394), 1, - anon_sym_extends, - STATE(1619), 1, - sym_class_body, - STATE(2693), 1, - sym_extends_clause, - STATE(3010), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [96347] = 8, + ACTIONS(4457), 1, + anon_sym_LT, + STATE(429), 1, + sym_type_arguments, + ACTIONS(1696), 5, + anon_sym_else, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [96186] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1346), 1, + STATE(1639), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2894), 1, + STATE(2876), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [96372] = 8, + [96211] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, - anon_sym_implements, - ACTIONS(4394), 1, - anon_sym_extends, - STATE(1611), 1, - sym_class_body, - STATE(2693), 1, - sym_extends_clause, - STATE(3041), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [96397] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4396), 1, - anon_sym_LBRACE, - STATE(2275), 1, + STATE(1634), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2930), 1, + STATE(2858), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [96422] = 5, + [96236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 1, + ACTIONS(2186), 1, anon_sym_COLON, - ACTIONS(4554), 1, - anon_sym_EQ, - ACTIONS(4552), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(4556), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [96441] = 8, + STATE(2319), 1, + sym_type_annotation, + ACTIONS(4536), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [96253] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4538), 1, sym_identifier, - ACTIONS(4558), 1, - anon_sym_DOT, - STATE(508), 1, - sym_nested_identifier, - STATE(522), 1, - sym_string, - STATE(539), 1, - sym__module, - [96466] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2568), 1, + ACTIONS(4540), 1, anon_sym_LBRACE, - ACTIONS(4560), 1, - anon_sym_LT, - ACTIONS(4562), 1, - anon_sym_extends, - STATE(549), 1, - sym_object_type, - STATE(2350), 1, - sym_type_parameters, - STATE(2831), 1, - sym_extends_clause, - [96491] = 4, + ACTIONS(4542), 1, + anon_sym_LBRACK, + ACTIONS(4544), 1, + anon_sym_enum, + STATE(2101), 1, + sym_object, + STATE(2106), 1, + sym_array, + STATE(2617), 1, + sym_variable_declarator, + [96278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2951), 1, - sym_statement_block, - ACTIONS(4564), 5, + ACTIONS(2186), 1, + anon_sym_COLON, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2471), 1, + sym_type_annotation, + STATE(2702), 1, + sym__initializer, + ACTIONS(4334), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96508] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, - anon_sym_implements, - ACTIONS(4394), 1, - anon_sym_extends, - STATE(1056), 1, - sym_class_body, - STATE(2693), 1, - sym_extends_clause, - STATE(2961), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [96533] = 8, + [96299] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4566), 1, + ACTIONS(4546), 1, sym_identifier, - ACTIONS(4568), 1, + ACTIONS(4548), 1, anon_sym_STAR, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2870), 1, - sym__call_signature, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - [96558] = 8, + STATE(2970), 1, + sym__call_signature, + [96324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, - anon_sym_implements, - ACTIONS(4394), 1, - anon_sym_extends, - ACTIONS(4396), 1, - anon_sym_LBRACE, - STATE(2487), 1, - sym_class_body, - STATE(2693), 1, - sym_extends_clause, - STATE(2971), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [96583] = 8, + STATE(3246), 1, + sym_predefined_type, + ACTIONS(4550), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [96339] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1052), 1, + STATE(1517), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2975), 1, + STATE(2985), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [96608] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4570), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [96621] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2955), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [96634] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4572), 1, - anon_sym_COLON, - ACTIONS(4574), 1, - anon_sym_QMARK, - STATE(2406), 1, - sym_formal_parameters, - STATE(2877), 1, - sym__call_signature, - STATE(2899), 1, - sym_type_parameters, - [96659] = 8, + [96364] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4576), 1, + ACTIONS(4552), 1, sym_identifier, - ACTIONS(4578), 1, + ACTIONS(4554), 1, anon_sym_STAR, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - STATE(3011), 1, + STATE(3005), 1, sym__call_signature, - [96684] = 2, + [96389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4580), 7, - sym__automatic_semicolon, + ACTIONS(4463), 1, anon_sym_LBRACE, + STATE(2370), 1, + sym_statement_block, + ACTIONS(903), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [96697] = 8, + [96406] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4350), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1385), 1, + STATE(1095), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3045), 1, + STATE(2869), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [96722] = 4, + [96431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - STATE(2442), 1, - sym_type_annotation, - ACTIONS(4582), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [96739] = 4, + STATE(3244), 1, + sym_predefined_type, + ACTIONS(4550), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [96446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, + ACTIONS(2186), 1, anon_sym_COLON, - STATE(2485), 1, + STATE(2345), 1, sym_type_annotation, - ACTIONS(4584), 5, + ACTIONS(4556), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96756] = 8, + [96463] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 1, - sym_identifier, - ACTIONS(4514), 1, - anon_sym_LBRACE, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4586), 1, - anon_sym_enum, - STATE(2104), 1, - sym_array, - STATE(2153), 1, - sym_object, - STATE(2614), 1, - sym_variable_declarator, - [96781] = 8, + sym_comment, + ACTIONS(4560), 1, + anon_sym_is, + ACTIONS(4558), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [96478] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4396), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(531), 1, + STATE(2425), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2920), 1, + STATE(2867), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [96806] = 8, + [96503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4588), 1, - sym_identifier, - ACTIONS(4590), 1, - anon_sym_STAR, - STATE(2406), 1, - sym_formal_parameters, - STATE(2878), 1, - sym__call_signature, - STATE(2899), 1, - sym_type_parameters, - [96831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(4370), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(1741), 5, + ACTIONS(1732), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [96848] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4444), 1, - anon_sym_LT, - STATE(430), 1, - sym_type_arguments, - ACTIONS(1495), 5, - anon_sym_else, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [96865] = 8, + [96520] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(4514), 1, anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4592), 1, - sym_identifier, - ACTIONS(4594), 1, - anon_sym_STAR, - STATE(2406), 1, - sym_formal_parameters, - STATE(2878), 1, - sym__call_signature, - STATE(2899), 1, + ACTIONS(4516), 1, + anon_sym_extends, + STATE(544), 1, + sym_object_type, + STATE(2396), 1, sym_type_parameters, - [96890] = 8, + STATE(2812), 1, + sym_extends_clause, + [96545] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4596), 1, + ACTIONS(4562), 1, sym_identifier, - ACTIONS(4598), 1, + ACTIONS(4564), 1, anon_sym_STAR, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2867), 1, + STATE(2920), 1, sym__call_signature, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - [96915] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2508), 1, - sym_type_annotation, - STATE(2776), 1, - sym__initializer, - ACTIONS(4323), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [96936] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(3275), 1, - sym_predefined_type, - ACTIONS(4600), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [96951] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(3248), 1, - sym_predefined_type, - ACTIONS(4600), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [96966] = 8, + [96570] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2598), 1, + ACTIONS(4350), 1, anon_sym_LBRACE, - ACTIONS(4560), 1, - anon_sym_LT, - ACTIONS(4562), 1, + ACTIONS(4403), 1, + anon_sym_implements, + ACTIONS(4405), 1, anon_sym_extends, - STATE(2283), 1, - sym_object_type, - STATE(2328), 1, - sym_type_parameters, - STATE(2752), 1, + STATE(1099), 1, + sym_class_body, + STATE(2777), 1, sym_extends_clause, - [96991] = 8, + STATE(2865), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [96595] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(4602), 1, + ACTIONS(4566), 1, sym_identifier, - ACTIONS(4604), 1, + ACTIONS(4568), 1, anon_sym_DOT, - STATE(2089), 1, + STATE(512), 1, sym_nested_identifier, - STATE(2112), 1, + STATE(521), 1, sym_string, - STATE(2263), 1, + STATE(608), 1, sym__module, - [97016] = 8, + [96620] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1525), 1, + STATE(1617), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3001), 1, + STATE(3032), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [97041] = 8, + [96645] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1033), 1, + ACTIONS(4407), 1, + anon_sym_LBRACE, + STATE(93), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2939), 1, + STATE(2885), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [97066] = 6, + [96670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2297), 1, - sym_type_annotation, - STATE(2779), 1, - sym__initializer, - ACTIONS(2898), 3, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(3038), 1, + sym_statement_block, + ACTIONS(4570), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [97087] = 2, + anon_sym_PIPE_RBRACE, + [96687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(3740), 1, + anon_sym_EQ, + ACTIONS(4009), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2716), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [97100] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(4392), 1, - anon_sym_implements, - ACTIONS(4394), 1, - anon_sym_extends, - STATE(1442), 1, - sym_class_body, - STATE(2693), 1, - sym_extends_clause, - STATE(2846), 1, - sym_class_heritage, - STATE(3094), 1, - sym_implements_clause, - [97125] = 8, + anon_sym_LT, + anon_sym_QMARK, + [96704] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4608), 1, - sym_identifier, - ACTIONS(4610), 1, - anon_sym_STAR, - STATE(2406), 1, + ACTIONS(4572), 1, + anon_sym_COLON, + ACTIONS(4574), 1, + anon_sym_QMARK, + STATE(2340), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2953), 1, + STATE(2859), 1, sym__call_signature, - [97150] = 2, + STATE(2923), 1, + sym_type_parameters, + [96729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 7, + ACTIONS(4576), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -146558,4554 +146474,4742 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [97163] = 8, + [96742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(4580), 1, + anon_sym_EQ, + ACTIONS(4578), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4582), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [96761] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4614), 1, + ACTIONS(4584), 1, sym_identifier, - ACTIONS(4616), 1, + ACTIONS(4586), 1, anon_sym_STAR, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2878), 1, - sym__call_signature, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - [97188] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4620), 1, - anon_sym_is, - ACTIONS(4618), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [97203] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2400), 1, - anon_sym_COLON, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4626), 1, - anon_sym_QMARK, - STATE(2585), 1, - sym_type_annotation, - STATE(3002), 1, - sym__initializer, - ACTIONS(4624), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [97226] = 8, + STATE(2970), 1, + sym__call_signature, + [96786] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(4628), 1, + ACTIONS(4566), 1, sym_identifier, - ACTIONS(4630), 1, + ACTIONS(4588), 1, anon_sym_DOT, - STATE(522), 1, + STATE(512), 1, + sym_nested_identifier, + STATE(521), 1, sym_string, - STATE(539), 1, + STATE(608), 1, sym__module, - STATE(2568), 1, - sym_nested_identifier, - [97251] = 8, + [96811] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - ACTIONS(4396), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(526), 1, + STATE(2492), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3037), 1, + STATE(2850), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [97276] = 8, + [96836] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1490), 1, + STATE(1412), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(2911), 1, + STATE(2908), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [97301] = 8, + [96861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(2186), 1, + anon_sym_COLON, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2501), 1, + sym_type_annotation, + STATE(2652), 1, + sym__initializer, + ACTIONS(4332), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [96882] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + sym_identifier, + ACTIONS(4592), 1, + anon_sym_STAR, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(3064), 1, + sym__call_signature, + [96907] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4362), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4403), 1, anon_sym_implements, - ACTIONS(4394), 1, + ACTIONS(4405), 1, anon_sym_extends, - STATE(1466), 1, + STATE(1376), 1, sym_class_body, - STATE(2693), 1, + STATE(2777), 1, sym_extends_clause, - STATE(3060), 1, + STATE(2844), 1, sym_class_heritage, - STATE(3094), 1, + STATE(3135), 1, sym_implements_clause, - [97326] = 8, + [96932] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2186), 1, + anon_sym_COLON, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2285), 1, + sym_type_annotation, + STATE(2675), 1, + sym__initializer, + ACTIONS(4326), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [96953] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4632), 1, + ACTIONS(4594), 1, sym_identifier, - ACTIONS(4634), 1, + ACTIONS(4596), 1, anon_sym_STAR, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - STATE(2942), 1, + STATE(2970), 1, sym__call_signature, - [97351] = 8, + [96978] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4636), 1, + ACTIONS(4598), 1, sym_identifier, - ACTIONS(4638), 1, + ACTIONS(4600), 1, anon_sym_STAR, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - STATE(3011), 1, + STATE(3005), 1, sym__call_signature, - [97376] = 4, + [97003] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 1, - anon_sym_LT, - STATE(430), 1, - sym_type_arguments, - ACTIONS(1692), 5, - anon_sym_else, - anon_sym_while, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [97393] = 4, + ACTIONS(4401), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_implements, + ACTIONS(4405), 1, + anon_sym_extends, + STATE(568), 1, + sym_class_body, + STATE(2777), 1, + sym_extends_clause, + STATE(2855), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [97028] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(4001), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2716), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(1670), 1, anon_sym_LT, - anon_sym_QMARK, - [97410] = 4, + ACTIONS(4522), 1, + anon_sym_LPAREN, + ACTIONS(4602), 1, + sym_identifier, + ACTIONS(4604), 1, + anon_sym_STAR, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(2965), 1, + sym__call_signature, + [97053] = 4, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, - aux_sym_object_type_repeat1, - ACTIONS(2783), 2, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2980), 1, + sym_statement_block, + ACTIONS(4606), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(4640), 3, + [97070] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2976), 1, + sym_statement_block, + ACTIONS(4608), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [97426] = 7, + anon_sym_PIPE_RBRACE, + [97087] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(4642), 1, - anon_sym_QMARK, - STATE(2024), 1, - sym_formal_parameters, - STATE(2834), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [97448] = 4, + ACTIONS(4403), 1, + anon_sym_implements, + ACTIONS(4405), 1, + anon_sym_extends, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(2481), 1, + sym_class_body, + STATE(2777), 1, + sym_extends_clause, + STATE(2843), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [97112] = 4, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, - aux_sym_object_type_repeat1, - ACTIONS(4647), 2, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2974), 1, + sym_statement_block, + ACTIONS(4610), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(4644), 3, + [97129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2963), 1, + sym_statement_block, + ACTIONS(4612), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [97464] = 7, + anon_sym_PIPE_RBRACE, + [97146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4649), 1, - sym_identifier, - STATE(2104), 1, - sym_array, - STATE(2153), 1, - sym_object, - STATE(2603), 1, - sym_variable_declarator, - [97486] = 7, + STATE(2955), 1, + sym_statement_block, + ACTIONS(4614), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [97163] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4651), 1, - sym_identifier, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3046), 1, - sym__call_signature, - [97508] = 7, + ACTIONS(4350), 1, + anon_sym_LBRACE, + ACTIONS(4403), 1, + anon_sym_implements, + ACTIONS(4405), 1, + anon_sym_extends, + STATE(1153), 1, + sym_class_body, + STATE(2777), 1, + sym_extends_clause, + STATE(2841), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [97188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(4653), 1, - anon_sym_QMARK, - STATE(2024), 1, - sym_formal_parameters, - STATE(2109), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [97530] = 7, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2941), 1, + sym_statement_block, + ACTIONS(4616), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [97205] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(2435), 1, + anon_sym_COLON, + ACTIONS(4618), 1, + anon_sym_EQ, + ACTIONS(4622), 1, anon_sym_QMARK, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2913), 1, - sym__call_signature, - [97552] = 7, + STATE(2629), 1, + sym_type_annotation, + STATE(2919), 1, + sym__initializer, + ACTIONS(4620), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [97228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4657), 1, - sym_identifier, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2984), 1, - sym__call_signature, - [97574] = 7, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2991), 1, + sym_statement_block, + ACTIONS(4624), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [97245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 1, - sym_identifier, - ACTIONS(4661), 1, - anon_sym_GT, - ACTIONS(4663), 1, - sym_jsx_identifier, - STATE(1949), 1, - sym_nested_identifier, - STATE(2039), 1, - sym_jsx_namespace_name, - STATE(2730), 1, - sym_type_parameter, - [97596] = 7, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2938), 1, + sym_statement_block, + ACTIONS(4626), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [97262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(4665), 1, - anon_sym_QMARK, - STATE(2024), 1, - sym_formal_parameters, - STATE(2790), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [97618] = 5, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2988), 1, + sym_statement_block, + ACTIONS(4628), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [97279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, - anon_sym_BQUOTE, - ACTIONS(4672), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4667), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2179), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [97636] = 7, + ACTIONS(4208), 1, + anon_sym_EQ, + STATE(2523), 1, + sym_constraint, + STATE(2944), 1, + sym_default_type, + ACTIONS(4212), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(4246), 2, + anon_sym_COLON, + anon_sym_extends, + [97300] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, - anon_sym_LPAREN, - ACTIONS(4216), 1, - anon_sym_LT, - ACTIONS(4675), 1, - sym_identifier, - ACTIONS(4677), 1, - anon_sym_LBRACK, - STATE(1606), 1, - sym_arguments, - STATE(2895), 1, - sym_type_arguments, - [97658] = 5, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2896), 1, + sym_statement_block, + ACTIONS(4630), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [97317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4681), 1, - anon_sym_BQUOTE, - ACTIONS(4683), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4679), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2179), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [97676] = 5, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2894), 1, + sym_statement_block, + ACTIONS(4632), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [97334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4687), 1, - anon_sym_BQUOTE, - ACTIONS(4685), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2200), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [97694] = 7, + ACTIONS(4634), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [97347] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4538), 1, sym_identifier, - STATE(2406), 1, - sym_formal_parameters, - STATE(2836), 1, - sym__call_signature, - STATE(2899), 1, - sym_type_parameters, - [97716] = 6, + ACTIONS(4540), 1, + anon_sym_LBRACE, + ACTIONS(4542), 1, + anon_sym_LBRACK, + ACTIONS(4636), 1, + anon_sym_enum, + STATE(2101), 1, + sym_object, + STATE(2106), 1, + sym_array, + STATE(2610), 1, + sym_variable_declarator, + [97372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_COMMA, - ACTIONS(4444), 1, - anon_sym_LT, - STATE(430), 1, - sym_type_arguments, - STATE(2604), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3068), 2, + ACTIONS(4638), 7, + sym__automatic_semicolon, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [97385] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 1, anon_sym_implements, - [97736] = 7, + ACTIONS(4405), 1, + anon_sym_extends, + ACTIONS(4407), 1, + anon_sym_LBRACE, + STATE(85), 1, + sym_class_body, + STATE(2777), 1, + sym_extends_clause, + STATE(3053), 1, + sym_class_heritage, + STATE(3135), 1, + sym_implements_clause, + [97410] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(4691), 1, - anon_sym_QMARK, - STATE(2024), 1, - sym_formal_parameters, - STATE(2272), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [97758] = 7, + ACTIONS(4540), 1, + anon_sym_LBRACE, + ACTIONS(4542), 1, + anon_sym_LBRACK, + ACTIONS(4640), 1, + sym_identifier, + STATE(2101), 1, + sym_object, + STATE(2106), 1, + sym_array, + STATE(2610), 1, + sym_variable_declarator, + [97432] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4693), 1, - anon_sym_QMARK, - STATE(2406), 1, - sym_formal_parameters, - STATE(2893), 1, - sym__call_signature, - STATE(2899), 1, - sym_type_parameters, - [97780] = 7, + ACTIONS(4540), 1, + anon_sym_LBRACE, + ACTIONS(4542), 1, + anon_sym_LBRACK, + ACTIONS(4640), 1, + sym_identifier, + STATE(2101), 1, + sym_object, + STATE(2106), 1, + sym_array, + STATE(2609), 1, + sym_variable_declarator, + [97454] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, ACTIONS(4216), 1, anon_sym_LT, - ACTIONS(4695), 1, + ACTIONS(4642), 1, sym_identifier, - ACTIONS(4697), 1, + ACTIONS(4644), 1, anon_sym_LBRACK, - STATE(1461), 1, + STATE(1508), 1, sym_arguments, - STATE(2854), 1, + STATE(2897), 1, sym_type_arguments, - [97802] = 4, + [97476] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2221), 1, + aux_sym_object_type_repeat1, + ACTIONS(2795), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4646), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97492] = 4, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, + STATE(2175), 1, aux_sym_object_type_repeat1, ACTIONS(2795), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4699), 3, + ACTIONS(4646), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97508] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2221), 1, + aux_sym_object_type_repeat1, + ACTIONS(2817), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4648), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [97524] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2221), 1, + aux_sym_object_type_repeat1, + ACTIONS(2791), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4650), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [97818] = 7, + [97540] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4701), 1, + ACTIONS(4652), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2443), 1, + STATE(2423), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [97840] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4703), 1, - sym_identifier, - ACTIONS(4705), 1, - anon_sym_GT, - ACTIONS(4707), 1, - sym_jsx_identifier, - STATE(1957), 1, - sym_nested_identifier, - STATE(2036), 1, - sym_jsx_namespace_name, - STATE(2730), 1, - sym_type_parameter, - [97862] = 7, + [97562] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4709), 1, + ACTIONS(4654), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2415), 1, - sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [97884] = 7, + STATE(3021), 1, + sym__call_signature, + [97584] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1379), 1, anon_sym_DQUOTE, ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(4628), 1, + ACTIONS(4566), 1, sym_identifier, - STATE(522), 1, + STATE(512), 1, + sym_nested_identifier, + STATE(521), 1, sym_string, - STATE(603), 1, + STATE(608), 1, sym__module, - STATE(2568), 1, - sym_nested_identifier, - [97906] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4711), 1, - sym_identifier, - ACTIONS(4713), 1, - anon_sym_GT, - ACTIONS(4715), 1, - sym_jsx_identifier, - STATE(1943), 1, - sym_nested_identifier, - STATE(2042), 1, - sym_jsx_namespace_name, - STATE(2730), 1, - sym_type_parameter, - [97928] = 2, + [97606] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2716), 6, - anon_sym_EQ, + ACTIONS(2261), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(3197), 1, + anon_sym_LBRACE, + ACTIONS(3229), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4656), 1, anon_sym_LT, - anon_sym_QMARK, - [97940] = 7, + STATE(2623), 1, + aux_sym_extends_clause_repeat1, + STATE(2783), 1, + sym_type_arguments, + [97628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, - sym_identifier, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3046), 1, - sym__call_signature, - [97962] = 7, + ACTIONS(4658), 1, + anon_sym_default, + ACTIONS(4661), 1, + anon_sym_RBRACE, + ACTIONS(4663), 1, + anon_sym_case, + STATE(2180), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [97646] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4719), 1, + ACTIONS(4666), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2107), 1, + STATE(2679), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [97984] = 7, + [97668] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, - anon_sym_QMARK, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2944), 1, - sym__call_signature, - [98006] = 4, + ACTIONS(4668), 1, + sym_identifier, + ACTIONS(4670), 1, + anon_sym_GT, + ACTIONS(4672), 1, + sym_jsx_identifier, + STATE(1953), 1, + sym_nested_identifier, + STATE(2045), 1, + sym_jsx_namespace_name, + STATE(2771), 1, + sym_type_parameter, + [97690] = 5, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, - aux_sym_object_type_repeat1, - ACTIONS(2785), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4723), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98022] = 7, + ACTIONS(4676), 1, + anon_sym_BQUOTE, + ACTIONS(4678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4674), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2213), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [97708] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4725), 1, - sym_identifier, - STATE(2406), 1, + ACTIONS(4680), 1, + anon_sym_QMARK, + STATE(2059), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2943), 1, + STATE(2441), 1, sym__call_signature, - [98044] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4683), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4727), 1, - anon_sym_BQUOTE, - ACTIONS(4679), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2179), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [98062] = 7, + STATE(2990), 1, + sym_type_parameters, + [97730] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(2122), 1, anon_sym_LPAREN, ACTIONS(4216), 1, anon_sym_LT, - ACTIONS(4729), 1, + ACTIONS(4682), 1, sym_identifier, - ACTIONS(4731), 1, + ACTIONS(4684), 1, anon_sym_LBRACK, - STATE(1563), 1, + STATE(1635), 1, sym_arguments, - STATE(2948), 1, + STATE(3052), 1, sym_type_arguments, - [98084] = 7, + [97752] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 1, + sym_identifier, + ACTIONS(4688), 1, + anon_sym_GT, + ACTIONS(4690), 1, + sym_jsx_identifier, + STATE(1942), 1, + sym_nested_identifier, + STATE(2039), 1, + sym_jsx_namespace_name, + STATE(2771), 1, + sym_type_parameter, + [97774] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4733), 1, + ACTIONS(4692), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2479), 1, + STATE(2349), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [98106] = 7, + [97796] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4735), 1, + ACTIONS(4694), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2403), 1, - sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [98128] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4683), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4739), 1, - anon_sym_BQUOTE, - ACTIONS(4737), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2257), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [98146] = 4, + STATE(2989), 1, + sym__call_signature, + [97818] = 2, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, - aux_sym_object_type_repeat1, - ACTIONS(2789), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4741), 3, + ACTIONS(4696), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [98162] = 7, + anon_sym_PIPE_RBRACE, + [97830] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(4602), 1, + ACTIONS(4510), 1, sym_identifier, - STATE(2089), 1, - sym_nested_identifier, - STATE(2112), 1, + STATE(521), 1, sym_string, - STATE(2292), 1, + STATE(584), 1, sym__module, - [98184] = 4, + STATE(2622), 1, + sym_nested_identifier, + [97852] = 2, ACTIONS(3), 1, sym_comment, - STATE(2198), 1, - aux_sym_object_type_repeat1, - ACTIONS(2789), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4741), 3, + ACTIONS(4698), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [98200] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4683), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4745), 1, - anon_sym_BQUOTE, - ACTIONS(4743), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2181), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [98218] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(4216), 1, - anon_sym_LT, - ACTIONS(4747), 1, - sym_identifier, - ACTIONS(4749), 1, - anon_sym_LBRACK, - STATE(1054), 1, - sym_arguments, - STATE(2851), 1, - sym_type_arguments, - [98240] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2169), 1, - aux_sym_object_type_repeat1, - ACTIONS(4753), 2, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4751), 3, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [98256] = 7, + anon_sym_PIPE_RBRACE, + [97864] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, + ACTIONS(1379), 1, anon_sym_DQUOTE, - ACTIONS(2348), 1, + ACTIONS(1381), 1, anon_sym_SQUOTE, - ACTIONS(4602), 1, + ACTIONS(4510), 1, sym_identifier, - STATE(2089), 1, - sym_nested_identifier, - STATE(2112), 1, + STATE(521), 1, sym_string, - STATE(2263), 1, + STATE(608), 1, sym__module, - [98278] = 7, + STATE(2622), 1, + sym_nested_identifier, + [97886] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4755), 1, + ACTIONS(4700), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2102), 1, + STATE(2315), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [98300] = 7, + [97908] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4757), 1, + ACTIONS(4702), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2386), 1, + STATE(2458), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [98322] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2217), 1, - aux_sym_object_type_repeat1, - ACTIONS(2783), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4640), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98338] = 5, + [97930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4759), 1, - anon_sym_default, - ACTIONS(4762), 1, - anon_sym_RBRACE, - ACTIONS(4764), 1, - anon_sym_case, - STATE(2215), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [98356] = 7, + ACTIONS(4678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4706), 1, + anon_sym_BQUOTE, + ACTIONS(4704), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2220), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [97948] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - ACTIONS(4767), 1, - sym_identifier, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2904), 1, - sym__call_signature, - [98378] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2171), 1, - aux_sym_object_type_repeat1, - ACTIONS(2805), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4769), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98394] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, + ACTIONS(4216), 1, anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(4771), 1, - anon_sym_QMARK, - STATE(2024), 1, - sym_formal_parameters, - STATE(2383), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [98416] = 3, + ACTIONS(4708), 1, + sym_identifier, + ACTIONS(4710), 1, + anon_sym_LBRACK, + STATE(1416), 1, + sym_arguments, + STATE(2987), 1, + sym_type_arguments, + [97970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 2, + ACTIONS(4270), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(4276), 4, + ACTIONS(4272), 4, anon_sym_EQ, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [98430] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - ACTIONS(4773), 1, - sym_identifier, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2965), 1, - sym__call_signature, - [98452] = 4, + [97984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, + ACTIONS(4714), 1, anon_sym_EQ, - ACTIONS(4775), 2, + ACTIONS(4712), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(4779), 3, + ACTIONS(4716), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [98468] = 7, + [98000] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4781), 1, + ACTIONS(4718), 1, sym_identifier, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - STATE(3046), 1, + STATE(3031), 1, sym__call_signature, - [98490] = 4, + [98022] = 6, ACTIONS(3), 1, sym_comment, - STATE(2205), 1, - aux_sym_object_type_repeat1, - ACTIONS(4785), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4783), 3, - sym__automatic_semicolon, + ACTIONS(4720), 1, + sym_identifier, + ACTIONS(4722), 1, anon_sym_COMMA, - anon_sym_SEMI, - [98506] = 2, + ACTIONS(4724), 1, + anon_sym_RBRACE, + STATE(2818), 1, + sym__import_export_specifier, + ACTIONS(4726), 2, + anon_sym_type, + anon_sym_typeof, + [98042] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [98518] = 4, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + ACTIONS(4566), 1, + sym_identifier, + STATE(512), 1, + sym_nested_identifier, + STATE(521), 1, + sym_string, + STATE(584), 1, + sym__module, + [98064] = 4, ACTIONS(3), 1, sym_comment, - STATE(2228), 1, + STATE(2221), 1, aux_sym_object_type_repeat1, - ACTIONS(4789), 2, + ACTIONS(2799), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4787), 3, + ACTIONS(4728), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98534] = 4, + [98080] = 4, ACTIONS(3), 1, sym_comment, - STATE(2230), 1, + STATE(2172), 1, aux_sym_object_type_repeat1, - ACTIONS(2803), 2, + ACTIONS(4732), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4791), 3, + ACTIONS(4730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98550] = 7, + [98096] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4793), 1, + ACTIONS(4734), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2105), 1, - sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [98572] = 4, + STATE(3033), 1, + sym__call_signature, + [98118] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4738), 1, + anon_sym_BQUOTE, + ACTIONS(4736), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2256), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [98136] = 4, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, + STATE(2221), 1, aux_sym_object_type_repeat1, - ACTIONS(2803), 2, + ACTIONS(2781), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4791), 3, + ACTIONS(4740), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [98152] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2716), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [98164] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2202), 1, + aux_sym_object_type_repeat1, + ACTIONS(2781), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4740), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98588] = 7, + [98180] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + ACTIONS(4524), 1, + sym_identifier, + STATE(2069), 1, + sym_nested_identifier, + STATE(2120), 1, + sym_string, + STATE(2389), 1, + sym__module, + [98202] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4795), 1, + ACTIONS(4742), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2114), 1, - sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [98610] = 4, + STATE(2945), 1, + sym__call_signature, + [98224] = 4, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, + STATE(2206), 1, aux_sym_object_type_repeat1, - ACTIONS(2813), 2, + ACTIONS(4746), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4797), 3, + ACTIONS(4744), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98626] = 7, + [98240] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, + sym_comment, + ACTIONS(2106), 1, anon_sym_LPAREN, - ACTIONS(4799), 1, + ACTIONS(4216), 1, + anon_sym_LT, + ACTIONS(4748), 1, sym_identifier, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2904), 1, - sym__call_signature, - [98648] = 7, + ACTIONS(4750), 1, + anon_sym_LBRACK, + STATE(1179), 1, + sym_arguments, + STATE(2953), 1, + sym_type_arguments, + [98262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(4678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4752), 1, + anon_sym_BQUOTE, + ACTIONS(4704), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2220), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [98280] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2346), 1, anon_sym_DQUOTE, - ACTIONS(1381), 1, + ACTIONS(2348), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4524), 1, sym_identifier, - STATE(508), 1, + STATE(2069), 1, sym_nested_identifier, - STATE(522), 1, + STATE(2120), 1, sym_string, - STATE(603), 1, + STATE(2373), 1, sym__module, - [98670] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2400), 1, - anon_sym_COLON, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(2581), 1, - sym_type_annotation, - STATE(2989), 1, - sym__initializer, - ACTIONS(4801), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [98690] = 7, + [98302] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, + ACTIONS(2122), 1, + anon_sym_LPAREN, + ACTIONS(4216), 1, + anon_sym_LT, + ACTIONS(4754), 1, sym_identifier, - STATE(522), 1, - sym_string, - STATE(539), 1, - sym__module, - STATE(2568), 1, - sym_nested_identifier, - [98712] = 6, + ACTIONS(4756), 1, + anon_sym_LBRACK, + STATE(1579), 1, + sym_arguments, + STATE(3017), 1, + sym_type_arguments, + [98324] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4540), 1, + anon_sym_LBRACE, + ACTIONS(4542), 1, + anon_sym_LBRACK, + ACTIONS(4640), 1, sym_identifier, - ACTIONS(4805), 1, - anon_sym_COMMA, - ACTIONS(4807), 1, - anon_sym_RBRACE, - STATE(2765), 1, - sym__import_export_specifier, - ACTIONS(4809), 2, - anon_sym_type, - anon_sym_typeof, - [98732] = 7, + STATE(2101), 1, + sym_object, + STATE(2106), 1, + sym_array, + STATE(2763), 1, + sym_variable_declarator, + [98346] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4758), 1, anon_sym_QMARK, - STATE(2406), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2860), 1, + STATE(2313), 1, sym__call_signature, - STATE(2899), 1, + STATE(2990), 1, sym_type_parameters, - [98754] = 7, + [98368] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4216), 1, + ACTIONS(4760), 1, + anon_sym_QMARK, + STATE(2059), 1, + sym_formal_parameters, + STATE(2163), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [98390] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4813), 1, + ACTIONS(4522), 1, + anon_sym_LPAREN, + ACTIONS(4762), 1, sym_identifier, - ACTIONS(4815), 1, - anon_sym_LBRACK, - STATE(1532), 1, - sym_arguments, - STATE(2921), 1, - sym_type_arguments, - [98776] = 7, + STATE(2340), 1, + sym_formal_parameters, + STATE(2917), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [98412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - ACTIONS(4520), 1, - sym_identifier, - STATE(508), 1, - sym_nested_identifier, - STATE(522), 1, - sym_string, - STATE(539), 1, - sym__module, - [98798] = 2, + ACTIONS(4767), 1, + anon_sym_BQUOTE, + ACTIONS(4769), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4764), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2220), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [98430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4817), 6, + STATE(2221), 1, + aux_sym_object_type_repeat1, + ACTIONS(4775), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4772), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98810] = 4, + [98446] = 4, ACTIONS(3), 1, sym_comment, - STATE(2245), 1, + STATE(2237), 1, aux_sym_object_type_repeat1, - ACTIONS(4821), 2, + ACTIONS(2817), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4819), 3, + ACTIONS(4648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98826] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4803), 1, - sym_identifier, - ACTIONS(4823), 1, - anon_sym_COMMA, - ACTIONS(4825), 1, - anon_sym_RBRACE, - STATE(2819), 1, - sym__import_export_specifier, - ACTIONS(4809), 2, - anon_sym_type, - anon_sym_typeof, - [98846] = 7, + [98462] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, + ACTIONS(4540), 1, anon_sym_LBRACE, - ACTIONS(4516), 1, + ACTIONS(4542), 1, anon_sym_LBRACK, - ACTIONS(4649), 1, + ACTIONS(4640), 1, sym_identifier, - STATE(2104), 1, - sym_array, - STATE(2153), 1, + STATE(2101), 1, sym_object, - STATE(2592), 1, + STATE(2106), 1, + sym_array, + STATE(2601), 1, sym_variable_declarator, - [98868] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2247), 1, - aux_sym_object_type_repeat1, - ACTIONS(2807), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4827), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98884] = 5, + [98484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(4777), 1, anon_sym_default, - ACTIONS(4831), 1, + ACTIONS(4779), 1, anon_sym_RBRACE, - ACTIONS(4833), 1, + ACTIONS(4781), 1, anon_sym_case, - STATE(2215), 3, + STATE(2246), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [98902] = 4, + [98502] = 4, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, + STATE(2221), 1, aux_sym_object_type_repeat1, - ACTIONS(2807), 2, + ACTIONS(2813), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4827), 3, + ACTIONS(4783), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98918] = 2, + [98518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [98930] = 4, + ACTIONS(4678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4787), 1, + anon_sym_BQUOTE, + ACTIONS(4785), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2195), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [98536] = 7, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, - aux_sym_object_type_repeat1, - ACTIONS(2781), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4837), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [98946] = 5, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_identifier, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(2977), 1, + sym__call_signature, + [98558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 1, - anon_sym_default, - ACTIONS(4833), 1, - anon_sym_case, - ACTIONS(4839), 1, + ACTIONS(3478), 6, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2244), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [98964] = 4, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [98570] = 4, ACTIONS(3), 1, sym_comment, - STATE(2171), 1, + STATE(2221), 1, aux_sym_object_type_repeat1, - ACTIONS(2791), 2, + ACTIONS(2821), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4841), 3, + ACTIONS(4791), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [98980] = 7, + [98586] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4843), 1, - anon_sym_QMARK, - STATE(2406), 1, + ACTIONS(4793), 1, + sym_identifier, + STATE(2340), 1, sym_formal_parameters, - STATE(2835), 1, - sym__call_signature, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - [99002] = 7, + STATE(2977), 1, + sym__call_signature, + [98608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - ACTIONS(4845), 1, - anon_sym_QMARK, - STATE(2024), 1, - sym_formal_parameters, - STATE(2369), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [99024] = 7, + STATE(2225), 1, + aux_sym_object_type_repeat1, + ACTIONS(2821), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4791), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [98624] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - ACTIONS(4847), 1, + ACTIONS(4795), 1, sym_identifier, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - STATE(2904), 1, + STATE(3031), 1, sym__call_signature, - [99046] = 7, + [98646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, - anon_sym_LBRACE, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4649), 1, + STATE(2229), 1, + aux_sym_object_type_repeat1, + ACTIONS(4799), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4797), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [98662] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4801), 1, sym_identifier, - STATE(2104), 1, - sym_array, - STATE(2153), 1, - sym_object, - STATE(2748), 1, - sym_variable_declarator, - [99068] = 4, + ACTIONS(4803), 1, + anon_sym_GT, + ACTIONS(4805), 1, + sym_jsx_identifier, + STATE(1939), 1, + sym_nested_identifier, + STATE(2042), 1, + sym_jsx_namespace_name, + STATE(2771), 1, + sym_type_parameter, + [98684] = 4, ACTIONS(3), 1, sym_comment, - STATE(2249), 1, + STATE(2260), 1, aux_sym_object_type_repeat1, - ACTIONS(4851), 2, + ACTIONS(4809), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4849), 3, + ACTIONS(4807), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [99084] = 7, + [98700] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4853), 1, + ACTIONS(4811), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2447), 1, + STATE(2290), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [99106] = 4, + [98722] = 4, ACTIONS(3), 1, sym_comment, - STATE(2188), 1, + STATE(2221), 1, aux_sym_object_type_repeat1, - ACTIONS(2791), 2, + ACTIONS(2815), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4841), 3, + ACTIONS(4813), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [99122] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4683), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4855), 1, - anon_sym_BQUOTE, - ACTIONS(4679), 2, - sym__template_chars, - sym_escape_sequence, - STATE(2179), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [99140] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - anon_sym_LBRACE, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4649), 1, - sym_identifier, - STATE(2104), 1, - sym_array, - STATE(2153), 1, - sym_object, - STATE(2614), 1, - sym_variable_declarator, - [99162] = 7, + [98738] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - ACTIONS(4216), 1, + ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4857), 1, - sym_identifier, - ACTIONS(4859), 1, - anon_sym_LBRACK, - STATE(1129), 1, - sym_arguments, - STATE(2974), 1, - sym_type_arguments, - [99184] = 7, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(4815), 1, + anon_sym_QMARK, + STATE(2059), 1, + sym_formal_parameters, + STATE(2514), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [98760] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, - anon_sym_LBRACE, - ACTIONS(4516), 1, - anon_sym_LBRACK, - ACTIONS(4649), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + ACTIONS(4817), 1, sym_identifier, - STATE(2104), 1, - sym_array, - STATE(2153), 1, - sym_object, - STATE(2535), 1, - sym_variable_declarator, - [99206] = 7, + STATE(2340), 1, + sym_formal_parameters, + STATE(2884), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [98782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, + ACTIONS(2284), 1, anon_sym_COMMA, - ACTIONS(3036), 1, - anon_sym_LBRACE, - ACTIONS(3068), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4861), 1, + ACTIONS(4457), 1, anon_sym_LT, - STATE(2608), 1, - aux_sym_extends_clause_repeat1, - STATE(2760), 1, + STATE(429), 1, sym_type_arguments, - [99228] = 7, + STATE(2524), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3229), 2, + anon_sym_LBRACE, + anon_sym_implements, + [98802] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - ACTIONS(4863), 1, + ACTIONS(4819), 1, anon_sym_QMARK, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2489), 1, + STATE(2499), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [99250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1798), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99261] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(4865), 1, - anon_sym_export, - ACTIONS(4867), 1, - anon_sym_class, - STATE(1876), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - [99280] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(4871), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [99293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4873), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(4875), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [99306] = 6, + [98824] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2406), 1, + ACTIONS(4821), 1, + anon_sym_QMARK, + STATE(2059), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2959), 1, + STATE(2159), 1, sym__call_signature, - [99325] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_AMP, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(1711), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [99340] = 2, + STATE(2990), 1, + sym_type_parameters, + [98846] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 5, - anon_sym_EQ, + ACTIONS(4540), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [99351] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1930), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99362] = 5, + ACTIONS(4542), 1, + anon_sym_LBRACK, + ACTIONS(4640), 1, + sym_identifier, + STATE(2101), 1, + sym_object, + STATE(2106), 1, + sym_array, + STATE(2617), 1, + sym_variable_declarator, + [98868] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4720), 1, sym_identifier, - ACTIONS(4883), 1, + ACTIONS(4823), 1, + anon_sym_COMMA, + ACTIONS(4825), 1, anon_sym_RBRACE, - STATE(2987), 1, + STATE(2788), 1, sym__import_export_specifier, - ACTIONS(4809), 2, + ACTIONS(4726), 2, anon_sym_type, anon_sym_typeof, - [99379] = 4, + [98888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1827), 1, - sym_statement_block, - ACTIONS(4544), 3, + STATE(2174), 1, + aux_sym_object_type_repeat1, + ACTIONS(4829), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4827), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [99394] = 6, + [98904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, - anon_sym_LBRACE, - ACTIONS(4007), 1, - anon_sym_LBRACK, - ACTIONS(4887), 1, - sym_identifier, - STATE(3170), 1, - sym_object, - STATE(3171), 1, - sym_array, - [99413] = 6, + ACTIONS(4777), 1, + anon_sym_default, + ACTIONS(4781), 1, + anon_sym_case, + ACTIONS(4831), 1, + anon_sym_RBRACE, + STATE(2180), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [98922] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + ACTIONS(4833), 1, + anon_sym_QMARK, + STATE(2059), 1, sym_formal_parameters, - STATE(2106), 1, + STATE(2472), 1, sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [99432] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1948), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE, - ACTIONS(1727), 3, - anon_sym_else, - anon_sym_while, - anon_sym_LBRACK, - [99458] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2712), 1, - sym__initializer, - ACTIONS(4893), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3176), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [99486] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1960), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99497] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_AMP, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(1723), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [99512] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_AMP, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(1727), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [99527] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1846), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99538] = 2, + STATE(2990), 1, + sym_type_parameters, + [98944] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1834), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99549] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(4835), 1, + anon_sym_QMARK, + STATE(2059), 1, + sym_formal_parameters, + STATE(2151), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [98966] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1976), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99560] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + ACTIONS(4837), 1, + sym_identifier, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(3006), 1, + sym__call_signature, + [98988] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1017), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99571] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + ACTIONS(4839), 1, + anon_sym_QMARK, + STATE(2340), 1, + sym_formal_parameters, + STATE(2898), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [99010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1826), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + STATE(2221), 1, + aux_sym_object_type_repeat1, + ACTIONS(2783), 2, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2825), 1, - sym__initializer, - ACTIONS(4895), 3, + ACTIONS(4841), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [99597] = 6, + [99026] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2406), 1, + ACTIONS(4843), 1, + anon_sym_QMARK, + STATE(2059), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2957), 1, + STATE(2697), 1, sym__call_signature, - [99616] = 6, + STATE(2990), 1, + sym_type_parameters, + [99048] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2406), 1, + ACTIONS(4845), 1, + anon_sym_QMARK, + STATE(2059), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3034), 1, + STATE(2154), 1, sym__call_signature, - [99635] = 4, + STATE(2990), 1, + sym_type_parameters, + [99070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1844), 1, - sym_statement_block, - ACTIONS(4542), 3, - sym__automatic_semicolon, + ACTIONS(2435), 1, + anon_sym_COLON, + ACTIONS(4618), 1, + anon_sym_EQ, + STATE(2543), 1, + sym_type_annotation, + STATE(3069), 1, + sym__initializer, + ACTIONS(4847), 2, anon_sym_COMMA, - anon_sym_SEMI, - [99650] = 4, + anon_sym_RPAREN, + [99090] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_AMP, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(1737), 3, - anon_sym_COMMA, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + ACTIONS(4849), 1, + anon_sym_QMARK, + STATE(2059), 1, + sym_formal_parameters, + STATE(2157), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [99112] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4851), 1, + anon_sym_BQUOTE, + ACTIONS(4704), 2, + sym__template_chars, + sym_escape_sequence, + STATE(2220), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [99130] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 1, + anon_sym_LPAREN, + ACTIONS(4216), 1, + anon_sym_LT, + ACTIONS(4853), 1, + sym_identifier, + ACTIONS(4855), 1, anon_sym_LBRACK, - anon_sym_GT, - [99665] = 2, + STATE(1127), 1, + sym_arguments, + STATE(2914), 1, + sym_type_arguments, + [99152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(955), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + STATE(2251), 1, + aux_sym_object_type_repeat1, + ACTIONS(2785), 2, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [99676] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2004), 5, + ACTIONS(4857), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99687] = 4, + [99168] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2750), 1, - sym__initializer, - ACTIONS(4897), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99702] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + sym_identifier, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(2977), 1, + sym__call_signature, + [99190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 5, + STATE(2221), 1, + aux_sym_object_type_repeat1, + ACTIONS(2785), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4857), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99713] = 6, + [99206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_AMP, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(4899), 1, - anon_sym_COMMA, - ACTIONS(4901), 1, - anon_sym_GT, - STATE(2810), 1, - aux_sym_implements_clause_repeat1, - [99732] = 4, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + sym_identifier, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(3031), 1, + sym__call_signature, + [99228] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2744), 1, - sym__initializer, - ACTIONS(4903), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [99747] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, + sym_identifier, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(3023), 1, + sym__call_signature, + [99250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3233), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3235), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [99263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 5, + ACTIONS(2850), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [99758] = 4, + [99274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2742), 1, - sym__initializer, - ACTIONS(4905), 3, + ACTIONS(4865), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [99773] = 6, + anon_sym_PIPE_RBRACE, + [99285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4867), 1, anon_sym_AMP, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_PIPE, - ACTIONS(4907), 1, - anon_sym_COMMA, - ACTIONS(4909), 1, - anon_sym_GT, - STATE(2798), 1, - aux_sym_implements_clause_repeat1, - [99792] = 6, + ACTIONS(1728), 3, + anon_sym_else, + anon_sym_while, + anon_sym_LBRACK, + [99300] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2949), 1, + STATE(2155), 1, sym__call_signature, - [99811] = 6, + STATE(2990), 1, + sym_type_parameters, + [99319] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2566), 1, + STATE(2891), 1, sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [99830] = 6, + [99338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4911), 1, - sym_identifier, - ACTIONS(4913), 1, - anon_sym_GT, - ACTIONS(4915), 1, - sym_jsx_identifier, - STATE(1948), 1, - sym_nested_identifier, - STATE(2050), 1, - sym_jsx_namespace_name, - [99849] = 2, + ACTIONS(4867), 1, + anon_sym_AMP, + ACTIONS(4869), 1, + anon_sym_PIPE, + ACTIONS(1736), 3, + anon_sym_else, + anon_sym_while, + anon_sym_LBRACK, + [99353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2564), 5, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [99860] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2526), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [99372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(989), 5, - sym__automatic_semicolon, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4871), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99871] = 3, + ACTIONS(4873), 1, + anon_sym_RBRACK, + STATE(2671), 1, + aux_sym_implements_clause_repeat1, + [99391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4917), 2, + ACTIONS(3105), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(4919), 3, + ACTIONS(3107), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [99884] = 6, + [99404] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4867), 1, + anon_sym_AMP, + ACTIONS(4869), 1, + anon_sym_PIPE, + ACTIONS(1746), 3, + anon_sym_else, + anon_sym_while, + anon_sym_LBRACK, + [99419] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3039), 1, + STATE(2619), 1, sym__call_signature, - [99903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4564), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99914] = 2, + STATE(2990), 1, + sym_type_parameters, + [99438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4921), 5, - sym__automatic_semicolon, + ACTIONS(983), 1, + anon_sym_DOT, + ACTIONS(1409), 1, + anon_sym_LBRACE, + ACTIONS(1407), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99925] = 2, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [99453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(911), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [99936] = 4, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(2964), 1, + sym__call_signature, + [99472] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4867), 1, anon_sym_AMP, - ACTIONS(4879), 1, + ACTIONS(4869), 1, anon_sym_PIPE, - ACTIONS(1733), 3, - anon_sym_COMMA, + ACTIONS(1724), 3, + anon_sym_else, + anon_sym_while, anon_sym_LBRACK, - anon_sym_GT, - [99951] = 3, + [99487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 2, - anon_sym_SLASH, + ACTIONS(4875), 1, sym_identifier, - ACTIONS(3172), 3, - anon_sym_LBRACE, - anon_sym_GT, + ACTIONS(4877), 1, + anon_sym_SLASH, + ACTIONS(4879), 1, sym_jsx_identifier, - [99964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4093), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [99975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4923), 1, - anon_sym_COLON, - ACTIONS(4416), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(2916), 2, - sym_type_annotation, - sym_asserts, - [99990] = 2, + STATE(1947), 1, + sym_nested_identifier, + STATE(2043), 1, + sym_jsx_namespace_name, + [99506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100001] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2164), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [99525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2024), 5, + ACTIONS(4881), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100012] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4927), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100023] = 2, + [99536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100034] = 6, + ACTIONS(4867), 1, + anon_sym_AMP, + ACTIONS(4869), 1, + anon_sym_PIPE, + ACTIONS(1711), 3, + anon_sym_else, + anon_sym_while, + anon_sym_LBRACK, + [99551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4338), 1, + ACTIONS(4885), 1, anon_sym_PIPE, - ACTIONS(4931), 1, + ACTIONS(1736), 3, anon_sym_COMMA, - ACTIONS(4933), 1, - anon_sym_RBRACK, - STATE(2772), 1, - aux_sym_implements_clause_repeat1, - [100053] = 2, + anon_sym_LBRACK, + anon_sym_GT, + [99566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2032), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100064] = 6, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2691), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [99585] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2950), 1, + STATE(2478), 1, sym__call_signature, - [100083] = 6, + STATE(2990), 1, + sym_type_parameters, + [99604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_AMP, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(4935), 1, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2688), 1, + sym__initializer, + ACTIONS(4887), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4937), 1, - anon_sym_GT, - STATE(2764), 1, - aux_sym_implements_clause_repeat1, - [100102] = 4, + anon_sym_SEMI, + [99619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(4939), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [100117] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2842), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [99638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 5, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2687), 1, + sym__initializer, + ACTIONS(4889), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100128] = 2, + [99653] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(4449), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(3007), 2, + sym_type_annotation, + sym_asserts, + [99668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 5, + ACTIONS(1778), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100139] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2836), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100150] = 2, + [99679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 5, + ACTIONS(4630), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100161] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2598), 1, - anon_sym_LBRACE, - ACTIONS(4562), 1, - anon_sym_extends, - STATE(2458), 1, - sym_object_type, - STATE(2646), 1, - sym_extends_clause, - [100180] = 2, + [99690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(907), 5, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [100191] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2153), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [99709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4941), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100202] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2851), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [99728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 5, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [100213] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2882), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [99747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100224] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2883), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [99766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4945), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100235] = 2, + ACTIONS(4720), 1, + sym_identifier, + ACTIONS(4893), 1, + anon_sym_RBRACE, + STATE(2954), 1, + sym__import_export_specifier, + ACTIONS(4726), 2, + anon_sym_type, + anon_sym_typeof, + [99783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 5, + ACTIONS(4570), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [100246] = 2, + anon_sym_PIPE_RBRACE, + [99794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 5, + ACTIONS(1614), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [100257] = 2, + [99805] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2150), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [99824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 5, + ACTIONS(1874), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100268] = 4, + [99835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 1, - anon_sym_LT, - STATE(430), 1, - sym_type_arguments, - ACTIONS(3401), 3, - anon_sym_LBRACE, + ACTIONS(3653), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_implements, - [100283] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [99846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_AMP, + ACTIONS(4875), 1, + sym_identifier, ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(4949), 1, - anon_sym_COMMA, - ACTIONS(4951), 1, - anon_sym_GT, - STATE(2643), 1, - aux_sym_implements_clause_repeat1, - [100302] = 4, + sym_jsx_identifier, + ACTIONS(4895), 1, + anon_sym_SLASH, + STATE(1947), 1, + sym_nested_identifier, + STATE(2043), 1, + sym_jsx_namespace_name, + [99865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2716), 1, - sym__initializer, - ACTIONS(4953), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [100317] = 2, + ACTIONS(4897), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4899), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [99878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100328] = 4, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2895), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [99897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE, - ACTIONS(1723), 3, - anon_sym_else, - anon_sym_while, - anon_sym_LBRACK, - [100343] = 6, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2318), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [99916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(4875), 1, sym_identifier, - ACTIONS(4957), 1, - anon_sym_SLASH, - ACTIONS(4959), 1, + ACTIONS(4879), 1, sym_jsx_identifier, - STATE(1936), 1, + ACTIONS(4901), 1, + anon_sym_SLASH, + STATE(1947), 1, sym_nested_identifier, - STATE(2067), 1, + STATE(2043), 1, sym_jsx_namespace_name, - [100362] = 2, + [99935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2048), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100373] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(3028), 1, + sym__call_signature, + [99954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(959), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100384] = 6, + ACTIONS(4875), 1, + sym_identifier, + ACTIONS(4879), 1, + sym_jsx_identifier, + ACTIONS(4903), 1, + anon_sym_SLASH, + STATE(1947), 1, + sym_nested_identifier, + STATE(2043), 1, + sym_jsx_namespace_name, + [99973] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2636), 1, + STATE(2863), 1, sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [100403] = 6, + [99992] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4720), 1, + sym_identifier, + ACTIONS(4905), 1, + anon_sym_RBRACE, + STATE(2998), 1, + sym__import_export_specifier, + ACTIONS(4726), 2, + anon_sym_type, + anon_sym_typeof, + [100009] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2852), 1, + STATE(2864), 1, sym__call_signature, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - [100422] = 2, + [100028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 5, - sym__automatic_semicolon, + ACTIONS(3651), 5, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - [100433] = 2, + anon_sym_QMARK, + [100039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2825), 5, + ACTIONS(2832), 5, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, - [100444] = 2, + [100050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4961), 5, + ACTIONS(4624), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100455] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2568), 1, - anon_sym_LBRACE, - ACTIONS(4562), 1, - anon_sym_extends, - STATE(608), 1, - sym_object_type, - STATE(2673), 1, - sym_extends_clause, - [100474] = 2, + [100061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 5, - anon_sym_EQ, + ACTIONS(4907), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100485] = 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [100072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3164), 3, + ACTIONS(4909), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [100498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2564), 1, - anon_sym_EQ, - ACTIONS(3523), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [100511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 5, + STATE(1833), 1, + sym_statement_block, + ACTIONS(4630), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [100522] = 2, + [100087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1621), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100533] = 6, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2559), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [100106] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4959), 1, - sym_jsx_identifier, - ACTIONS(4963), 1, - anon_sym_SLASH, - STATE(1936), 1, - sym_nested_identifier, - STATE(2067), 1, - sym_jsx_namespace_name, - [100552] = 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2913), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [100125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1894), 5, + ACTIONS(4632), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100563] = 2, + [100136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1822), 5, + ACTIONS(4911), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100574] = 5, + [100147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4913), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(4965), 1, - anon_sym_RBRACE, - STATE(3056), 1, - sym__import_export_specifier, - ACTIONS(4809), 2, - anon_sym_type, - anon_sym_typeof, - [100591] = 2, + ACTIONS(4915), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [100160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1882), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100602] = 4, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2489), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [100179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1847), 1, - sym_statement_block, - ACTIONS(4540), 3, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(2951), 1, + sym__call_signature, + [100198] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2879), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [100217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1902), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [100617] = 2, + anon_sym_PIPE_RBRACE, + [100228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1874), 5, + ACTIONS(4917), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100628] = 2, + [100239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3688), 5, + ACTIONS(4919), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [100639] = 2, + [100250] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2517), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [100269] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4871), 1, + anon_sym_COMMA, + ACTIONS(4921), 1, + anon_sym_RBRACK, + STATE(2660), 1, + aux_sym_implements_clause_repeat1, + [100288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 5, + ACTIONS(4909), 1, + anon_sym_LBRACE, + STATE(1834), 1, + sym_statement_block, + ACTIONS(4632), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100650] = 2, + [100303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 5, - anon_sym_EQ, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_PIPE, + ACTIONS(4923), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [100661] = 6, + ACTIONS(4925), 1, + anon_sym_GT, + STATE(2706), 1, + aux_sym_implements_clause_repeat1, + [100322] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2583), 1, + STATE(2705), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [100680] = 3, + [100341] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2836), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [100352] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2703), 1, + sym__initializer, + ACTIONS(4927), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [100367] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(841), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(4516), 1, + anon_sym_extends, + STATE(2353), 1, + sym_object_type, + STATE(2835), 1, + sym_extends_clause, + [100386] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4871), 1, + anon_sym_COMMA, + ACTIONS(4929), 1, + anon_sym_RBRACK, + STATE(2715), 1, + aux_sym_implements_clause_repeat1, + [100405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 2, + ACTIONS(4931), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(3148), 3, + ACTIONS(4933), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [100693] = 2, + [100418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4524), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100704] = 2, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(4935), 1, + anon_sym_export, + ACTIONS(4937), 1, + anon_sym_class, + STATE(1871), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + [100437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 5, + ACTIONS(1922), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100715] = 6, + [100448] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2368), 1, + STATE(2596), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [100734] = 6, + [100467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(4931), 1, - anon_sym_COMMA, - ACTIONS(4967), 1, - anon_sym_RBRACK, - STATE(2719), 1, - aux_sym_implements_clause_repeat1, - [100753] = 6, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(4455), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(2957), 2, + sym_type_annotation, + sym_asserts, + [100482] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(4931), 1, + ACTIONS(4871), 1, anon_sym_COMMA, - ACTIONS(4969), 1, - anon_sym_RBRACK, - STATE(2709), 1, + ACTIONS(4939), 1, + anon_sym_LBRACE, + STATE(2727), 1, aux_sym_implements_clause_repeat1, - [100772] = 2, + [100501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 5, - sym__automatic_semicolon, + ACTIONS(4941), 5, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - [100783] = 6, + anon_sym_QMARK, + [100512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2603), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [100531] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_PIPE, - ACTIONS(4971), 1, + ACTIONS(4943), 1, anon_sym_COMMA, - ACTIONS(4973), 1, + ACTIONS(4945), 1, anon_sym_GT, - STATE(2700), 1, + STATE(2828), 1, aux_sym_implements_clause_repeat1, - [100802] = 2, + [100550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 5, + ACTIONS(4536), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100813] = 2, + [100561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(4720), 1, + sym_identifier, + ACTIONS(4947), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100824] = 6, + STATE(2998), 1, + sym__import_export_specifier, + ACTIONS(4726), 2, + anon_sym_type, + anon_sym_typeof, + [100578] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4949), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [100589] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2589), 1, + STATE(2329), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [100843] = 4, + [100608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(4909), 1, anon_sym_LBRACE, - STATE(1841), 1, + STATE(1850), 1, sym_statement_block, - ACTIONS(4524), 3, + ACTIONS(4624), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [100858] = 6, + [100623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(4931), 1, + ACTIONS(4951), 5, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4975), 1, - anon_sym_RBRACK, - STATE(2735), 1, - aux_sym_implements_clause_repeat1, - [100877] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 5, - sym__automatic_semicolon, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_PIPE, + ACTIONS(1728), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100888] = 4, + anon_sym_LBRACK, + anon_sym_GT, + [100649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1830), 1, - sym_statement_block, - ACTIONS(4528), 3, - sym__automatic_semicolon, + ACTIONS(4121), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [100903] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1778), 5, + ACTIONS(1940), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100914] = 2, + [100671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 5, + ACTIONS(4953), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [100925] = 6, + [100682] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_PIPE, + ACTIONS(1724), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + [100697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100708] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4957), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100719] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4875), 1, + sym_identifier, + ACTIONS(4879), 1, + sym_jsx_identifier, + ACTIONS(4959), 1, + anon_sym_SLASH, + STATE(1947), 1, + sym_nested_identifier, + STATE(2043), 1, + sym_jsx_namespace_name, + [100738] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2376), 1, - sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [100944] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4532), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [100955] = 4, + STATE(2994), 1, + sym__call_signature, + [100757] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(4883), 1, + anon_sym_AMP, ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1842), 1, - sym_statement_block, - ACTIONS(4526), 3, - sym__automatic_semicolon, + anon_sym_PIPE, + ACTIONS(4961), 1, anon_sym_COMMA, - anon_sym_SEMI, - [100970] = 6, + ACTIONS(4963), 1, + anon_sym_GT, + STATE(2648), 1, + aux_sym_implements_clause_repeat1, + [100776] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2378), 1, + STATE(2899), 1, sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [100989] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4959), 1, - sym_jsx_identifier, - ACTIONS(4979), 1, - anon_sym_SLASH, - STATE(1936), 1, - sym_nested_identifier, - STATE(2067), 1, - sym_jsx_namespace_name, - [101008] = 2, + [100795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 5, + ACTIONS(1964), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101019] = 6, + [100806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(4720), 1, sym_identifier, - ACTIONS(4959), 1, + ACTIONS(4965), 1, + anon_sym_RBRACE, + STATE(2954), 1, + sym__import_export_specifier, + ACTIONS(4726), 2, + anon_sym_type, + anon_sym_typeof, + [100823] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4875), 1, + sym_identifier, + ACTIONS(4879), 1, sym_jsx_identifier, - ACTIONS(4983), 1, + ACTIONS(4967), 1, anon_sym_SLASH, - STATE(1936), 1, + STATE(1947), 1, sym_nested_identifier, - STATE(2067), 1, + STATE(2043), 1, sym_jsx_namespace_name, - [101038] = 2, + [100842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4985), 5, + ACTIONS(4775), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101049] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4987), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [101060] = 2, + [100853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4989), 5, + ACTIONS(4628), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101071] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3000), 1, - sym__call_signature, - [101090] = 3, + [100864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1015), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1013), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [101103] = 2, + ACTIONS(4969), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1906), 5, + ACTIONS(1814), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(4993), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [101127] = 2, + [100886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 5, + ACTIONS(4971), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101138] = 6, + [100897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(4995), 1, + ACTIONS(1035), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4997), 1, anon_sym_RBRACE, - STATE(2758), 1, - aux_sym_enum_body_repeat1, - STATE(2940), 1, - sym__initializer, - [101157] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4959), 1, - sym_jsx_identifier, - ACTIONS(4999), 1, - anon_sym_SLASH, - STATE(1936), 1, - sym_nested_identifier, - STATE(2067), 1, - sym_jsx_namespace_name, - [101176] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [100908] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2101), 1, + STATE(2906), 1, sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [101195] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4959), 1, - sym_jsx_identifier, - ACTIONS(5001), 1, - anon_sym_SLASH, - STATE(1936), 1, - sym_nested_identifier, - STATE(2067), 1, - sym_jsx_namespace_name, - [101214] = 2, + [100927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 5, + ACTIONS(2020), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101225] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2385), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [101244] = 2, + [100938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 5, + ACTIONS(2060), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101255] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4923), 1, - anon_sym_COLON, - ACTIONS(4388), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(2983), 2, - sym_type_annotation, - sym_asserts, - [101270] = 6, + [100949] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - STATE(3005), 1, + STATE(2940), 1, sym__call_signature, - [101289] = 4, + [100968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, + ACTIONS(4973), 5, anon_sym_EQ, - STATE(2780), 1, - sym__initializer, - ACTIONS(5003), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [101304] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [100979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4975), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + [100990] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3068), 1, + STATE(2591), 1, sym__call_signature, - [101323] = 6, + STATE(2990), 1, + sym_type_parameters, + [101009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(4977), 1, + sym_identifier, + ACTIONS(4979), 1, + anon_sym_GT, + ACTIONS(4981), 1, + sym_jsx_identifier, + STATE(1937), 1, + sym_nested_identifier, + STATE(2035), 1, + sym_jsx_namespace_name, + [101028] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(4983), 1, + anon_sym_export, + ACTIONS(4985), 1, + anon_sym_class, + STATE(1871), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + [101047] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4879), 1, + ACTIONS(4885), 1, anon_sym_PIPE, - ACTIONS(5005), 1, + ACTIONS(1711), 3, anon_sym_COMMA, - ACTIONS(5007), 1, + anon_sym_LBRACK, anon_sym_GT, - STATE(2665), 1, - aux_sym_implements_clause_repeat1, - [101342] = 6, + [101062] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2108), 1, - sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [101361] = 2, + STATE(2982), 1, + sym__call_signature, + [101081] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 5, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [101372] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2564), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [101383] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4959), 1, - sym_jsx_identifier, - ACTIONS(5011), 1, - anon_sym_SLASH, - STATE(1936), 1, - sym_nested_identifier, - STATE(2067), 1, - sym_jsx_namespace_name, - [101402] = 4, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(2984), 1, + sym__call_signature, + [101100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1848), 1, - sym_statement_block, - ACTIONS(4530), 3, + ACTIONS(4987), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [101417] = 6, + anon_sym_PIPE_RBRACE, + [101111] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(4931), 1, + ACTIONS(4989), 3, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5013), 1, anon_sym_RBRACK, - STATE(2652), 1, - aux_sym_implements_clause_repeat1, - [101436] = 4, + [101126] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(4336), 1, anon_sym_AMP, - ACTIONS(4891), 1, + ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(1711), 3, - anon_sym_else, - anon_sym_while, - anon_sym_LBRACK, - [101451] = 2, + ACTIONS(4871), 1, + anon_sym_COMMA, + ACTIONS(4991), 1, + anon_sym_RBRACK, + STATE(2832), 1, + aux_sym_implements_clause_repeat1, + [101145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2040), 5, + ACTIONS(2044), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101462] = 3, + [101156] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3152), 3, + ACTIONS(1622), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [101475] = 2, + ACTIONS(4003), 1, + anon_sym_LBRACK, + ACTIONS(4993), 1, + sym_identifier, + STATE(3233), 1, + sym_object, + STATE(3236), 1, + sym_array, + [101175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1021), 5, + ACTIONS(1870), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101486] = 3, + [101186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5015), 1, + ACTIONS(979), 5, sym__automatic_semicolon, - ACTIONS(1069), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101499] = 6, + [101197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2381), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [101518] = 6, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2759), 1, + sym__initializer, + ACTIONS(4995), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [101212] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(4875), 1, sym_identifier, - ACTIONS(4959), 1, + ACTIONS(4879), 1, sym_jsx_identifier, - ACTIONS(5017), 1, + ACTIONS(4997), 1, anon_sym_SLASH, - STATE(1936), 1, + STATE(1947), 1, sym_nested_identifier, - STATE(2067), 1, + STATE(2043), 1, sym_jsx_namespace_name, - [101537] = 2, + [101231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 5, + ACTIONS(2836), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - [101548] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [101242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1849), 1, - sym_statement_block, - ACTIONS(4532), 3, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2760), 1, + sym__initializer, + ACTIONS(4999), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [101563] = 6, + [101257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_AMP, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(5021), 1, - anon_sym_COMMA, - ACTIONS(5023), 1, + ACTIONS(3294), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3296), 3, + anon_sym_LBRACE, anon_sym_GT, - STATE(2675), 1, - aux_sym_implements_clause_repeat1, - [101582] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5025), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101593] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5027), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101604] = 6, + sym_jsx_identifier, + [101270] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - STATE(2967), 1, + STATE(2975), 1, sym__call_signature, - [101623] = 6, + [101289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2901), 1, - sym__call_signature, - [101642] = 6, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2568), 1, + anon_sym_LBRACE, + ACTIONS(4516), 1, + anon_sym_extends, + STATE(574), 1, + sym_object_type, + STATE(2724), 1, + sym_extends_clause, + [101308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2103), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [101661] = 2, + ACTIONS(2840), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [101319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 5, + ACTIONS(1810), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101672] = 2, + [101330] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4875), 1, + sym_identifier, + ACTIONS(4879), 1, + sym_jsx_identifier, + ACTIONS(5001), 1, + anon_sym_SLASH, + STATE(1947), 1, + sym_nested_identifier, + STATE(2043), 1, + sym_jsx_namespace_name, + [101349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 5, + ACTIONS(1790), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101683] = 3, + [101360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 2, + ACTIONS(5003), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(921), 3, + ACTIONS(5005), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [101696] = 5, + [101373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, - sym_identifier, - ACTIONS(5029), 1, - anon_sym_RBRACE, - STATE(2987), 1, - sym__import_export_specifier, - ACTIONS(4809), 2, - anon_sym_type, - anon_sym_typeof, - [101713] = 2, + ACTIONS(2844), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [101384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 5, + ACTIONS(5007), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101724] = 2, + [101395] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 5, - sym__automatic_semicolon, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2611), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [101414] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 1, + anon_sym_EQ, + ACTIONS(5009), 1, anon_sym_COMMA, + ACTIONS(5011), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101735] = 4, + STATE(2836), 1, + aux_sym_enum_body_repeat1, + STATE(2875), 1, + sym__initializer, + [101433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1835), 1, - sym_statement_block, - ACTIONS(4564), 3, - sym__automatic_semicolon, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5013), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [101750] = 2, + anon_sym_GT, + [101448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5033), 5, - sym__automatic_semicolon, + ACTIONS(899), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101761] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [101459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 5, - sym__automatic_semicolon, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_PIPE, + ACTIONS(1746), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101772] = 6, + anon_sym_LBRACK, + anon_sym_GT, + [101474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(5015), 5, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2941), 1, - sym__call_signature, - [101791] = 2, + anon_sym_implements, + anon_sym_extends, + [101485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101802] = 2, + ACTIONS(4875), 1, + sym_identifier, + ACTIONS(4879), 1, + sym_jsx_identifier, + ACTIONS(5017), 1, + anon_sym_SLASH, + STATE(1947), 1, + sym_nested_identifier, + STATE(2043), 1, + sym_jsx_namespace_name, + [101504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(4985), 1, + anon_sym_class, + ACTIONS(5019), 1, + anon_sym_export, + STATE(1871), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + [101523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 5, + ACTIONS(2850), 5, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101813] = 4, + anon_sym_COLON, + [101534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE, - ACTIONS(1733), 3, - anon_sym_else, - anon_sym_while, - anon_sym_LBRACK, - [101828] = 2, + ACTIONS(2494), 1, + anon_sym_EQ, + ACTIONS(3478), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [101547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(907), 5, + ACTIONS(2494), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [101839] = 6, + [101558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2405), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [101858] = 4, + ACTIONS(5021), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, + ACTIONS(4457), 1, + anon_sym_LT, + STATE(429), 1, + sym_type_arguments, + ACTIONS(3411), 3, anon_sym_LBRACE, - STATE(1860), 1, - sym_statement_block, - ACTIONS(4538), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [101873] = 2, + anon_sym_implements, + [101584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 5, + ACTIONS(1932), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101884] = 2, + [101595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 5, + ACTIONS(2840), 5, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_QMARK, - [101895] = 3, + [101606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5039), 1, + ACTIONS(4606), 5, sym__automatic_semicolon, - ACTIONS(969), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [101908] = 3, + [101617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5041), 1, + ACTIONS(2844), 5, sym__automatic_semicolon, - ACTIONS(925), 4, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101921] = 2, + anon_sym_COLON, + [101628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 5, + ACTIONS(899), 5, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [101932] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2781), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [101951] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2625), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [101970] = 6, + anon_sym_COLON, + [101639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3048), 1, - sym__call_signature, - [101989] = 4, + ACTIONS(951), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 1, - anon_sym_DOT, - ACTIONS(1409), 1, - anon_sym_LBRACE, - ACTIONS(1407), 3, + ACTIONS(4608), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [102004] = 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3271), 3, + ACTIONS(4909), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [102017] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2060), 5, + STATE(1831), 1, + sym_statement_block, + ACTIONS(4614), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102028] = 2, + [101676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1774), 5, + ACTIONS(941), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102039] = 4, + [101687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2783), 1, - sym__initializer, - ACTIONS(5043), 3, + ACTIONS(987), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [102054] = 3, + anon_sym_PIPE_RBRACE, + [101698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5045), 1, + ACTIONS(5023), 1, sym__automatic_semicolon, - ACTIONS(1003), 4, + ACTIONS(1059), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102067] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2928), 1, - sym__call_signature, - [102086] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2361), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [102105] = 6, + [101711] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2607), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [102124] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2935), 1, - sym__call_signature, - [102143] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2872), 1, + STATE(2419), 1, sym__call_signature, - STATE(2899), 1, + STATE(2990), 1, sym_type_parameters, - [102162] = 6, + [101730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3040), 1, - sym__call_signature, - [102181] = 6, + ACTIONS(4610), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101741] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(4875), 1, sym_identifier, - ACTIONS(4959), 1, + ACTIONS(4879), 1, sym_jsx_identifier, - ACTIONS(5047), 1, + ACTIONS(5025), 1, anon_sym_SLASH, - STATE(1936), 1, + STATE(1947), 1, sym_nested_identifier, - STATE(2067), 1, + STATE(2043), 1, sym_jsx_namespace_name, - [102200] = 6, + [101760] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4909), 1, + anon_sym_LBRACE, + STATE(1847), 1, + sym_statement_block, + ACTIONS(4570), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [101775] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2110), 1, + STATE(2474), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [102219] = 6, + [101794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2651), 1, + sym__initializer, + ACTIONS(5027), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [101809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2036), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4909), 1, + anon_sym_LBRACE, + STATE(1827), 1, + sym_statement_block, + ACTIONS(4606), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [101835] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - STATE(3062), 1, + STATE(2961), 1, sym__call_signature, - [102238] = 4, + [101854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE, - ACTIONS(1737), 3, - anon_sym_else, - anon_sym_while, - anon_sym_LBRACK, - [102253] = 6, + ACTIONS(1858), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101865] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - STATE(3015), 1, + STATE(3037), 1, sym__call_signature, - [102272] = 6, + [101884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5049), 1, - anon_sym_export, - ACTIONS(5051), 1, - anon_sym_class, - STATE(1876), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - [102291] = 2, + ACTIONS(5029), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2852), 5, - anon_sym_EQ, + ACTIONS(3119), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3121), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [101908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4909), 1, + anon_sym_LBRACE, + STATE(1836), 1, + sym_statement_block, + ACTIONS(4612), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [102302] = 6, + anon_sym_SEMI, + [101923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, - anon_sym_EQ, - ACTIONS(5053), 1, + ACTIONS(921), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5055), 1, anon_sym_RBRACE, - STATE(2747), 1, - aux_sym_enum_body_repeat1, - STATE(2940), 1, - sym__initializer, - [102321] = 4, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2785), 1, - sym__initializer, - ACTIONS(5057), 3, + ACTIONS(1984), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1910), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [102336] = 6, + anon_sym_PIPE_RBRACE, + [101956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(4875), 1, sym_identifier, - ACTIONS(4959), 1, + ACTIONS(4879), 1, sym_jsx_identifier, - ACTIONS(5059), 1, + ACTIONS(5031), 1, anon_sym_SLASH, - STATE(1936), 1, + STATE(1947), 1, sym_nested_identifier, - STATE(2067), 1, + STATE(2043), 1, sym_jsx_namespace_name, - [102355] = 3, + [101975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5061), 2, - anon_sym_SLASH, + ACTIONS(1948), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [101986] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4875), 1, sym_identifier, - ACTIONS(5063), 3, - anon_sym_LBRACE, - anon_sym_GT, + ACTIONS(4879), 1, sym_jsx_identifier, - [102368] = 4, + ACTIONS(5033), 1, + anon_sym_SLASH, + STATE(1947), 1, + sym_nested_identifier, + STATE(2043), 1, + sym_jsx_namespace_name, + [102005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1853), 1, - sym_statement_block, - ACTIONS(4534), 3, + ACTIONS(1806), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [102383] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2425), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [102402] = 4, + anon_sym_PIPE_RBRACE, + [102016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1854), 1, - sym_statement_block, - ACTIONS(4536), 3, + ACTIONS(1802), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [102417] = 2, + anon_sym_PIPE_RBRACE, + [102027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 5, + ACTIONS(1782), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102428] = 3, + [102038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(3263), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [102441] = 6, + ACTIONS(2854), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [102049] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2765), 1, + sym__initializer, + ACTIONS(5035), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102064] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2481), 1, + STATE(2160), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [102460] = 2, + [102083] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 5, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2676), 1, + sym__initializer, + ACTIONS(5037), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102471] = 2, + [102098] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 5, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_PIPE, + ACTIONS(5039), 1, + anon_sym_COMMA, + ACTIONS(5041), 1, + anon_sym_GT, + STATE(2770), 1, + aux_sym_implements_clause_repeat1, + [102117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, sym__automatic_semicolon, + ACTIONS(911), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102482] = 2, + [102130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 5, + ACTIONS(5045), 1, sym__automatic_semicolon, + ACTIONS(1049), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102493] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5051), 1, - anon_sym_class, - ACTIONS(5065), 1, - anon_sym_export, - STATE(1876), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - [102512] = 2, + [102143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4544), 5, + ACTIONS(4612), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102523] = 6, + [102154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(2832), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [102165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3058), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(4959), 1, + ACTIONS(3060), 3, + anon_sym_LBRACE, + anon_sym_GT, sym_jsx_identifier, - ACTIONS(5067), 1, - anon_sym_SLASH, - STATE(1936), 1, - sym_nested_identifier, - STATE(2067), 1, - sym_jsx_namespace_name, - [102542] = 6, + [102178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2494), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [102189] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2598), 1, + STATE(2429), 1, sym__call_signature, - STATE(2909), 1, + STATE(2990), 1, sym_type_parameters, - [102561] = 2, + [102208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3161), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3163), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [102221] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4871), 1, + anon_sym_COMMA, + ACTIONS(5047), 1, + anon_sym_RBRACK, + STATE(2778), 1, + aux_sym_implements_clause_repeat1, + [102240] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_PIPE, + ACTIONS(5049), 1, + anon_sym_COMMA, + ACTIONS(5051), 1, + anon_sym_GT, + STATE(2721), 1, + aux_sym_implements_clause_repeat1, + [102259] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 1, + anon_sym_EQ, + ACTIONS(5053), 1, + anon_sym_COMMA, + ACTIONS(5055), 1, + anon_sym_RBRACE, + STATE(2653), 1, + aux_sym_enum_body_repeat1, + STATE(2875), 1, + sym__initializer, + [102278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 5, + ACTIONS(5057), 1, sym__automatic_semicolon, + ACTIONS(969), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102572] = 6, + [102291] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2889), 1, - sym__call_signature, - STATE(2899), 1, + STATE(2923), 1, sym_type_parameters, - [102591] = 6, + STATE(2966), 1, + sym__call_signature, + [102310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4959), 1, - sym_jsx_identifier, - ACTIONS(5069), 1, - anon_sym_SLASH, - STATE(1936), 1, - sym_nested_identifier, - STATE(2067), 1, - sym_jsx_namespace_name, - [102610] = 6, + ACTIONS(4614), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102321] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(2336), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2024), 1, + STATE(2340), 1, sym_formal_parameters, - STATE(2452), 1, - sym__call_signature, - STATE(2909), 1, + STATE(2923), 1, sym_type_parameters, - [102629] = 6, + STATE(2992), 1, + sym__call_signature, + [102340] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2707), 1, + sym__initializer, + ACTIONS(5059), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102355] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4909), 1, + anon_sym_LBRACE, + STATE(1846), 1, + sym_statement_block, + ACTIONS(4608), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102370] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3013), 1, + STATE(2435), 1, sym__call_signature, - [102648] = 2, + STATE(2990), 1, + sym_type_parameters, + [102389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 5, + ACTIONS(4909), 1, + anon_sym_LBRACE, + STATE(1844), 1, + sym_statement_block, + ACTIONS(4610), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [102659] = 6, + [102404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(4931), 1, - anon_sym_COMMA, - ACTIONS(5071), 1, + ACTIONS(5061), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(5063), 3, anon_sym_LBRACE, - STATE(2688), 1, - aux_sym_implements_clause_repeat1, - [102678] = 4, + anon_sym_GT, + sym_jsx_identifier, + [102417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(5073), 3, + ACTIONS(2854), 5, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [102693] = 6, + anon_sym_SEMI, + anon_sym_COLON, + [102428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2912), 1, - sym__call_signature, - [102712] = 2, + ACTIONS(5065), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1814), 5, + ACTIONS(4626), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102723] = 5, + [102450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, - sym_identifier, - ACTIONS(5075), 1, + ACTIONS(1011), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3056), 1, - sym__import_export_specifier, - ACTIONS(4809), 2, - anon_sym_type, - anon_sym_typeof, - [102740] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(3049), 1, - sym__call_signature, - [102759] = 6, + ACTIONS(1972), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2793), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [102778] = 6, + ACTIONS(997), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2406), 1, - sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2955), 1, - sym__call_signature, - [102797] = 6, + ACTIONS(931), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2024), 1, - sym_formal_parameters, - STATE(2562), 1, - sym__call_signature, - STATE(2909), 1, - sym_type_parameters, - [102816] = 5, + ACTIONS(1039), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3399), 1, - anon_sym_LBRACE, - ACTIONS(4861), 1, - anon_sym_LT, - STATE(2760), 1, - sym_type_arguments, - ACTIONS(3401), 2, + ACTIONS(2048), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [102833] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2795), 1, - sym__initializer, - ACTIONS(5077), 3, + ACTIONS(5067), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1988), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [102848] = 6, + anon_sym_PIPE_RBRACE, + [102538] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(2406), 1, + STATE(2059), 1, sym_formal_parameters, - STATE(2899), 1, - sym_type_parameters, - STATE(2917), 1, + STATE(2469), 1, sym__call_signature, - [102867] = 4, + STATE(2990), 1, + sym_type_parameters, + [102557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4235), 1, - anon_sym_EQ, - STATE(2802), 1, - sym__initializer, - ACTIONS(5079), 3, + ACTIONS(1774), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102568] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4909), 1, + anon_sym_LBRACE, + STATE(1828), 1, + sym_statement_block, + ACTIONS(4626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [102882] = 2, + [102583] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 5, + ACTIONS(1890), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102893] = 2, + [102594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 5, - anon_sym_EQ, + ACTIONS(1882), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [102904] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 5, + ACTIONS(1914), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102915] = 2, + [102616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 5, + ACTIONS(1976), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102926] = 2, + [102627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 5, + ACTIONS(1894), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [102937] = 6, + [102638] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1866), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(4875), 1, sym_identifier, - ACTIONS(4959), 1, + ACTIONS(4879), 1, sym_jsx_identifier, - ACTIONS(5083), 1, + ACTIONS(5069), 1, anon_sym_SLASH, - STATE(1936), 1, + STATE(1947), 1, sym_nested_identifier, - STATE(2067), 1, + STATE(2043), 1, sym_jsx_namespace_name, - [102956] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5085), 1, - anon_sym_DQUOTE, - ACTIONS(5087), 1, - aux_sym_string_token1, - ACTIONS(5089), 1, - sym_escape_sequence, - STATE(2555), 1, - aux_sym_string_repeat1, - [102972] = 4, + [102668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, - anon_sym_COLON, - ACTIONS(5091), 1, - anon_sym_EQ_GT, - STATE(2983), 2, - sym_type_annotation, - sym_asserts, - [102986] = 3, + ACTIONS(1818), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_EQ_GT, - ACTIONS(2716), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [102998] = 3, + ACTIONS(1830), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - anon_sym_EQ_GT, - ACTIONS(2716), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [103010] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5096), 1, - anon_sym_DQUOTE, - ACTIONS(5098), 1, - aux_sym_string_token1, - ACTIONS(5100), 1, - sym_escape_sequence, - STATE(2546), 1, - aux_sym_string_repeat1, - [103026] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5096), 1, - anon_sym_SQUOTE, - ACTIONS(5102), 1, - aux_sym_string_token2, - ACTIONS(5104), 1, - sym_escape_sequence, - STATE(2547), 1, - aux_sym_string_repeat2, - [103042] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5087), 1, - aux_sym_string_token1, - ACTIONS(5089), 1, - sym_escape_sequence, - ACTIONS(5106), 1, - anon_sym_DQUOTE, - STATE(2555), 1, - aux_sym_string_repeat1, - [103058] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5106), 1, - anon_sym_SQUOTE, - ACTIONS(5108), 1, - aux_sym_string_token2, - ACTIONS(5110), 1, - sym_escape_sequence, - STATE(2574), 1, - aux_sym_string_repeat2, - [103074] = 4, + ACTIONS(4616), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(2106), 1, - anon_sym_LPAREN, - STATE(1116), 2, - sym_template_string, - sym_arguments, - [103088] = 4, + ACTIONS(1786), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [102712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, + ACTIONS(4235), 1, anon_sym_EQ, - STATE(2940), 1, + STATE(2682), 1, sym__initializer, - ACTIONS(5112), 2, + ACTIONS(5071), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [103102] = 5, + anon_sym_SEMI, + [102727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5114), 1, - anon_sym_class, - STATE(1876), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - [103118] = 4, + ACTIONS(4909), 1, + anon_sym_LBRACE, + STATE(1851), 1, + sym_statement_block, + ACTIONS(4628), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 1, + ACTIONS(5073), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(5075), 3, anon_sym_LBRACE, - ACTIONS(4380), 1, - anon_sym_STAR, - STATE(3176), 2, - sym_namespace_import, - sym_named_imports, - [103132] = 4, + anon_sym_GT, + sym_jsx_identifier, + [102755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3109), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(3111), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [102768] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(3409), 1, + anon_sym_LBRACE, + ACTIONS(4656), 1, + anon_sym_LT, + STATE(2783), 1, + sym_type_arguments, + ACTIONS(3411), 2, anon_sym_COMMA, - STATE(2572), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5118), 2, + anon_sym_LBRACE_PIPE, + [102785] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2059), 1, + sym_formal_parameters, + STATE(2424), 1, + sym__call_signature, + STATE(2990), 1, + sym_type_parameters, + [102804] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2028), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [103146] = 4, + anon_sym_PIPE_RBRACE, + [102815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, - anon_sym_COMMA, - STATE(2572), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5120), 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2854), 1, + sym__call_signature, + STATE(2923), 1, + sym_type_parameters, + [102834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2016), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [103160] = 4, + anon_sym_PIPE_RBRACE, + [102845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4883), 1, anon_sym_AMP, - ACTIONS(4338), 1, + ACTIONS(4885), 1, anon_sym_PIPE, - ACTIONS(4487), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [103174] = 5, + ACTIONS(5077), 1, + anon_sym_COMMA, + ACTIONS(5079), 1, + anon_sym_GT, + STATE(2804), 1, + aux_sym_implements_clause_repeat1, + [102864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5122), 1, - sym_identifier, - STATE(443), 1, - sym_generic_type, - STATE(1932), 1, - sym_nested_type_identifier, - STATE(3193), 1, - sym_nested_identifier, - [103190] = 4, + ACTIONS(4235), 1, + anon_sym_EQ, + STATE(2701), 1, + sym__initializer, + ACTIONS(5081), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [102879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_COMMA, - STATE(2604), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3068), 2, + ACTIONS(5083), 5, + anon_sym_EQ, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_implements, - [103204] = 4, + anon_sym_extends, + [102890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, - anon_sym_COMMA, - STATE(2572), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5124), 2, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2340), 1, + sym_formal_parameters, + STATE(2923), 1, + sym_type_parameters, + STATE(3041), 1, + sym__call_signature, + [102909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4909), 1, + anon_sym_LBRACE, + STATE(1829), 1, + sym_statement_block, + ACTIONS(4616), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [103218] = 4, + [102924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5085), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(5087), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [102937] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_PIPE, + ACTIONS(5089), 1, anon_sym_COMMA, - STATE(2529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5126), 2, + ACTIONS(5091), 1, + anon_sym_GT, + STATE(2817), 1, + aux_sym_implements_clause_repeat1, + [102956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2940), 1, + anon_sym_LBRACE, + STATE(1355), 1, + sym_statement_block, + ACTIONS(5093), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103232] = 5, + [102970] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5095), 1, + anon_sym_DQUOTE, + ACTIONS(5097), 1, + sym_escape_sequence, + ACTIONS(5099), 1, + aux_sym_tsx_string_token1, + STATE(2536), 1, + aux_sym_tsx_string_repeat1, + [102986] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2849), 1, + STATE(3035), 1, sym_type_parameters, - STATE(3172), 1, + STATE(3220), 1, sym_formal_parameters, - [103248] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5108), 1, - aux_sym_string_token2, - ACTIONS(5110), 1, - sym_escape_sequence, - ACTIONS(5128), 1, - anon_sym_SQUOTE, - STATE(2574), 1, - aux_sym_string_repeat2, - [103264] = 5, - ACTIONS(4404), 1, + [103002] = 5, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5087), 1, - aux_sym_string_token1, - ACTIONS(5089), 1, - sym_escape_sequence, - ACTIONS(5128), 1, - anon_sym_DQUOTE, - STATE(2555), 1, - aux_sym_string_repeat1, - [103280] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5130), 1, + ACTIONS(5101), 1, anon_sym_SQUOTE, - ACTIONS(5132), 1, + ACTIONS(5103), 1, aux_sym_string_token2, - ACTIONS(5134), 1, + ACTIONS(5105), 1, sym_escape_sequence, - STATE(2537), 1, + STATE(2553), 1, aux_sym_string_repeat2, - [103296] = 5, - ACTIONS(4404), 1, + [103018] = 5, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5130), 1, + ACTIONS(5101), 1, anon_sym_DQUOTE, - ACTIONS(5136), 1, + ACTIONS(5107), 1, aux_sym_string_token1, - ACTIONS(5138), 1, + ACTIONS(5109), 1, sym_escape_sequence, - STATE(2538), 1, + STATE(2552), 1, aux_sym_string_repeat1, - [103312] = 4, + [103034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, - anon_sym_COLON, - ACTIONS(5140), 1, - anon_sym_EQ_GT, - STATE(2983), 2, - sym_type_annotation, - sym_asserts, - [103326] = 4, + ACTIONS(2284), 1, + anon_sym_COMMA, + STATE(2539), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5111), 2, + anon_sym_LBRACE, + anon_sym_implements, + [103048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, - anon_sym_from, - STATE(2853), 1, - sym__from_clause, - ACTIONS(5145), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [103340] = 4, + ACTIONS(4208), 1, + anon_sym_EQ, + STATE(3062), 1, + sym_default_type, + ACTIONS(5113), 2, + anon_sym_COMMA, + anon_sym_GT, + [103062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(2284), 1, anon_sym_COMMA, - STATE(2572), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5147), 2, + STATE(2539), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5115), 2, + anon_sym_LBRACE, + anon_sym_implements, + [103076] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_PIPE, + ACTIONS(4989), 2, + anon_sym_COMMA, + anon_sym_GT, + [103090] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(907), 1, + anon_sym_LBRACE, + STATE(82), 1, + sym_statement_block, + ACTIONS(5093), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103354] = 5, + [103104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3409), 1, + anon_sym_LBRACE, + ACTIONS(3411), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5117), 1, + anon_sym_COMMA, + STATE(2527), 1, + aux_sym_extends_clause_repeat1, + [103120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2919), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [103130] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2937), 1, + STATE(2868), 1, sym_type_parameters, - STATE(3271), 1, + STATE(3174), 1, sym_formal_parameters, - [103370] = 5, + [103146] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5120), 1, + sym_identifier, + STATE(1482), 1, + sym_nested_type_identifier, + STATE(1566), 1, + sym_generic_type, + STATE(3111), 1, + sym_nested_identifier, + [103162] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(2336), 1, anon_sym_LPAREN, - STATE(3012), 1, - sym_type_parameters, - STATE(3108), 1, + STATE(2123), 1, sym_formal_parameters, - [103386] = 5, - ACTIONS(4404), 1, + STATE(2846), 1, + sym_type_parameters, + [103178] = 5, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5087), 1, - aux_sym_string_token1, - ACTIONS(5089), 1, + ACTIONS(5122), 1, + anon_sym_SQUOTE, + ACTIONS(5124), 1, + aux_sym_string_token2, + ACTIONS(5126), 1, sym_escape_sequence, - ACTIONS(5149), 1, + STATE(2595), 1, + aux_sym_string_repeat2, + [103194] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5122), 1, anon_sym_DQUOTE, - STATE(2555), 1, + ACTIONS(5128), 1, + aux_sym_string_token1, + ACTIONS(5130), 1, + sym_escape_sequence, + STATE(2549), 1, aux_sym_string_repeat1, - [103402] = 5, - ACTIONS(4404), 1, + [103210] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - aux_sym_string_token2, - ACTIONS(5110), 1, + ACTIONS(5132), 4, + sym__template_chars, sym_escape_sequence, - ACTIONS(5149), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [103220] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5134), 1, anon_sym_SQUOTE, - STATE(2574), 1, - aux_sym_string_repeat2, - [103418] = 5, + ACTIONS(5136), 1, + sym_escape_sequence, + ACTIONS(5139), 1, + aux_sym_tsx_string_token2, + STATE(2535), 1, + aux_sym_tsx_string_repeat2, + [103236] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5142), 1, + anon_sym_DQUOTE, + ACTIONS(5144), 1, + sym_escape_sequence, + ACTIONS(5147), 1, + aux_sym_tsx_string_token1, + STATE(2536), 1, + aux_sym_tsx_string_repeat1, + [103252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 1, - sym_identifier, - STATE(1485), 1, - sym_nested_type_identifier, - STATE(1574), 1, - sym_generic_type, - STATE(3109), 1, - sym_nested_identifier, - [103434] = 5, - ACTIONS(4404), 1, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(5150), 1, + anon_sym_EQ_GT, + STATE(3007), 2, + sym_type_annotation, + sym_asserts, + [103266] = 5, + ACTIONS(4415), 1, sym_comment, ACTIONS(5153), 1, anon_sym_SQUOTE, @@ -151113,347 +151217,415 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_token2, ACTIONS(5157), 1, sym_escape_sequence, - STATE(2524), 1, + STATE(2532), 1, aux_sym_string_repeat2, - [103450] = 5, - ACTIONS(4404), 1, + [103282] = 4, + ACTIONS(3), 1, sym_comment, ACTIONS(5159), 1, + anon_sym_COMMA, + STATE(2539), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(3411), 2, + anon_sym_LBRACE, + anon_sym_implements, + [103296] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5153), 1, anon_sym_DQUOTE, - ACTIONS(5161), 1, + ACTIONS(5162), 1, aux_sym_string_token1, - ACTIONS(5163), 1, + ACTIONS(5164), 1, sym_escape_sequence, - STATE(2595), 1, + STATE(2533), 1, aux_sym_string_repeat1, - [103466] = 5, - ACTIONS(4404), 1, + [103312] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5159), 1, - anon_sym_SQUOTE, - ACTIONS(5165), 1, - aux_sym_string_token2, - ACTIONS(5167), 1, - sym_escape_sequence, - STATE(2594), 1, - aux_sym_string_repeat2, - [103482] = 5, - ACTIONS(4404), 1, + ACTIONS(5166), 1, + sym_identifier, + ACTIONS(5168), 1, + sym_jsx_identifier, + STATE(3016), 1, + sym_nested_identifier, + STATE(3144), 1, + sym_jsx_namespace_name, + [103328] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5085), 1, - anon_sym_SQUOTE, - ACTIONS(5108), 1, - aux_sym_string_token2, - ACTIONS(5110), 1, - sym_escape_sequence, - STATE(2574), 1, - aux_sym_string_repeat2, - [103498] = 5, - ACTIONS(4404), 1, + ACTIONS(2261), 1, + anon_sym_COMMA, + ACTIONS(3197), 1, + anon_sym_LBRACE, + ACTIONS(3229), 1, + anon_sym_LBRACE_PIPE, + STATE(2623), 1, + aux_sym_extends_clause_repeat1, + [103344] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 1, - anon_sym_DQUOTE, - ACTIONS(5169), 1, + ACTIONS(4618), 1, + anon_sym_EQ, + STATE(2930), 1, + sym__initializer, + ACTIONS(5170), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [103358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5172), 1, + anon_sym_class, + STATE(1871), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + [103374] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 1, + anon_sym_from, + STATE(2943), 1, + sym__from_clause, + ACTIONS(5176), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [103388] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2700), 1, + anon_sym_LBRACE, + ACTIONS(4386), 1, + anon_sym_STAR, + STATE(3095), 2, + sym_namespace_import, + sym_named_imports, + [103402] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5128), 1, aux_sym_string_token1, - ACTIONS(5171), 1, + ACTIONS(5130), 1, sym_escape_sequence, - STATE(2523), 1, + ACTIONS(5178), 1, + anon_sym_DQUOTE, + STATE(2549), 1, aux_sym_string_repeat1, - [103514] = 4, + [103418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(719), 1, - anon_sym_BQUOTE, - ACTIONS(2122), 1, - anon_sym_LPAREN, - STATE(1671), 2, - sym_template_string, - sym_arguments, - [103528] = 5, - ACTIONS(4404), 1, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(5180), 1, + anon_sym_EQ_GT, + STATE(2957), 2, + sym_type_annotation, + sym_asserts, + [103432] = 5, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5173), 1, + ACTIONS(5183), 1, anon_sym_DQUOTE, - ACTIONS(5175), 1, + ACTIONS(5185), 1, aux_sym_string_token1, - ACTIONS(5178), 1, + ACTIONS(5188), 1, sym_escape_sequence, - STATE(2555), 1, + STATE(2549), 1, aux_sym_string_repeat1, - [103544] = 5, + [103448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5181), 1, - sym_identifier, - ACTIONS(5183), 1, - sym_jsx_identifier, - STATE(3063), 1, - sym_nested_identifier, - STATE(3075), 1, - sym_jsx_namespace_name, - [103560] = 5, - ACTIONS(4404), 1, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(5191), 1, + anon_sym_EQ_GT, + STATE(3007), 2, + sym_type_annotation, + sym_asserts, + [103462] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5185), 1, - anon_sym_SQUOTE, - ACTIONS(5187), 1, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(4475), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [103476] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5128), 1, + aux_sym_string_token1, + ACTIONS(5130), 1, + sym_escape_sequence, + ACTIONS(5194), 1, + anon_sym_DQUOTE, + STATE(2549), 1, + aux_sym_string_repeat1, + [103492] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5124), 1, aux_sym_string_token2, - ACTIONS(5189), 1, + ACTIONS(5126), 1, sym_escape_sequence, - STATE(2552), 1, + ACTIONS(5194), 1, + anon_sym_SQUOTE, + STATE(2595), 1, aux_sym_string_repeat2, - [103576] = 5, - ACTIONS(4404), 1, + [103508] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5185), 1, - anon_sym_DQUOTE, - ACTIONS(5191), 1, - aux_sym_string_token1, - ACTIONS(5193), 1, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5196), 1, + anon_sym_class, + STATE(1871), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + [103524] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5198), 1, + sym_identifier, + STATE(452), 1, + sym_generic_type, + STATE(490), 1, + sym_nested_type_identifier, + STATE(3289), 1, + sym_nested_identifier, + [103540] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5124), 1, + aux_sym_string_token2, + ACTIONS(5126), 1, sym_escape_sequence, - STATE(2517), 1, - aux_sym_string_repeat1, - [103592] = 5, + ACTIONS(5178), 1, + anon_sym_SQUOTE, + STATE(2595), 1, + aux_sym_string_repeat2, + [103556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5195), 1, + ACTIONS(5200), 1, sym_identifier, - ACTIONS(5197), 1, + ACTIONS(5202), 1, sym_jsx_identifier, - STATE(2988), 1, + STATE(2979), 1, sym_nested_identifier, - STATE(3142), 1, + STATE(3166), 1, sym_jsx_namespace_name, - [103608] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2400), 1, - anon_sym_COLON, - STATE(2982), 1, - sym_type_annotation, - ACTIONS(5199), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [103622] = 5, + [103572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5201), 1, - sym_identifier, - STATE(1381), 1, - sym_nested_type_identifier, - STATE(1544), 1, - sym_generic_type, - STATE(3239), 1, - sym_nested_identifier, - [103638] = 4, + ACTIONS(4376), 1, + anon_sym_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE, + ACTIONS(5204), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [103586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4463), 1, anon_sym_LBRACE, - STATE(514), 1, + STATE(2456), 1, sym_statement_block, - ACTIONS(5203), 2, + ACTIONS(5208), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103652] = 4, + [103600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, - anon_sym_COLON, - ACTIONS(5205), 1, - anon_sym_EQ_GT, - STATE(2916), 2, - sym_type_annotation, - sym_asserts, - [103666] = 4, + ACTIONS(761), 1, + anon_sym_BQUOTE, + ACTIONS(2122), 1, + anon_sym_LPAREN, + STATE(1568), 2, + sym_template_string, + sym_arguments, + [103614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, + ACTIONS(4376), 1, anon_sym_AMP, - ACTIONS(5210), 1, + ACTIONS(5206), 1, anon_sym_PIPE, - ACTIONS(5208), 2, + ACTIONS(5210), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103680] = 4, + [103628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, - sym_identifier, - STATE(2987), 1, - sym__import_export_specifier, - ACTIONS(4809), 2, - anon_sym_type, - anon_sym_typeof, - [103694] = 4, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5212), 1, + anon_sym_class, + STATE(1871), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + [103644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, - anon_sym_LBRACE, - STATE(1367), 1, - sym_statement_block, - ACTIONS(5203), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [103708] = 4, + ACTIONS(4618), 1, + anon_sym_EQ, + STATE(2875), 1, + sym__initializer, + ACTIONS(5214), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [103658] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5124), 1, + aux_sym_string_token2, + ACTIONS(5126), 1, + sym_escape_sequence, + ACTIONS(5216), 1, + anon_sym_SQUOTE, + STATE(2595), 1, + aux_sym_string_repeat2, + [103674] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5128), 1, + aux_sym_string_token1, + ACTIONS(5130), 1, + sym_escape_sequence, + ACTIONS(5216), 1, + anon_sym_DQUOTE, + STATE(2549), 1, + aux_sym_string_repeat1, + [103690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4803), 1, + ACTIONS(4720), 1, sym_identifier, - STATE(3056), 1, + STATE(2998), 1, sym__import_export_specifier, - ACTIONS(4809), 2, + ACTIONS(4726), 2, anon_sym_type, anon_sym_typeof, - [103722] = 5, + [103704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(893), 1, - anon_sym_while, - ACTIONS(1731), 1, - anon_sym_LBRACE, - ACTIONS(4225), 1, - anon_sym_DOT, - STATE(566), 1, - sym_statement_block, - [103738] = 5, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(5218), 1, + anon_sym_EQ_GT, + STATE(3007), 2, + sym_type_annotation, + sym_asserts, + [103718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5212), 1, + ACTIONS(5221), 1, sym_identifier, - STATE(443), 1, - sym_generic_type, - STATE(494), 1, + STATE(1955), 1, sym_nested_type_identifier, - STATE(3193), 1, + STATE(1990), 1, + sym_generic_type, + STATE(3090), 1, sym_nested_identifier, - [103754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5143), 1, - anon_sym_from, - STATE(2972), 1, - sym__from_clause, - ACTIONS(5214), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [103768] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5216), 1, - anon_sym_class, - STATE(1876), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - [103784] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5218), 1, - anon_sym_COMMA, - STATE(2572), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5221), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [103798] = 4, + [103734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, + ACTIONS(4891), 1, anon_sym_COLON, ACTIONS(5223), 1, anon_sym_EQ_GT, - STATE(2916), 2, + STATE(2957), 2, sym_type_annotation, sym_asserts, - [103812] = 5, - ACTIONS(4404), 1, + [103748] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(4891), 1, + anon_sym_COLON, ACTIONS(5226), 1, - anon_sym_SQUOTE, - ACTIONS(5228), 1, - aux_sym_string_token2, - ACTIONS(5231), 1, - sym_escape_sequence, - STATE(2574), 1, - aux_sym_string_repeat2, - [103828] = 5, + anon_sym_EQ_GT, + STATE(2957), 2, + sym_type_annotation, + sym_asserts, + [103762] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5229), 1, sym_identifier, - STATE(1954), 1, - sym_nested_type_identifier, - STATE(1996), 1, - sym_generic_type, - STATE(3086), 1, + ACTIONS(5231), 1, + sym_jsx_identifier, + STATE(2935), 1, sym_nested_identifier, - [103844] = 5, - ACTIONS(4404), 1, + STATE(3116), 1, + sym_jsx_namespace_name, + [103778] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - aux_sym_string_token2, - ACTIONS(5110), 1, - sym_escape_sequence, - ACTIONS(5236), 1, - anon_sym_SQUOTE, - STATE(2574), 1, - aux_sym_string_repeat2, - [103860] = 4, + ACTIONS(5233), 1, + anon_sym_EQ_GT, + ACTIONS(2716), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [103790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, + ACTIONS(4883), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_PIPE, + ACTIONS(5235), 2, anon_sym_COMMA, - STATE(2577), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(3401), 2, - anon_sym_LBRACE, - anon_sym_implements, - [103874] = 5, - ACTIONS(4404), 1, + anon_sym_GT, + [103804] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5087), 1, - aux_sym_string_token1, - ACTIONS(5089), 1, - sym_escape_sequence, - ACTIONS(5236), 1, - anon_sym_DQUOTE, - STATE(2555), 1, - aux_sym_string_repeat1, - [103890] = 4, + ACTIONS(4067), 1, + anon_sym_EQ_GT, + ACTIONS(2716), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [103816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, + ACTIONS(5237), 1, + anon_sym_COMMA, + STATE(2575), 1, + aux_sym_array_repeat1, + ACTIONS(3445), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [103830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4891), 1, anon_sym_COLON, - ACTIONS(5241), 1, + ACTIONS(5240), 1, anon_sym_EQ_GT, - STATE(2983), 2, + STATE(3007), 2, sym_type_annotation, sym_asserts, - [103904] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2110), 1, - anon_sym_LPAREN, - STATE(1551), 2, - sym_template_string, - sym_arguments, - [103918] = 4, + [103844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(2973), 1, - sym__initializer, - ACTIONS(5244), 2, + ACTIONS(5243), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [103932] = 5, - ACTIONS(4404), 1, + STATE(2577), 1, + aux_sym_implements_clause_repeat1, + ACTIONS(4989), 2, + anon_sym_LBRACE, + anon_sym_RBRACK, + [103858] = 5, + ACTIONS(4415), 1, sym_comment, ACTIONS(5246), 1, anon_sym_SQUOTE, @@ -151461,5388 +151633,5459 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_token2, ACTIONS(5250), 1, sym_escape_sequence, - STATE(2576), 1, + STATE(2564), 1, aux_sym_string_repeat2, - [103948] = 4, + [103874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(897), 1, - anon_sym_LBRACE, - STATE(105), 1, - sym_statement_block, - ACTIONS(5203), 2, + ACTIONS(5252), 1, + anon_sym_COMMA, + STATE(2632), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5254), 2, sym__automatic_semicolon, anon_sym_SEMI, - [103962] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5246), 1, - anon_sym_DQUOTE, - ACTIONS(5252), 1, - aux_sym_string_token1, - ACTIONS(5254), 1, - sym_escape_sequence, - STATE(2578), 1, - aux_sym_string_repeat1, - [103978] = 4, + [103888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 1, - anon_sym_EQ, - STATE(2992), 1, - sym__initializer, - ACTIONS(5256), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [103992] = 4, + ACTIONS(4867), 1, + anon_sym_AMP, + ACTIONS(4869), 1, + anon_sym_PIPE, + ACTIONS(1732), 2, + anon_sym_else, + anon_sym_while, + [103902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 1, - anon_sym_COMMA, - STATE(2586), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(4939), 2, - anon_sym_LBRACE, - anon_sym_RBRACK, - [104006] = 5, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3054), 1, + sym_type_parameters, + STATE(3200), 1, + sym_formal_parameters, + [103918] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(5261), 1, + ACTIONS(5256), 1, anon_sym_class, - STATE(1876), 1, + STATE(1871), 1, aux_sym_export_statement_repeat1, STATE(1901), 1, sym_decorator, - [104022] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4923), 1, - anon_sym_COLON, - ACTIONS(5263), 1, - anon_sym_EQ_GT, - STATE(2983), 2, - sym_type_annotation, - sym_asserts, - [104036] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4504), 1, - anon_sym_LBRACE, - STATE(2421), 1, - sym_statement_block, - ACTIONS(5266), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [104050] = 4, + [103934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_AMP, + ACTIONS(4875), 1, + sym_identifier, ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(5268), 2, - anon_sym_COMMA, - anon_sym_GT, - [104064] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 1, - anon_sym_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE, - ACTIONS(5270), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [104078] = 4, + sym_jsx_identifier, + STATE(1947), 1, + sym_nested_identifier, + STATE(2043), 1, + sym_jsx_namespace_name, + [103950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(5252), 1, anon_sym_COMMA, - STATE(2534), 1, + STATE(2632), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(5272), 2, + ACTIONS(5258), 2, sym__automatic_semicolon, anon_sym_SEMI, - [104092] = 4, + [103964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE, - ACTIONS(5274), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [104106] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5108), 1, - aux_sym_string_token2, - ACTIONS(5110), 1, - sym_escape_sequence, - ACTIONS(5276), 1, - anon_sym_SQUOTE, - STATE(2574), 1, - aux_sym_string_repeat2, - [104122] = 5, - ACTIONS(4404), 1, + ACTIONS(5260), 1, + sym_identifier, + STATE(452), 1, + sym_generic_type, + STATE(1934), 1, + sym_nested_type_identifier, + STATE(3289), 1, + sym_nested_identifier, + [103980] = 5, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5087), 1, + ACTIONS(5262), 1, + anon_sym_DQUOTE, + ACTIONS(5264), 1, aux_sym_string_token1, - ACTIONS(5089), 1, + ACTIONS(5266), 1, sym_escape_sequence, - ACTIONS(5276), 1, - anon_sym_DQUOTE, - STATE(2555), 1, + STATE(2640), 1, aux_sym_string_repeat1, - [104138] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 1, - anon_sym_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE, - ACTIONS(1741), 2, - anon_sym_else, - anon_sym_while, - [104152] = 5, + [103996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2138), 1, - sym_formal_parameters, - STATE(2962), 1, - sym_type_parameters, - [104168] = 4, + ACTIONS(91), 1, + anon_sym_AT, + ACTIONS(5268), 1, + anon_sym_class, + STATE(1871), 1, + aux_sym_export_statement_repeat1, + STATE(1901), 1, + sym_decorator, + [104012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, - anon_sym_LBRACE, - STATE(2450), 1, - sym_statement_block, - ACTIONS(5278), 2, + ACTIONS(5174), 1, + anon_sym_from, + STATE(2956), 1, + sym__from_clause, + ACTIONS(5270), 2, sym__automatic_semicolon, anon_sym_SEMI, - [104182] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [104192] = 5, + [104026] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(91), 1, anon_sym_AT, - ACTIONS(5280), 1, + ACTIONS(5272), 1, anon_sym_export, - STATE(1876), 1, + STATE(1871), 1, aux_sym_export_statement_repeat1, STATE(1901), 1, sym_decorator, - [104208] = 5, + [104042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5282), 1, - anon_sym_class, - STATE(1876), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - [104224] = 4, + ACTIONS(4376), 1, + anon_sym_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE, + ACTIONS(5274), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_COMMA, - STATE(2577), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5284), 2, + ACTIONS(4463), 1, anon_sym_LBRACE, - anon_sym_implements, - [104238] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5116), 1, - anon_sym_COMMA, - STATE(2543), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5286), 2, + STATE(2427), 1, + sym_statement_block, + ACTIONS(5276), 2, sym__automatic_semicolon, anon_sym_SEMI, - [104252] = 4, + [104070] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 1, + ACTIONS(2435), 1, + anon_sym_COLON, + STATE(3040), 1, + sym_type_annotation, + ACTIONS(5278), 2, anon_sym_COMMA, - STATE(2577), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5288), 2, - anon_sym_LBRACE, - anon_sym_implements, - [104266] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + [104084] = 5, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5290), 1, - sym_identifier, - STATE(443), 1, - sym_generic_type, - STATE(2143), 1, - sym_nested_type_identifier, - STATE(3193), 1, - sym_nested_identifier, - [104282] = 5, + ACTIONS(5262), 1, + anon_sym_SQUOTE, + ACTIONS(5280), 1, + aux_sym_string_token2, + ACTIONS(5282), 1, + sym_escape_sequence, + STATE(2636), 1, + aux_sym_string_repeat2, + [104100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, - anon_sym_COMMA, + ACTIONS(4891), 1, + anon_sym_COLON, ACTIONS(5284), 1, - anon_sym_LBRACE_PIPE, + anon_sym_EQ_GT, + STATE(2957), 2, + sym_type_annotation, + sym_asserts, + [104114] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5287), 1, + anon_sym_SQUOTE, + ACTIONS(5289), 1, + aux_sym_string_token2, ACTIONS(5292), 1, - anon_sym_LBRACE, - STATE(2626), 1, - aux_sym_extends_clause_repeat1, - [104298] = 4, + sym_escape_sequence, + STATE(2595), 1, + aux_sym_string_repeat2, + [104130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(897), 1, + ACTIONS(4463), 1, anon_sym_LBRACE, - STATE(91), 1, + STATE(514), 1, sym_statement_block, - ACTIONS(5294), 2, + ACTIONS(5295), 2, sym__automatic_semicolon, anon_sym_SEMI, - [104312] = 5, + [104144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, + ACTIONS(2284), 1, anon_sym_COMMA, - ACTIONS(5288), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(5296), 1, - anon_sym_LBRACE, - STATE(2626), 1, + STATE(2524), 1, aux_sym_extends_clause_repeat1, - [104328] = 5, + ACTIONS(3229), 2, + anon_sym_LBRACE, + anon_sym_implements, + [104158] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5297), 1, + anon_sym_DQUOTE, + ACTIONS(5299), 1, + aux_sym_string_token1, + ACTIONS(5301), 1, + sym_escape_sequence, + STATE(2547), 1, + aux_sym_string_repeat1, + [104174] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5297), 1, + anon_sym_SQUOTE, + ACTIONS(5303), 1, + aux_sym_string_token2, + ACTIONS(5305), 1, + sym_escape_sequence, + STATE(2556), 1, + aux_sym_string_repeat2, + [104190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 1, + ACTIONS(4720), 1, sym_identifier, - STATE(987), 1, - sym_nested_type_identifier, - STATE(1166), 1, - sym_generic_type, - STATE(3087), 1, - sym_nested_identifier, - [104344] = 2, + STATE(2954), 1, + sym__import_export_specifier, + ACTIONS(4726), 2, + anon_sym_type, + anon_sym_typeof, + [104204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [104354] = 5, + ACTIONS(5252), 1, + anon_sym_COMMA, + STATE(2579), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5307), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104218] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(5309), 1, + anon_sym_EQ_GT, + STATE(2957), 2, + sym_type_annotation, + sym_asserts, + [104232] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 1, + anon_sym_LBRACE, + STATE(515), 1, + sym_statement_block, + ACTIONS(5093), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104246] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(3065), 1, + STATE(2939), 1, sym_type_parameters, - STATE(3166), 1, + STATE(3288), 1, sym_formal_parameters, - [104370] = 5, + [104262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, + ACTIONS(5312), 1, sym_identifier, - ACTIONS(5304), 1, - sym_jsx_identifier, - STATE(3003), 1, + STATE(452), 1, + sym_generic_type, + STATE(2105), 1, + sym_nested_type_identifier, + STATE(3289), 1, sym_nested_identifier, - STATE(3126), 1, - sym_jsx_namespace_name, - [104386] = 5, + [104278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(5306), 1, - anon_sym_class, - STATE(1876), 1, - aux_sym_export_statement_repeat1, - STATE(1901), 1, - sym_decorator, - [104402] = 4, + ACTIONS(4376), 1, + anon_sym_AMP, + ACTIONS(5206), 1, + anon_sym_PIPE, + ACTIONS(5314), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104292] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5246), 1, + anon_sym_DQUOTE, + ACTIONS(5316), 1, + aux_sym_string_token1, + ACTIONS(5318), 1, + sym_escape_sequence, + STATE(2565), 1, + aux_sym_string_repeat1, + [104308] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5095), 1, + anon_sym_SQUOTE, + ACTIONS(5320), 1, + sym_escape_sequence, + ACTIONS(5322), 1, + aux_sym_tsx_string_token2, + STATE(2535), 1, + aux_sym_tsx_string_repeat2, + [104324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(5252), 1, anon_sym_COMMA, - STATE(2530), 1, + STATE(2630), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(5308), 2, + ACTIONS(5324), 2, sym__automatic_semicolon, anon_sym_SEMI, - [104416] = 4, + [104338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, - anon_sym_COLON, - ACTIONS(5310), 1, - anon_sym_EQ_GT, - STATE(2983), 2, - sym_type_annotation, - sym_asserts, - [104430] = 5, + ACTIONS(5252), 1, + anon_sym_COMMA, + STATE(2628), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5326), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, - anon_sym_COMMA, - ACTIONS(3036), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - ACTIONS(3068), 1, - anon_sym_LBRACE_PIPE, - STATE(2608), 1, - aux_sym_extends_clause_repeat1, - [104446] = 4, + STATE(1331), 1, + sym_statement_block, + ACTIONS(5295), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104366] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5328), 1, + anon_sym_DQUOTE, + ACTIONS(5330), 1, + sym_escape_sequence, + ACTIONS(5332), 1, + aux_sym_tsx_string_token1, + STATE(2518), 1, + aux_sym_tsx_string_repeat1, + [104382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + sym_identifier, + STATE(1015), 1, + sym_nested_type_identifier, + STATE(1042), 1, + sym_generic_type, + STATE(3089), 1, + sym_nested_identifier, + [104398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + sym_identifier, + ACTIONS(5338), 1, + sym_jsx_identifier, + STATE(2873), 1, + sym_nested_identifier, + STATE(3305), 1, + sym_jsx_namespace_name, + [104414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 1, + sym_identifier, + STATE(1324), 1, + sym_nested_type_identifier, + STATE(1553), 1, + sym_generic_type, + STATE(3270), 1, + sym_nested_identifier, + [104430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, + ACTIONS(4891), 1, anon_sym_COLON, - ACTIONS(5313), 1, + ACTIONS(5342), 1, anon_sym_EQ_GT, - STATE(2983), 2, + STATE(3007), 2, sym_type_annotation, sym_asserts, - [104460] = 4, + [104444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, - anon_sym_COLON, - ACTIONS(5316), 1, - anon_sym_EQ_GT, - STATE(2916), 2, - sym_type_annotation, - sym_asserts, + ACTIONS(5252), 1, + anon_sym_COMMA, + STATE(2584), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5345), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104458] = 5, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5328), 1, + anon_sym_SQUOTE, + ACTIONS(5347), 1, + sym_escape_sequence, + ACTIONS(5349), 1, + aux_sym_tsx_string_token2, + STATE(2608), 1, + aux_sym_tsx_string_repeat2, [104474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE, - ACTIONS(5319), 2, + ACTIONS(907), 1, + anon_sym_LBRACE, + STATE(103), 1, + sym_statement_block, + ACTIONS(5295), 2, sym__automatic_semicolon, anon_sym_SEMI, [104488] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5108), 1, - aux_sym_string_token2, - ACTIONS(5110), 1, - sym_escape_sequence, - ACTIONS(5321), 1, - anon_sym_SQUOTE, - STATE(2574), 1, - aux_sym_string_repeat2, - [104504] = 5, - ACTIONS(4404), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5087), 1, + ACTIONS(5128), 1, aux_sym_string_token1, - ACTIONS(5089), 1, + ACTIONS(5130), 1, sym_escape_sequence, - ACTIONS(5321), 1, + ACTIONS(5351), 1, anon_sym_DQUOTE, - STATE(2555), 1, + STATE(2549), 1, aux_sym_string_repeat1, - [104520] = 4, + [104504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, + ACTIONS(4891), 1, anon_sym_COLON, - ACTIONS(5323), 1, + ACTIONS(5353), 1, anon_sym_EQ_GT, - STATE(2916), 2, + STATE(2957), 2, sym_type_annotation, sym_asserts, - [104534] = 4, + [104518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, - anon_sym_AMP, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(4939), 2, - anon_sym_COMMA, - anon_sym_GT, - [104548] = 4, + ACTIONS(903), 1, + anon_sym_while, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(4225), 1, + anon_sym_DOT, + STATE(597), 1, + sym_statement_block, + [104534] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5326), 1, + ACTIONS(2261), 1, anon_sym_COMMA, - STATE(2624), 1, - aux_sym_array_repeat1, - ACTIONS(3387), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [104562] = 4, + ACTIONS(5115), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5356), 1, + anon_sym_LBRACE, + STATE(2527), 1, + aux_sym_extends_clause_repeat1, + [104550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, - anon_sym_LBRACE, - STATE(1360), 1, - sym_statement_block, - ACTIONS(5294), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [104576] = 5, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(5358), 1, + anon_sym_EQ_GT, + STATE(3007), 2, + sym_type_annotation, + sym_asserts, + [104564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3399), 1, - anon_sym_LBRACE, - ACTIONS(3401), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(5329), 1, - anon_sym_COMMA, - STATE(2626), 1, - aux_sym_extends_clause_repeat1, - [104592] = 5, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2112), 1, + anon_sym_LPAREN, + STATE(1471), 2, + sym_template_string, + sym_arguments, + [104578] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(3019), 1, + STATE(3043), 1, sym_type_parameters, - STATE(3192), 1, + STATE(3178), 1, sym_formal_parameters, - [104608] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4955), 1, - sym_identifier, - ACTIONS(4959), 1, - sym_jsx_identifier, - STATE(1936), 1, - sym_nested_identifier, - STATE(2067), 1, - sym_jsx_namespace_name, - [104624] = 5, + [104594] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(3024), 1, + STATE(3045), 1, sym_type_parameters, - STATE(3242), 1, + STATE(3106), 1, sym_formal_parameters, - [104640] = 5, + [104610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, + ACTIONS(5252), 1, + anon_sym_COMMA, + STATE(2632), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5361), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4618), 1, + anon_sym_EQ, + STATE(3066), 1, + sym__initializer, + ACTIONS(5363), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [104638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5252), 1, + anon_sym_COMMA, + STATE(2632), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5365), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5367), 1, sym_identifier, - ACTIONS(5334), 1, + ACTIONS(5369), 1, sym_jsx_identifier, - STATE(2945), 1, + STATE(2856), 1, sym_nested_identifier, - STATE(3203), 1, + STATE(3310), 1, sym_jsx_namespace_name, - [104656] = 5, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5336), 1, - anon_sym_SQUOTE, - ACTIONS(5338), 1, - aux_sym_string_token2, - ACTIONS(5340), 1, - sym_escape_sequence, - STATE(2620), 1, - aux_sym_string_repeat2, - [104672] = 4, + [104668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, - anon_sym_COLON, - ACTIONS(5342), 1, - anon_sym_EQ_GT, - STATE(2916), 2, - sym_type_annotation, - sym_asserts, - [104686] = 5, - ACTIONS(4404), 1, + ACTIONS(5371), 1, + anon_sym_COMMA, + STATE(2632), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5374), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [104682] = 5, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5336), 1, + ACTIONS(5376), 1, anon_sym_DQUOTE, - ACTIONS(5345), 1, + ACTIONS(5378), 1, aux_sym_string_token1, - ACTIONS(5347), 1, + ACTIONS(5380), 1, sym_escape_sequence, - STATE(2621), 1, + STATE(2620), 1, aux_sym_string_repeat1, - [104702] = 5, + [104698] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1670), 1, anon_sym_LT, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(3031), 1, + STATE(3067), 1, sym_type_parameters, - STATE(3181), 1, + STATE(3204), 1, sym_formal_parameters, - [104718] = 5, - ACTIONS(3), 1, + [104714] = 5, + ACTIONS(4415), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3042), 1, - sym_type_parameters, - STATE(3099), 1, - sym_formal_parameters, - [104734] = 4, - ACTIONS(3), 1, + ACTIONS(5376), 1, + anon_sym_SQUOTE, + ACTIONS(5382), 1, + aux_sym_string_token2, + ACTIONS(5384), 1, + sym_escape_sequence, + STATE(2639), 1, + aux_sym_string_repeat2, + [104730] = 5, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4504), 1, - anon_sym_LBRACE, - STATE(530), 1, - sym_statement_block, - ACTIONS(5294), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [104748] = 4, + ACTIONS(5124), 1, + aux_sym_string_token2, + ACTIONS(5126), 1, + sym_escape_sequence, + ACTIONS(5386), 1, + anon_sym_SQUOTE, + STATE(2595), 1, + aux_sym_string_repeat2, + [104746] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, - anon_sym_COLON, - ACTIONS(5349), 1, - anon_sym_EQ_GT, - STATE(2916), 2, - sym_type_annotation, - sym_asserts, + ACTIONS(2261), 1, + anon_sym_COMMA, + ACTIONS(5111), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5388), 1, + anon_sym_LBRACE, + STATE(2527), 1, + aux_sym_extends_clause_repeat1, [104762] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4208), 1, - anon_sym_EQ, - STATE(3006), 1, - sym_default_type, - ACTIONS(5352), 2, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(505), 1, + anon_sym_BQUOTE, + ACTIONS(2106), 1, + anon_sym_LPAREN, + STATE(1112), 2, + sym_template_string, + sym_arguments, [104776] = 5, - ACTIONS(3), 1, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5354), 1, - sym_identifier, - ACTIONS(5356), 1, - sym_jsx_identifier, - STATE(3026), 1, - sym_nested_identifier, - STATE(3111), 1, - sym_jsx_namespace_name, - [104792] = 2, - ACTIONS(4404), 1, + ACTIONS(5124), 1, + aux_sym_string_token2, + ACTIONS(5126), 1, + sym_escape_sequence, + ACTIONS(5351), 1, + anon_sym_SQUOTE, + STATE(2595), 1, + aux_sym_string_repeat2, + [104792] = 5, + ACTIONS(4415), 1, sym_comment, - ACTIONS(3170), 3, - anon_sym_LBRACE, + ACTIONS(5128), 1, + aux_sym_string_token1, + ACTIONS(5130), 1, + sym_escape_sequence, + ACTIONS(5386), 1, + anon_sym_DQUOTE, + STATE(2549), 1, + aux_sym_string_repeat1, + [104808] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, anon_sym_LT, - sym_jsx_text, - [104801] = 4, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3046), 1, + sym_type_parameters, + STATE(3109), 1, + sym_formal_parameters, + [104824] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(533), 1, + anon_sym_COMMA, + ACTIONS(3361), 1, + anon_sym_RPAREN, + STATE(2575), 1, + aux_sym_array_repeat1, + [104837] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5358), 1, + ACTIONS(5390), 1, anon_sym_RBRACE, - STATE(2826), 1, + STATE(2830), 1, aux_sym_object_repeat1, - [104814] = 4, + [104850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_while, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - [104827] = 4, + ACTIONS(5392), 1, + anon_sym_RBRACK, + [104863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, - anon_sym_GT, - ACTIONS(5360), 1, + ACTIONS(3411), 3, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(2664), 1, - aux_sym_implements_clause_repeat1, - [104840] = 4, + anon_sym_implements, + [104872] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(5362), 1, + ACTIONS(5394), 1, anon_sym_RPAREN, - STATE(2624), 1, + STATE(2575), 1, aux_sym_array_repeat1, - [104853] = 4, + [104885] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1744), 1, + anon_sym_LBRACE, + ACTIONS(5396), 1, + anon_sym_LPAREN, + STATE(517), 1, + sym_statement_block, + [104898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4995), 1, + ACTIONS(2626), 1, + anon_sym_GT, + ACTIONS(5398), 1, anon_sym_COMMA, - ACTIONS(4997), 1, - anon_sym_RBRACE, - STATE(2758), 1, - aux_sym_enum_body_repeat1, - [104866] = 4, + STATE(2738), 1, + aux_sym_implements_clause_repeat1, + [104911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2598), 1, - anon_sym_LBRACE, - STATE(2279), 1, - sym_object_type, - [104879] = 2, + ACTIONS(5400), 1, + anon_sym_LPAREN, + ACTIONS(5402), 1, + anon_sym_await, + STATE(29), 1, + sym__for_header, + [104924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(5404), 1, + anon_sym_GT, + [104937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 3, + ACTIONS(5406), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [104888] = 4, + [104946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 1, + ACTIONS(5408), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5369), 1, - anon_sym_RBRACE, - STATE(2648), 1, - aux_sym_export_clause_repeat1, - [104901] = 2, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5371), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [104910] = 4, + anon_sym_SEMI, + [104955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, + ACTIONS(4149), 1, + anon_sym_RBRACE, + ACTIONS(5410), 1, anon_sym_COMMA, - ACTIONS(3389), 1, - anon_sym_RBRACK, - STATE(2624), 1, - aux_sym_array_repeat1, - [104923] = 4, + STATE(2683), 1, + aux_sym_enum_body_repeat1, + [104968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(5373), 1, - anon_sym_RBRACK, - [104936] = 4, + ACTIONS(5412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [104977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(5414), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5375), 1, - anon_sym_RBRACK, - STATE(2586), 1, - aux_sym_implements_clause_repeat1, - [104949] = 2, + anon_sym_SEMI, + [104986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5377), 3, + ACTIONS(5416), 1, + sym_identifier, + ACTIONS(5418), 2, sym__automatic_semicolon, - anon_sym_from, anon_sym_SEMI, - [104958] = 4, + [104997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, - anon_sym_COMMA, - ACTIONS(5379), 1, - anon_sym_RBRACE, - STATE(2672), 1, - aux_sym_object_repeat1, - [104971] = 3, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5422), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [105008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5381), 1, - anon_sym_is, - ACTIONS(4618), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [104982] = 4, + ACTIONS(5424), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [105017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(5426), 1, + anon_sym_LPAREN, + ACTIONS(5428), 1, + anon_sym_await, + STATE(54), 1, + sym__for_header, + [105030] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4871), 1, anon_sym_COMMA, - ACTIONS(5379), 1, - anon_sym_RBRACE, - STATE(2826), 1, - aux_sym_object_repeat1, - [104995] = 4, + ACTIONS(5430), 1, + anon_sym_RBRACK, + STATE(2577), 1, + aux_sym_implements_clause_repeat1, + [105043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, + ACTIONS(5432), 1, sym_identifier, - ACTIONS(5385), 1, - anon_sym_GT, - STATE(3007), 1, - sym_type_parameter, - [105008] = 4, + STATE(1781), 1, + sym_decorator_member_expression, + STATE(1816), 1, + sym_decorator_call_expression, + [105056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(5387), 1, - anon_sym_GT, - [105021] = 4, - ACTIONS(3), 1, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5434), 1, + anon_sym_RBRACK, + [105069] = 2, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(5389), 1, - anon_sym_GT, - [105034] = 3, + ACTIONS(5436), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [105078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3399), 1, - anon_sym_LBRACE, - ACTIONS(3401), 2, + ACTIONS(4025), 1, + anon_sym_RPAREN, + ACTIONS(5438), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [105045] = 2, - ACTIONS(4404), 1, + STATE(2753), 1, + aux_sym_formal_parameters_repeat1, + [105091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1379), 1, + anon_sym_DQUOTE, + ACTIONS(1381), 1, + anon_sym_SQUOTE, + STATE(3273), 1, + sym_string, + [105104] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5061), 3, + ACTIONS(4634), 3, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [105054] = 4, + anon_sym_COLON, + anon_sym_EQ_GT, + [105113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, - anon_sym_COMMA, - ACTIONS(3447), 1, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5440), 1, anon_sym_RBRACK, - STATE(2674), 1, - aux_sym_array_repeat1, - [105067] = 4, + [105126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3447), 1, - anon_sym_RBRACK, - STATE(2624), 1, - aux_sym_array_repeat1, - [105080] = 4, + ACTIONS(5442), 1, + anon_sym_RBRACE, + STATE(2678), 1, + aux_sym_object_repeat1, + [105139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4939), 1, - anon_sym_GT, - ACTIONS(5391), 1, + ACTIONS(4025), 1, + anon_sym_RPAREN, + ACTIONS(5438), 1, anon_sym_COMMA, - STATE(2664), 1, - aux_sym_implements_clause_repeat1, - [105093] = 4, + STATE(2758), 1, + aux_sym_formal_parameters_repeat1, + [105152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2660), 1, - anon_sym_GT, - ACTIONS(5394), 1, + ACTIONS(113), 1, anon_sym_COMMA, - STATE(2664), 1, - aux_sym_implements_clause_repeat1, - [105106] = 4, + ACTIONS(5442), 1, + anon_sym_RBRACE, + STATE(2830), 1, + aux_sym_object_repeat1, + [105165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 1, + ACTIONS(4871), 1, anon_sym_COMMA, - ACTIONS(5398), 1, - anon_sym_RPAREN, - STATE(2729), 1, - aux_sym_formal_parameters_repeat1, - [105119] = 3, + ACTIONS(5444), 1, + anon_sym_RBRACK, + STATE(2577), 1, + aux_sym_implements_clause_repeat1, + [105178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5400), 1, + ACTIONS(4638), 3, anon_sym_LBRACE, - ACTIONS(4881), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [105130] = 4, + anon_sym_COLON, + anon_sym_EQ_GT, + [105187] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(5402), 1, + ACTIONS(3374), 1, anon_sym_RBRACK, - STATE(2624), 1, + STATE(2680), 1, aux_sym_array_repeat1, - [105143] = 4, + [105200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(5404), 1, - anon_sym_GT, - [105156] = 4, + ACTIONS(533), 1, + anon_sym_COMMA, + ACTIONS(3374), 1, + anon_sym_RBRACK, + STATE(2575), 1, + aux_sym_array_repeat1, + [105213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5053), 1, + ACTIONS(5446), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5055), 1, - anon_sym_RBRACE, - STATE(2747), 1, - aux_sym_enum_body_repeat1, - [105169] = 4, + anon_sym_SEMI, + [105222] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105231] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5406), 1, + ACTIONS(5450), 1, anon_sym_RBRACE, - STATE(2826), 1, + STATE(2830), 1, aux_sym_object_repeat1, - [105182] = 4, + [105244] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5408), 1, + ACTIONS(5452), 1, anon_sym_RBRACE, - STATE(2826), 1, + STATE(2830), 1, aux_sym_object_repeat1, - [105195] = 4, + [105257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(523), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2568), 1, - anon_sym_LBRACE, - STATE(582), 1, - sym_object_type, - [105208] = 4, + ACTIONS(5454), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105266] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(5410), 1, + ACTIONS(5456), 1, anon_sym_RBRACK, - STATE(2624), 1, + STATE(2575), 1, aux_sym_array_repeat1, - [105221] = 4, + [105279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, - anon_sym_GT, - ACTIONS(5412), 1, + ACTIONS(5458), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(2664), 1, - aux_sym_implements_clause_repeat1, - [105234] = 4, + anon_sym_SEMI, + [105288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, + ACTIONS(5460), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5414), 1, - anon_sym_RPAREN, - STATE(2624), 1, - aux_sym_array_repeat1, - [105247] = 2, + anon_sym_SEMI, + [105297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 3, + ACTIONS(5214), 1, + anon_sym_RBRACE, + ACTIONS(5462), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [105256] = 4, + STATE(2683), 1, + aux_sym_enum_body_repeat1, + [105310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(5416), 1, - anon_sym_EQ, - STATE(3152), 1, - sym_type_parameters, - [105269] = 4, + ACTIONS(4576), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [105319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, + ACTIONS(5465), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5421), 1, - anon_sym_RBRACE, - STATE(2679), 1, - aux_sym_named_imports_repeat1, - [105282] = 4, + anon_sym_SEMI, + [105328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_DQUOTE, - ACTIONS(1381), 1, - anon_sym_SQUOTE, - STATE(3231), 1, - sym_string, - [105295] = 2, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(5467), 1, + anon_sym_RBRACE, + STATE(2643), 1, + aux_sym_object_repeat1, + [105341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [105304] = 2, - ACTIONS(4404), 1, + ACTIONS(5469), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105350] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3261), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [105313] = 4, + ACTIONS(5471), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105359] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(3320), 1, + ACTIONS(3447), 1, anon_sym_RPAREN, - STATE(2698), 1, + STATE(2704), 1, aux_sym_array_repeat1, - [105326] = 4, + [105372] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(3320), 1, + ACTIONS(3447), 1, anon_sym_RPAREN, - STATE(2624), 1, + STATE(2575), 1, aux_sym_array_repeat1, - [105339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(5423), 1, - anon_sym_RPAREN, - [105352] = 4, + [105385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5385), 1, - anon_sym_GT, - ACTIONS(5425), 1, + ACTIONS(5473), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(2706), 1, - aux_sym_type_parameters_repeat1, - [105365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [105374] = 4, + anon_sym_SEMI, + [105394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5427), 1, - anon_sym_LBRACE, - STATE(2586), 1, - aux_sym_implements_clause_repeat1, - [105387] = 4, + ACTIONS(5467), 1, + anon_sym_RBRACE, + STATE(2830), 1, + aux_sym_object_repeat1, + [105407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, - sym_identifier, - ACTIONS(5429), 1, - anon_sym_GT, - STATE(3007), 1, - sym_type_parameter, - [105400] = 4, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(5475), 1, + anon_sym_EQ, + STATE(3314), 1, + sym_type_parameters, + [105420] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5477), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105429] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(5431), 1, + ACTIONS(5479), 1, anon_sym_RPAREN, - [105413] = 4, + [105442] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5481), 1, anon_sym_RPAREN, - [105426] = 2, - ACTIONS(4404), 1, + [105455] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [105435] = 4, + ACTIONS(5483), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, - anon_sym_implements, - ACTIONS(5435), 1, - anon_sym_LBRACE, - STATE(3317), 1, - sym_implements_clause, - [105448] = 4, + ACTIONS(5485), 1, + anon_sym_COMMA, + ACTIONS(5488), 1, + anon_sym_RBRACE, + STATE(2698), 1, + aux_sym_named_imports_repeat1, + [105477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, + ACTIONS(5490), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5437), 1, - anon_sym_RPAREN, - STATE(2624), 1, - aux_sym_array_repeat1, - [105461] = 4, + anon_sym_SEMI, + [105486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - ACTIONS(5439), 1, - anon_sym_LPAREN, - STATE(525), 1, - sym_statement_block, - [105474] = 4, + ACTIONS(5492), 1, + anon_sym_EQ, + ACTIONS(5494), 1, + anon_sym_COMMA, + ACTIONS(5496), 1, + anon_sym_from, + [105499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(5441), 1, - anon_sym_RPAREN, - [105487] = 3, + ACTIONS(5498), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5443), 1, - anon_sym_LBRACE, - ACTIONS(4987), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [105498] = 4, + ACTIONS(5500), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105517] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105526] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(5445), 1, + ACTIONS(5504), 1, anon_sym_RPAREN, - STATE(2624), 1, + STATE(2575), 1, aux_sym_array_repeat1, - [105511] = 2, - ACTIONS(4404), 1, + [105539] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [105520] = 4, + ACTIONS(5506), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, + ACTIONS(2620), 1, anon_sym_GT, - ACTIONS(5447), 1, + ACTIONS(5508), 1, anon_sym_COMMA, - STATE(2664), 1, + STATE(2738), 1, aux_sym_implements_clause_repeat1, - [105533] = 2, - ACTIONS(4404), 1, + [105561] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [105542] = 4, + ACTIONS(5510), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [105570] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4225), 1, anon_sym_DOT, - ACTIONS(4283), 1, + ACTIONS(4307), 1, anon_sym_COLON, - ACTIONS(5449), 1, + ACTIONS(5512), 1, anon_sym_GT, - [105555] = 2, - ACTIONS(4404), 1, + [105583] = 2, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5451), 3, + ACTIONS(5003), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [105564] = 2, + [105592] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5453), 3, - sym__automatic_semicolon, + ACTIONS(5514), 1, anon_sym_COMMA, - anon_sym_SEMI, - [105573] = 2, + ACTIONS(5517), 1, + anon_sym_RBRACE, + STATE(2710), 1, + aux_sym_export_clause_repeat1, + [105605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5455), 3, + ACTIONS(5519), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [105582] = 4, + [105614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5457), 1, - anon_sym_COMMA, - ACTIONS(5460), 1, - anon_sym_GT, - STATE(2706), 1, - aux_sym_type_parameters_repeat1, - [105595] = 4, + ACTIONS(5521), 1, + anon_sym_is, + ACTIONS(4558), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [105625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4009), 1, - anon_sym_RPAREN, - ACTIONS(5462), 1, - anon_sym_COMMA, - STATE(2721), 1, - aux_sym_formal_parameters_repeat1, - [105608] = 4, + ACTIONS(2968), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [105634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_RPAREN, - ACTIONS(5464), 1, + ACTIONS(3445), 3, anon_sym_COMMA, - STATE(2732), 1, - aux_sym_formal_parameters_repeat1, - [105621] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + [105643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(4871), 1, anon_sym_COMMA, - ACTIONS(5466), 1, + ACTIONS(5523), 1, anon_sym_RBRACK, - STATE(2586), 1, + STATE(2577), 1, aux_sym_implements_clause_repeat1, - [105634] = 4, + [105656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, - sym_identifier, - ACTIONS(5468), 1, - anon_sym_GT, - STATE(3007), 1, - sym_type_parameter, - [105647] = 4, + ACTIONS(1670), 1, + anon_sym_LT, + ACTIONS(5525), 1, + anon_sym_EQ, + STATE(3154), 1, + sym_type_parameters, + [105669] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(5470), 1, + ACTIONS(5527), 1, anon_sym_RBRACK, - [105660] = 2, + [105682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [105669] = 3, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(5529), 1, + anon_sym_GT, + [105695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - anon_sym_DOT, - ACTIONS(5474), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [105680] = 2, + ACTIONS(533), 1, + anon_sym_COMMA, + ACTIONS(3443), 1, + anon_sym_RPAREN, + STATE(2575), 1, + aux_sym_array_repeat1, + [105708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5476), 3, - sym__automatic_semicolon, + ACTIONS(533), 1, anon_sym_COMMA, - anon_sym_SEMI, - [105689] = 2, - ACTIONS(4404), 1, + ACTIONS(3443), 1, + anon_sym_RPAREN, + STATE(2646), 1, + aux_sym_array_repeat1, + [105721] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5478), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [105698] = 2, + ACTIONS(2572), 1, + anon_sym_GT, + ACTIONS(5531), 1, + anon_sym_COMMA, + STATE(2738), 1, + aux_sym_implements_clause_repeat1, + [105734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5480), 3, - sym__automatic_semicolon, + ACTIONS(5053), 1, anon_sym_COMMA, - anon_sym_SEMI, - [105707] = 3, + ACTIONS(5055), 1, + anon_sym_RBRACE, + STATE(2653), 1, + aux_sym_enum_body_repeat1, + [105747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5482), 1, + ACTIONS(5533), 1, anon_sym_LBRACE, - ACTIONS(5009), 2, + ACTIONS(5083), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, - [105718] = 4, + [105758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 1, - anon_sym_EQ, - ACTIONS(5486), 1, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2568), 1, + anon_sym_LBRACE, + STATE(560), 1, + sym_object_type, + [105771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5535), 1, anon_sym_COMMA, - ACTIONS(5488), 1, - anon_sym_from, - [105731] = 4, + ACTIONS(5537), 1, + anon_sym_RPAREN, + STATE(2669), 1, + aux_sym_formal_parameters_repeat1, + [105784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(5539), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5490), 1, - anon_sym_RBRACK, - STATE(2586), 1, - aux_sym_implements_clause_repeat1, - [105744] = 2, - ACTIONS(4404), 1, + anon_sym_SEMI, + [105793] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5492), 3, + ACTIONS(4871), 1, + anon_sym_COMMA, + ACTIONS(5541), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [105753] = 4, + STATE(2577), 1, + aux_sym_implements_clause_repeat1, + [105806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4029), 1, - anon_sym_RPAREN, - ACTIONS(5494), 1, - anon_sym_COMMA, - STATE(2732), 1, - aux_sym_formal_parameters_repeat1, - [105766] = 4, + ACTIONS(5543), 1, + anon_sym_LBRACE, + ACTIONS(5015), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [105817] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(3422), 1, + ACTIONS(5545), 1, anon_sym_RPAREN, - STATE(2624), 1, + STATE(2575), 1, aux_sym_array_repeat1, - [105779] = 4, + [105830] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(3422), 1, - anon_sym_RPAREN, - STATE(2676), 1, - aux_sym_array_repeat1, - [105792] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(5496), 1, + ACTIONS(5547), 1, anon_sym_RBRACK, - [105805] = 4, + STATE(2575), 1, + aux_sym_array_repeat1, + [105843] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5498), 1, + ACTIONS(5549), 1, anon_sym_RBRACE, - STATE(2741), 1, + STATE(2747), 1, aux_sym_object_repeat1, - [105818] = 4, + [105856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_RPAREN, - ACTIONS(5500), 1, + ACTIONS(5551), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(2708), 1, - aux_sym_formal_parameters_repeat1, - [105831] = 4, + anon_sym_SEMI, + [105865] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5498), 1, + ACTIONS(5549), 1, anon_sym_RBRACE, - STATE(2826), 1, + STATE(2830), 1, aux_sym_object_repeat1, - [105844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3401), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [105853] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4009), 1, - anon_sym_RPAREN, - ACTIONS(5462), 1, - anon_sym_COMMA, - STATE(2732), 1, - aux_sym_formal_parameters_repeat1, - [105866] = 4, + [105878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5502), 1, + ACTIONS(5553), 1, anon_sym_COMMA, - ACTIONS(5504), 1, + ACTIONS(5555), 1, anon_sym_GT, - STATE(2686), 1, + STATE(2745), 1, aux_sym_type_parameters_repeat1, - [105879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4580), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [105888] = 4, + [105891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_COMMA, - ACTIONS(5509), 1, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5557), 1, anon_sym_RPAREN, - STATE(2732), 1, - aux_sym_formal_parameters_repeat1, - [105901] = 4, + [105904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, - anon_sym_COMMA, - ACTIONS(3434), 1, - anon_sym_RBRACK, - STATE(2743), 1, - aux_sym_array_repeat1, - [105914] = 4, + ACTIONS(5559), 1, + anon_sym_LBRACE, + ACTIONS(4949), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [105915] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(3434), 1, + ACTIONS(5561), 1, anon_sym_RBRACK, - STATE(2624), 1, + STATE(2575), 1, aux_sym_array_repeat1, - [105927] = 4, + [105928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(4989), 1, + anon_sym_GT, + ACTIONS(5563), 1, anon_sym_COMMA, - ACTIONS(5511), 1, - anon_sym_RBRACK, - STATE(2586), 1, + STATE(2738), 1, aux_sym_implements_clause_repeat1, - [105940] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LT, - ACTIONS(5513), 1, - anon_sym_EQ, - STATE(3281), 1, - sym_type_parameters, - [105953] = 4, + [105941] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(3389), 1, + ACTIONS(3441), 1, anon_sym_RBRACK, - STATE(2668), 1, + STATE(2749), 1, aux_sym_array_repeat1, - [105966] = 4, + [105954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(5358), 1, - anon_sym_RBRACE, - STATE(2827), 1, - aux_sym_object_repeat1, - [105979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4606), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [105988] = 4, + ACTIONS(3441), 1, + anon_sym_RBRACK, + STATE(2575), 1, + aux_sym_array_repeat1, + [105967] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5515), 1, + ACTIONS(5566), 1, anon_sym_RBRACE, - STATE(2826), 1, + STATE(2830), 1, aux_sym_object_repeat1, - [106001] = 4, + [105980] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5517), 1, + ACTIONS(5568), 1, anon_sym_RBRACE, - STATE(2826), 1, + STATE(2830), 1, aux_sym_object_repeat1, - [106014] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5519), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106023] = 4, + [105993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, + ACTIONS(3409), 1, + anon_sym_LBRACE, + ACTIONS(3411), 2, anon_sym_COMMA, - ACTIONS(5521), 1, - anon_sym_RBRACK, - STATE(2624), 1, - aux_sym_array_repeat1, - [106036] = 2, + anon_sym_LBRACE_PIPE, + [106004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5523), 3, + ACTIONS(5570), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106045] = 4, + [106013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, + ACTIONS(5572), 1, anon_sym_COMMA, - ACTIONS(3432), 1, - anon_sym_RPAREN, - STATE(2624), 1, - aux_sym_array_repeat1, - [106058] = 4, + ACTIONS(5575), 1, + anon_sym_GT, + STATE(2745), 1, + aux_sym_type_parameters_repeat1, + [106026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, + ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(3432), 1, - anon_sym_RPAREN, - STATE(2644), 1, - aux_sym_array_repeat1, - [106071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4157), 1, + ACTIONS(5577), 1, anon_sym_RBRACE, - ACTIONS(5525), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_enum_body_repeat1, - [106084] = 2, + STATE(2830), 1, + aux_sym_object_repeat1, + [106039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 3, - sym__automatic_semicolon, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106093] = 4, + ACTIONS(5579), 1, + anon_sym_RBRACE, + STATE(2830), 1, + aux_sym_object_repeat1, + [106052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_AMP, - ACTIONS(4338), 1, - anon_sym_PIPE, - ACTIONS(5527), 1, - anon_sym_RBRACK, - [106106] = 2, + ACTIONS(5581), 1, + sym_identifier, + ACTIONS(5583), 1, + anon_sym_GT, + STATE(3061), 1, + sym_type_parameter, + [106065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5529), 3, - sym__automatic_semicolon, + ACTIONS(533), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106115] = 2, - ACTIONS(3), 1, + ACTIONS(5585), 1, + anon_sym_RBRACK, + STATE(2575), 1, + aux_sym_array_repeat1, + [106078] = 2, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5531), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [106124] = 4, - ACTIONS(3), 1, + ACTIONS(5587), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [106087] = 2, + ACTIONS(4415), 1, sym_comment, - ACTIONS(765), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2598), 1, + ACTIONS(3294), 3, anon_sym_LBRACE, - STATE(2448), 1, - sym_object_type, - [106137] = 2, - ACTIONS(3), 1, + anon_sym_LT, + sym_jsx_text, + [106096] = 2, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5533), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [106146] = 4, + ACTIONS(5589), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [106105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, - anon_sym_DQUOTE, - ACTIONS(2348), 1, - anon_sym_SQUOTE, - STATE(2925), 1, - sym_string, - [106159] = 4, + ACTIONS(4007), 1, + anon_sym_RPAREN, + ACTIONS(5591), 1, + anon_sym_COMMA, + STATE(2758), 1, + aux_sym_formal_parameters_repeat1, + [106118] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(1732), 1, + anon_sym_while, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(5535), 1, - anon_sym_RPAREN, - [106172] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - anon_sym_DOT, - ACTIONS(5537), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [106183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1413), 1, - anon_sym_LBRACE, - ACTIONS(1411), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [106194] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4151), 1, - anon_sym_RBRACE, - ACTIONS(5539), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_enum_body_repeat1, - [106207] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4883), 1, - anon_sym_RBRACE, - ACTIONS(5541), 1, - anon_sym_COMMA, - STATE(2679), 1, - aux_sym_named_imports_repeat1, - [106220] = 3, - ACTIONS(3), 1, + [106131] = 2, + ACTIONS(4415), 1, sym_comment, - ACTIONS(1425), 1, + ACTIONS(3119), 3, anon_sym_LBRACE, - ACTIONS(1423), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [106231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5543), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [106240] = 4, + anon_sym_LT, + sym_jsx_text, + [106140] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(5545), 1, + ACTIONS(3372), 1, anon_sym_RBRACK, - STATE(2624), 1, + STATE(2730), 1, aux_sym_array_repeat1, - [106253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5547), 1, - anon_sym_as, - ACTIONS(5549), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [106264] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2578), 1, - anon_sym_GT, - ACTIONS(5551), 1, - anon_sym_COMMA, - STATE(2664), 1, - aux_sym_implements_clause_repeat1, - [106277] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5553), 1, - anon_sym_COMMA, - ACTIONS(5555), 1, - anon_sym_RBRACE, - STATE(2770), 1, - aux_sym_export_clause_repeat1, - [106290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(5557), 1, - anon_sym_GT, - [106303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1607), 1, - anon_sym_LBRACE, - ACTIONS(1605), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [106314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1656), 1, - anon_sym_LBRACE, - ACTIONS(1654), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [106325] = 2, + [106153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 3, + ACTIONS(4532), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [106334] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5075), 1, - anon_sym_RBRACE, - ACTIONS(5559), 1, - anon_sym_COMMA, - STATE(2648), 1, - aux_sym_export_clause_repeat1, - [106347] = 4, + [106162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(5593), 1, anon_sym_COMMA, - ACTIONS(5561), 1, - anon_sym_RBRACE, - STATE(2826), 1, - aux_sym_object_repeat1, - [106360] = 4, + ACTIONS(5596), 1, + anon_sym_RPAREN, + STATE(2758), 1, + aux_sym_formal_parameters_repeat1, + [106175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(5598), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5563), 1, - anon_sym_RBRACK, - STATE(2586), 1, - aux_sym_implements_clause_repeat1, - [106373] = 2, + anon_sym_SEMI, + [106184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 3, + ACTIONS(5600), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [106382] = 4, + [106193] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(5567), 1, - anon_sym_RBRACK, - [106395] = 3, - ACTIONS(3), 1, + ACTIONS(5602), 1, + anon_sym_RPAREN, + [106206] = 2, + ACTIONS(4415), 1, sym_comment, - ACTIONS(5569), 1, - anon_sym_as, - ACTIONS(5571), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [106406] = 2, + ACTIONS(3058), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [106215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5573), 3, + ACTIONS(5374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106415] = 2, + [106224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5575), 3, + ACTIONS(5604), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [106424] = 4, + [106233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(5606), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5577), 1, - anon_sym_RBRACE, - STATE(2826), 1, - aux_sym_object_repeat1, - [106437] = 2, + anon_sym_SEMI, + [106242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 3, + ACTIONS(5608), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [106446] = 2, + [106251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5581), 3, + ACTIONS(4340), 1, + anon_sym_DOT, + ACTIONS(5610), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [106455] = 2, + [106262] = 2, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(3109), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [106271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 3, - sym__automatic_semicolon, + ACTIONS(4893), 1, + anon_sym_RBRACE, + ACTIONS(5612), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106464] = 4, + STATE(2698), 1, + aux_sym_named_imports_repeat1, + [106284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(2616), 1, + anon_sym_GT, + ACTIONS(5614), 1, anon_sym_COMMA, - ACTIONS(5585), 1, - anon_sym_RBRACE, - STATE(2826), 1, - aux_sym_object_repeat1, - [106477] = 2, + STATE(2738), 1, + aux_sym_implements_clause_repeat1, + [106297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5587), 3, - sym__automatic_semicolon, + ACTIONS(5616), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106486] = 2, + ACTIONS(5618), 1, + anon_sym_GT, + STATE(2734), 1, + aux_sym_type_parameters_repeat1, + [106310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 3, - sym__automatic_semicolon, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(5620), 1, + anon_sym_GT, + [106323] = 2, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(3161), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [106332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4905), 1, + anon_sym_RBRACE, + ACTIONS(5622), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106495] = 2, + STATE(2710), 1, + aux_sym_export_clause_repeat1, + [106345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 3, + ACTIONS(5624), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [106504] = 4, + [106354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 1, + ACTIONS(5626), 1, sym_identifier, - STATE(1779), 1, - sym_decorator_member_expression, - STATE(1818), 1, - sym_decorator_call_expression, - [106517] = 4, + ACTIONS(5628), 1, + anon_sym_require, + STATE(2767), 1, + sym_nested_identifier, + [106367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5595), 1, - anon_sym_LPAREN, - ACTIONS(5597), 1, - anon_sym_await, - STATE(30), 1, - sym__for_header, - [106530] = 4, + ACTIONS(4403), 1, + anon_sym_implements, + ACTIONS(5630), 1, + anon_sym_LBRACE, + STATE(3215), 1, + sym_implements_clause, + [106380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5599), 1, + ACTIONS(4871), 1, anon_sym_COMMA, - ACTIONS(5601), 1, - anon_sym_GT, - STATE(2706), 1, - aux_sym_type_parameters_repeat1, - [106543] = 4, + ACTIONS(5632), 1, + anon_sym_RBRACK, + STATE(2577), 1, + aux_sym_implements_clause_repeat1, + [106393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1421), 1, + anon_sym_LBRACE, + ACTIONS(1419), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [106404] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4336), 1, anon_sym_AMP, ACTIONS(4338), 1, anon_sym_PIPE, - ACTIONS(5603), 1, + ACTIONS(5634), 1, anon_sym_RBRACK, - [106556] = 2, + [106417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5605), 3, - sym__automatic_semicolon, + ACTIONS(5636), 1, + anon_sym_as, + ACTIONS(5638), 2, anon_sym_COMMA, - anon_sym_SEMI, - [106565] = 2, + anon_sym_RBRACE, + [106428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5607), 3, + ACTIONS(5640), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [106574] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5383), 1, - sym_identifier, - ACTIONS(5601), 1, - anon_sym_GT, - STATE(3007), 1, - sym_type_parameter, - [106587] = 2, + [106437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5609), 3, - sym__automatic_semicolon, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1423), 2, anon_sym_COMMA, - anon_sym_SEMI, - [106596] = 2, - ACTIONS(4404), 1, + anon_sym_LBRACE_PIPE, + [106448] = 2, + ACTIONS(4415), 1, sym_comment, - ACTIONS(4917), 3, + ACTIONS(5085), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [106605] = 2, + [106457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 3, - sym__automatic_semicolon, + ACTIONS(5494), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106614] = 4, + ACTIONS(5496), 1, + anon_sym_from, + ACTIONS(5642), 1, + anon_sym_EQ, + [106470] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(3403), 1, - anon_sym_RPAREN, - STATE(2624), 1, + ACTIONS(3437), 1, + anon_sym_RBRACK, + STATE(2575), 1, aux_sym_array_repeat1, - [106627] = 4, + [106483] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(3403), 1, - anon_sym_RPAREN, - STATE(2694), 1, + ACTIONS(3437), 1, + anon_sym_RBRACK, + STATE(2737), 1, aux_sym_array_repeat1, - [106640] = 4, + [106496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2592), 1, - anon_sym_GT, - ACTIONS(5613), 1, + ACTIONS(5644), 1, anon_sym_COMMA, - STATE(2664), 1, - aux_sym_implements_clause_repeat1, - [106653] = 3, + ACTIONS(5646), 1, + anon_sym_RBRACE, + STATE(2769), 1, + aux_sym_named_imports_repeat1, + [106509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1612), 1, + anon_sym_LBRACE, + ACTIONS(1610), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [106520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1646), 1, + anon_sym_LBRACE, + ACTIONS(1644), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [106531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1644), 1, + ACTIONS(1628), 1, anon_sym_LBRACE, - ACTIONS(1642), 2, + ACTIONS(1626), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [106664] = 4, + [106542] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5615), 1, + ACTIONS(5648), 1, anon_sym_RBRACE, - STATE(2826), 1, + STATE(2830), 1, aux_sym_object_repeat1, - [106677] = 2, + [106555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5617), 3, - sym__automatic_semicolon, + ACTIONS(533), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106686] = 2, + ACTIONS(3361), 1, + anon_sym_RPAREN, + STATE(2729), 1, + aux_sym_array_repeat1, + [106568] = 2, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(5650), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [106577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5619), 3, - sym__automatic_semicolon, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106695] = 2, + ACTIONS(5648), 1, + anon_sym_RBRACE, + STATE(2741), 1, + aux_sym_object_repeat1, + [106590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5621), 3, - sym__automatic_semicolon, + ACTIONS(113), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106704] = 4, + ACTIONS(5652), 1, + anon_sym_RBRACE, + STATE(2805), 1, + aux_sym_object_repeat1, + [106603] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym_COMMA, + ACTIONS(5652), 1, + anon_sym_RBRACE, + STATE(2830), 1, + aux_sym_object_repeat1, + [106616] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5654), 1, + anon_sym_COMMA, + ACTIONS(5656), 1, + anon_sym_RPAREN, + STATE(2807), 1, + aux_sym_formal_parameters_repeat1, + [106629] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(5623), 1, + ACTIONS(3314), 1, anon_sym_RBRACK, - STATE(2624), 1, + STATE(2810), 1, aux_sym_array_repeat1, - [106717] = 3, + [106642] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5625), 1, - sym_identifier, - ACTIONS(5627), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [106728] = 3, + ACTIONS(533), 1, + anon_sym_COMMA, + ACTIONS(3314), 1, + anon_sym_RBRACK, + STATE(2575), 1, + aux_sym_array_repeat1, + [106655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, - sym_identifier, - ACTIONS(5631), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [106739] = 2, + ACTIONS(5658), 1, + anon_sym_COMMA, + ACTIONS(5660), 1, + anon_sym_GT, + STATE(2814), 1, + aux_sym_type_parameters_repeat1, + [106668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5633), 3, - sym__automatic_semicolon, + ACTIONS(533), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106748] = 4, + ACTIONS(3372), 1, + anon_sym_RBRACK, + STATE(2575), 1, + aux_sym_array_repeat1, + [106681] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5615), 1, + ACTIONS(5662), 1, anon_sym_RBRACE, - STATE(2820), 1, + STATE(2830), 1, aux_sym_object_repeat1, - [106761] = 4, + [106694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, + ACTIONS(2612), 1, + anon_sym_GT, + ACTIONS(5664), 1, anon_sym_COMMA, - ACTIONS(3335), 1, - anon_sym_RBRACK, - STATE(2624), 1, - aux_sym_array_repeat1, - [106774] = 4, + STATE(2738), 1, + aux_sym_implements_clause_repeat1, + [106707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2620), 1, - anon_sym_GT, - ACTIONS(5635), 1, + ACTIONS(113), 1, anon_sym_COMMA, - STATE(2664), 1, - aux_sym_implements_clause_repeat1, - [106787] = 4, + ACTIONS(5666), 1, + anon_sym_RBRACE, + STATE(2830), 1, + aux_sym_object_repeat1, + [106720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(2346), 1, + anon_sym_DQUOTE, + ACTIONS(2348), 1, + anon_sym_SQUOTE, + STATE(3011), 1, + sym_string, + [106733] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, anon_sym_RPAREN, - ACTIONS(5500), 1, + ACTIONS(5668), 1, anon_sym_COMMA, - STATE(2732), 1, + STATE(2758), 1, aux_sym_formal_parameters_repeat1, - [106800] = 2, + [106746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 3, - sym__automatic_semicolon, + ACTIONS(5555), 1, + anon_sym_GT, + ACTIONS(5581), 1, + sym_identifier, + STATE(3061), 1, + sym_type_parameter, + [106759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + anon_sym_RPAREN, + ACTIONS(5668), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106809] = 4, + STATE(2823), 1, + aux_sym_formal_parameters_repeat1, + [106772] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(3335), 1, + ACTIONS(5670), 1, anon_sym_RBRACK, - STATE(2762), 1, + STATE(2575), 1, aux_sym_array_repeat1, - [106822] = 2, + [106785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4139), 3, - sym__automatic_semicolon, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_RBRACK, + [106798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(523), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2568), 1, + anon_sym_LBRACE, + STATE(570), 1, + sym_object_type, + [106811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5581), 1, + sym_identifier, + ACTIONS(5674), 1, + anon_sym_GT, + STATE(3061), 1, + sym_type_parameter, + [106824] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 1, + anon_sym_GT, + ACTIONS(5676), 1, anon_sym_COMMA, - anon_sym_SEMI, - [106831] = 4, + STATE(2745), 1, + aux_sym_type_parameters_repeat1, + [106837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5639), 1, - anon_sym_LPAREN, - ACTIONS(5641), 1, - anon_sym_await, - STATE(55), 1, - sym__for_header, - [106844] = 4, + ACTIONS(5678), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [106846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5643), 1, - anon_sym_LPAREN, - ACTIONS(5645), 1, - anon_sym_await, - STATE(43), 1, - sym__for_header, + ACTIONS(5680), 1, + anon_sym_as, + ACTIONS(5682), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [106857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5647), 1, - sym_identifier, - ACTIONS(5649), 1, - anon_sym_require, - STATE(2756), 1, - sym_nested_identifier, + ACTIONS(2606), 1, + anon_sym_GT, + ACTIONS(5684), 1, + anon_sym_COMMA, + STATE(2738), 1, + aux_sym_implements_clause_repeat1, [106870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5486), 1, + ACTIONS(5686), 1, anon_sym_COMMA, - ACTIONS(5488), 1, - anon_sym_from, - ACTIONS(5651), 1, - anon_sym_EQ, + ACTIONS(5688), 1, + anon_sym_RBRACE, + STATE(2774), 1, + aux_sym_export_clause_repeat1, [106883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 1, - anon_sym_COMMA, - ACTIONS(5655), 1, - anon_sym_RBRACE, - STATE(2759), 1, - aux_sym_named_imports_repeat1, - [106896] = 4, + ACTIONS(841), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2644), 1, + anon_sym_LBRACE, + STATE(2338), 1, + sym_object_type, + [106896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(4137), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(5657), 1, - anon_sym_RBRACE, - STATE(2826), 1, - aux_sym_object_repeat1, - [106909] = 4, + anon_sym_SEMI, + [106905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(5659), 1, - anon_sym_RBRACE, - STATE(2826), 1, - aux_sym_object_repeat1, - [106922] = 4, + ACTIONS(3392), 1, + anon_sym_RPAREN, + STATE(2833), 1, + aux_sym_array_repeat1, + [106918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, - anon_sym_RBRACE, - ACTIONS(5661), 1, + ACTIONS(533), 1, anon_sym_COMMA, - STATE(2822), 1, - aux_sym_enum_body_repeat1, - [106935] = 4, + ACTIONS(3392), 1, + anon_sym_RPAREN, + STATE(2575), 1, + aux_sym_array_repeat1, + [106931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(4021), 1, + anon_sym_RPAREN, + ACTIONS(5690), 1, anon_sym_COMMA, - ACTIONS(5664), 1, - anon_sym_RBRACE, - STATE(2826), 1, - aux_sym_object_repeat1, - [106948] = 4, + STATE(2758), 1, + aux_sym_formal_parameters_repeat1, + [106944] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(113), 1, anon_sym_COMMA, - ACTIONS(5664), 1, + ACTIONS(5692), 1, anon_sym_RBRACE, - STATE(2771), 1, + STATE(2830), 1, aux_sym_object_repeat1, - [106961] = 2, + [106957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5581), 1, + sym_identifier, + ACTIONS(5694), 1, + anon_sym_GT, + STATE(3061), 1, + sym_type_parameter, + [106970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 3, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(5696), 1, + anon_sym_GT, + [106983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4340), 1, + anon_sym_DOT, + ACTIONS(5698), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [106970] = 4, + [106994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, + ACTIONS(2638), 1, + anon_sym_GT, + ACTIONS(5700), 1, anon_sym_COMMA, - ACTIONS(5671), 1, - anon_sym_RBRACE, - STATE(2826), 1, - aux_sym_object_repeat1, - [106983] = 4, + STATE(2738), 1, + aux_sym_implements_clause_repeat1, + [107007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(4336), 1, + anon_sym_AMP, + ACTIONS(4338), 1, + anon_sym_PIPE, + ACTIONS(5702), 1, + anon_sym_RPAREN, + [107020] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5704), 1, anon_sym_COMMA, - ACTIONS(5673), 1, + ACTIONS(5707), 1, anon_sym_RBRACE, - STATE(2826), 1, + STATE(2830), 1, aux_sym_object_repeat1, - [106996] = 4, + [107033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - anon_sym_COMMA, - ACTIONS(5677), 1, - anon_sym_GT, - STATE(2788), 1, - aux_sym_type_parameters_repeat1, - [107009] = 4, + ACTIONS(5709), 1, + anon_sym_LPAREN, + ACTIONS(5711), 1, + anon_sym_await, + STATE(37), 1, + sym__for_header, + [107046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 1, + ACTIONS(4871), 1, anon_sym_COMMA, - ACTIONS(3407), 1, + ACTIONS(5713), 1, anon_sym_RBRACK, - STATE(2624), 1, - aux_sym_array_repeat1, - [107022] = 4, + STATE(2577), 1, + aux_sym_implements_clause_repeat1, + [107059] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(533), 1, anon_sym_COMMA, - ACTIONS(3407), 1, - anon_sym_RBRACK, - STATE(2804), 1, + ACTIONS(5715), 1, + anon_sym_RPAREN, + STATE(2575), 1, aux_sym_array_repeat1, - [107035] = 4, + [107072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(523), 1, + ACTIONS(5009), 1, + anon_sym_COMMA, + ACTIONS(5011), 1, + anon_sym_RBRACE, + STATE(2836), 1, + aux_sym_enum_body_repeat1, + [107085] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(841), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2568), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - STATE(591), 1, + STATE(2491), 1, sym_object_type, - [107048] = 2, + [107098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 3, - sym__automatic_semicolon, + ACTIONS(4161), 1, + anon_sym_RBRACE, + ACTIONS(5717), 1, anon_sym_COMMA, - anon_sym_SEMI, - [107057] = 4, + STATE(2683), 1, + aux_sym_enum_body_repeat1, + [107111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, - anon_sym_COMMA, - ACTIONS(5683), 1, - anon_sym_RPAREN, - STATE(2811), 1, - aux_sym_formal_parameters_repeat1, - [107070] = 2, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1523), 1, + sym_class_body, + [107121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [107079] = 3, + ACTIONS(4754), 1, + sym_identifier, + ACTIONS(4756), 1, + anon_sym_LBRACK, + [107131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2915), 1, - sym_statement_block, - [107089] = 3, + ACTIONS(5719), 1, + anon_sym_LPAREN, + STATE(36), 1, + sym_parenthesized_expression, + [107141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, + ACTIONS(4407), 1, anon_sym_LBRACE, - STATE(1061), 1, - sym_statement_block, - [107099] = 2, + STATE(86), 1, + sym_class_body, + [107151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107107] = 3, + ACTIONS(4350), 1, + anon_sym_LBRACE, + STATE(1160), 1, + sym_class_body, + [107161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, - anon_sym_from, - STATE(2968), 1, - sym__from_clause, - [107117] = 3, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_statement_block, + [107171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(92), 1, + STATE(2442), 1, sym_class_body, - [107127] = 3, + [107181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym_parenthesized_expression, - [107137] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1399), 1, + sym_class_body, + [107191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5719), 1, anon_sym_LPAREN, - STATE(44), 1, + STATE(31), 1, sym_parenthesized_expression, - [107147] = 3, + [107201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, - anon_sym_from, - STATE(2853), 1, - sym__from_clause, - [107157] = 3, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2113), 1, + sym_formal_parameters, + [107211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(5719), 1, anon_sym_LPAREN, - STATE(3097), 1, - sym_formal_parameters, - [107167] = 3, + STATE(39), 1, + sym_parenthesized_expression, + [107221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5719), 1, anon_sym_LPAREN, - STATE(2978), 1, + STATE(41), 1, sym_parenthesized_expression, - [107177] = 2, + [107231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107185] = 3, + ACTIONS(5719), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym_parenthesized_expression, + [107241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(1445), 1, + STATE(2448), 1, sym_class_body, - [107195] = 2, + [107251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107203] = 3, + ACTIONS(2940), 1, + anon_sym_LBRACE, + STATE(1396), 1, + sym_statement_block, + [107261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5719), 1, anon_sym_LPAREN, - STATE(34), 1, + STATE(3003), 1, sym_parenthesized_expression, - [107213] = 3, + [107271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3178), 1, - sym_formal_parameters, - [107223] = 3, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(5404), 1, + anon_sym_GT, + [107281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3173), 1, - sym_formal_parameters, - [107233] = 3, + ACTIONS(907), 1, + anon_sym_LBRACE, + STATE(89), 1, + sym_statement_block, + [107291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - STATE(1165), 1, - sym_arguments, - [107243] = 3, + ACTIONS(4401), 1, + anon_sym_LBRACE, + STATE(541), 1, + sym_class_body, + [107301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2885), 1, - sym_statement_block, - [107253] = 2, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(5404), 1, + anon_sym_GT, + [107311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107261] = 3, + ACTIONS(5174), 1, + anon_sym_from, + STATE(2956), 1, + sym__from_clause, + [107321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, - anon_sym_LPAREN, - STATE(1430), 1, - sym_arguments, - [107271] = 3, + ACTIONS(4358), 1, + anon_sym_LBRACE, + STATE(1652), 1, + sym_class_body, + [107331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(475), 1, + STATE(3038), 1, sym_statement_block, - [107281] = 3, + [107341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5721), 1, + sym_identifier, + STATE(1943), 1, + sym_nested_identifier, + [107351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5719), 1, anon_sym_LPAREN, - STATE(36), 1, + STATE(56), 1, sym_parenthesized_expression, - [107291] = 2, + [107361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107299] = 3, + ACTIONS(4350), 1, + anon_sym_LBRACE, + STATE(1152), 1, + sym_class_body, + [107371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, - sym_identifier, - ACTIONS(4859), 1, - anon_sym_LBRACK, - [107309] = 3, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(1145), 1, + sym_statement_block, + [107381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym__for_header, - [107319] = 3, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(1030), 1, + sym_statement_block, + [107391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(4350), 1, anon_sym_LBRACE, - STATE(2891), 1, - sym_statement_block, - [107329] = 3, + STATE(1141), 1, + sym_class_body, + [107401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(2282), 1, - sym_enum_body, - [107339] = 3, + STATE(2482), 1, + sym_class_body, + [107411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(2286), 1, - sym_statement_block, - [107349] = 2, + STATE(2483), 1, + sym_class_body, + [107421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107357] = 3, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3180), 1, + sym_formal_parameters, + [107431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4350), 1, anon_sym_LBRACE, - STATE(1573), 1, + STATE(1140), 1, sym_class_body, - [107367] = 3, + [107441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(2362), 1, - sym_enum_body, - [107377] = 3, + STATE(1372), 1, + sym_class_body, + [107451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - STATE(2428), 1, - sym_type_annotation, - [107387] = 3, + ACTIONS(5723), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym__for_header, + [107461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_statement_block, - [107397] = 2, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3175), 1, + sym_formal_parameters, + [107471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107405] = 3, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(5696), 1, + anon_sym_GT, + [107481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(5696), 1, + anon_sym_GT, + [107491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - STATE(2427), 1, - sym_type_annotation, - [107415] = 3, + ACTIONS(5725), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(1569), 1, - sym_statement_block, - [107425] = 3, + STATE(1654), 1, + sym_class_body, + [107509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(1034), 1, + STATE(2493), 1, sym_class_body, - [107435] = 3, + [107519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(1072), 1, + STATE(475), 1, sym_statement_block, - [107445] = 3, + [107529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - STATE(534), 1, - sym_class_body, - [107455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1934), 1, - anon_sym_while, - ACTIONS(5701), 1, - anon_sym_else, - [107465] = 3, + STATE(1357), 1, + sym_statement_block, + [107539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, - sym_identifier, - STATE(2828), 1, - sym_type_parameter, - [107475] = 3, + ACTIONS(5719), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, + [107549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym__for_header, - [107485] = 3, + ACTIONS(5707), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(5727), 1, anon_sym_LBRACE, - STATE(2951), 1, + STATE(1656), 1, sym_statement_block, - [107495] = 3, + [107567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(5727), 1, anon_sym_LBRACE, - STATE(1431), 1, + STATE(1662), 1, sym_statement_block, - [107505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5703), 1, - sym_identifier, - ACTIONS(5705), 1, - anon_sym_STAR, - [107515] = 3, + [107577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_LPAREN, - STATE(29), 1, - sym_parenthesized_expression, - [107525] = 3, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(1123), 1, + sym_statement_block, + [107587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4407), 1, anon_sym_LBRACE, - STATE(1074), 1, + STATE(83), 1, sym_class_body, - [107535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - STATE(2751), 1, - sym_type_annotation, - [107545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5689), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, - [107555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5689), 1, - anon_sym_LPAREN, - STATE(52), 1, - sym_parenthesized_expression, - [107565] = 2, + [107597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4121), 2, + ACTIONS(5729), 2, anon_sym_COMMA, anon_sym_RBRACE, - [107573] = 3, + [107605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - anon_sym_LPAREN, - STATE(47), 1, - sym_parenthesized_expression, - [107583] = 3, + ACTIONS(4358), 1, + anon_sym_LBRACE, + STATE(1664), 1, + sym_class_body, + [107615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5731), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [107623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5733), 1, anon_sym_LPAREN, - STATE(46), 1, + STATE(3065), 1, sym_parenthesized_expression, - [107593] = 3, + [107633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, - sym_identifier, - ACTIONS(4731), 1, - anon_sym_LBRACK, - [107603] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1349), 1, + sym_class_body, + [107643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(4463), 1, anon_sym_LBRACE, - STATE(2898), 1, + STATE(527), 1, sym_statement_block, - [107613] = 3, + [107653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(2420), 1, + STATE(524), 1, sym_class_body, - [107623] = 2, + [107663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107631] = 2, + ACTIONS(2186), 1, + anon_sym_COLON, + STATE(2265), 1, + sym_type_annotation, + [107673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5671), 2, + ACTIONS(4097), 2, anon_sym_COMMA, anon_sym_RBRACE, - [107639] = 3, + [107681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(2903), 1, + STATE(2938), 1, sym_statement_block, - [107649] = 3, + [107691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1332), 1, - sym_class_body, - [107659] = 3, + ACTIONS(4093), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, + ACTIONS(2112), 1, anon_sym_LPAREN, - STATE(1684), 1, + STATE(1528), 1, sym_arguments, - [107669] = 2, + [107709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107677] = 2, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2941), 1, + sym_statement_block, + [107719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107685] = 2, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(1100), 1, + sym_statement_block, + [107729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4081), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107693] = 3, + ACTIONS(4350), 1, + anon_sym_LBRACE, + STATE(1096), 1, + sym_class_body, + [107739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2314), 1, - sym_formal_parameters, - [107703] = 3, + ACTIONS(1926), 1, + anon_sym_while, + ACTIONS(5735), 1, + anon_sym_else, + [107749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1934), 1, + ACTIONS(1926), 1, anon_sym_while, - ACTIONS(5707), 1, + ACTIONS(5737), 1, anon_sym_else, - [107713] = 3, + [107759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(2905), 1, - sym_statement_block, - [107723] = 3, + STATE(2422), 1, + sym_class_body, + [107769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2622), 1, - sym_formal_parameters, - [107733] = 2, + ACTIONS(5739), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [107777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107741] = 3, + ACTIONS(4350), 1, + anon_sym_LBRACE, + STATE(1094), 1, + sym_class_body, + [107787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - STATE(1483), 1, + STATE(1465), 1, sym_statement_block, - [107751] = 2, + [107797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107759] = 3, + ACTIONS(5723), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym__for_header, + [107807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(520), 1, - sym_statement_block, - [107769] = 3, + STATE(1469), 1, + sym_class_body, + [107817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(519), 1, - sym_statement_block, - [107779] = 3, + ACTIONS(5719), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym_parenthesized_expression, + [107827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, - anon_sym_from, - STATE(2972), 1, - sym__from_clause, - [107789] = 3, + ACTIONS(5719), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym_parenthesized_expression, + [107837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2038), 1, - sym_formal_parameters, - [107799] = 3, + ACTIONS(5581), 1, + sym_identifier, + STATE(3061), 1, + sym_type_parameter, + [107847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(3073), 1, + STATE(3292), 1, sym_formal_parameters, - [107809] = 3, + [107857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(5727), 1, anon_sym_LBRACE, - STATE(1427), 1, - sym_class_body, - [107819] = 3, + STATE(1671), 1, + sym_statement_block, + [107867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, - anon_sym_LBRACE, - STATE(1426), 1, - sym_statement_block, - [107829] = 3, + ACTIONS(2106), 1, + anon_sym_LPAREN, + STATE(1066), 1, + sym_arguments, + [107877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2857), 1, - sym_statement_block, - [107839] = 3, + ACTIONS(5741), 1, + sym_identifier, + ACTIONS(5743), 1, + anon_sym_STAR, + [107887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(1386), 1, + STATE(1675), 1, sym_class_body, - [107849] = 2, + [107897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4143), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107857] = 2, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(1047), 1, + sym_statement_block, + [107907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [107865] = 3, + ACTIONS(3405), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [107915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_LBRACE, - STATE(2847), 1, - sym_statement_block, - [107875] = 3, + ACTIONS(5745), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [107923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(2970), 1, anon_sym_LBRACE, - STATE(559), 1, - sym_enum_body, - [107885] = 2, + STATE(1035), 1, + sym_statement_block, + [107933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [107893] = 3, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(526), 1, + sym_statement_block, + [107943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(517), 1, - sym_class_body, - [107903] = 3, + STATE(528), 1, + sym_statement_block, + [107953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(1493), 1, - sym_arguments, - [107913] = 3, + STATE(2288), 1, + sym_formal_parameters, + [107963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2632), 1, + STATE(2567), 1, sym_formal_parameters, - [107923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5711), 1, - sym_identifier, - STATE(1537), 1, - sym_nested_identifier, - [107933] = 3, + [107973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4350), 1, anon_sym_LBRACE, - STATE(1463), 1, + STATE(1039), 1, sym_class_body, - [107943] = 2, + [107983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107951] = 3, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(525), 1, + sym_statement_block, + [107993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5715), 1, + ACTIONS(5747), 1, sym_identifier, - STATE(2713), 1, + STATE(1963), 1, sym_nested_identifier, - [107961] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5717), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [107969] = 3, + [108003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, - anon_sym_LBRACE, - STATE(518), 1, - sym_statement_block, - [107979] = 3, + ACTIONS(5749), 1, + sym_identifier, + STATE(2827), 1, + sym_nested_identifier, + [108013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5719), 1, - sym_identifier, - ACTIONS(5721), 1, - anon_sym_STAR, - [107989] = 3, + ACTIONS(5174), 1, + anon_sym_from, + STATE(2943), 1, + sym__from_clause, + [108023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, - anon_sym_LBRACE, - STATE(2382), 1, - sym_class_body, - [107999] = 3, + ACTIONS(5751), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [108031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5723), 1, - sym_identifier, - STATE(1961), 1, - sym_nested_identifier, - [108009] = 3, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3118), 1, + sym_formal_parameters, + [108041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 1, + ACTIONS(5753), 1, sym_identifier, - STATE(2756), 1, + STATE(1545), 1, sym_nested_identifier, - [108019] = 3, + [108051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(528), 1, + STATE(1329), 1, sym_class_body, - [108029] = 2, + [108061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5727), 2, + ACTIONS(5214), 2, anon_sym_COMMA, anon_sym_RBRACE, - [108037] = 3, + [108069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, - anon_sym_LBRACE, - STATE(1338), 1, - sym_statement_block, - [108047] = 3, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(5620), 1, + anon_sym_GT, + [108079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, - anon_sym_LBRACE, - STATE(98), 1, - sym_class_body, - [108057] = 3, + ACTIONS(5755), 1, + sym_identifier, + STATE(1072), 1, + sym_nested_identifier, + [108089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3210), 1, - sym_formal_parameters, - [108067] = 3, + ACTIONS(5757), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [108097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(1678), 1, - sym_class_body, - [108077] = 3, + ACTIONS(4079), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3315), 1, + sym_formal_parameters, + [108115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(1037), 1, - sym_class_body, - [108087] = 2, + STATE(2955), 1, + sym_statement_block, + [108125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5729), 2, + ACTIONS(4083), 2, anon_sym_COMMA, anon_sym_RBRACE, - [108095] = 3, + [108133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(897), 1, - anon_sym_LBRACE, - STATE(95), 1, - sym_statement_block, - [108105] = 3, + ACTIONS(5759), 1, + sym_identifier, + ACTIONS(5761), 1, + anon_sym_STAR, + [108143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, - anon_sym_LBRACE, - STATE(1676), 1, - sym_statement_block, - [108115] = 3, + ACTIONS(2322), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5113), 2, + anon_sym_COMMA, + anon_sym_GT, + [108159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(1664), 1, + STATE(2963), 1, sym_statement_block, - [108125] = 3, + [108169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(5763), 1, anon_sym_LBRACE, - STATE(3030), 1, - sym_statement_block, - [108135] = 3, + STATE(2368), 1, + sym_enum_body, + [108179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_GT, - [108145] = 3, + ACTIONS(5765), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 1, + ACTIONS(2186), 1, anon_sym_COLON, - ACTIONS(5557), 1, - anon_sym_GT, - [108155] = 3, + STATE(2403), 1, + sym_type_annotation, + [108197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2563), 1, + STATE(2550), 1, sym_formal_parameters, - [108165] = 3, + [108207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, - anon_sym_LPAREN, - STATE(1654), 1, - sym_arguments, - [108175] = 3, + ACTIONS(2186), 1, + anon_sym_COLON, + STATE(2415), 1, + sym_type_annotation, + [108217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4463), 1, anon_sym_LBRACE, - STATE(2451), 1, + STATE(2457), 1, sym_statement_block, - [108185] = 3, + [108227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(3008), 1, + STATE(573), 1, sym_statement_block, - [108195] = 2, + [108237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 1, + anon_sym_LPAREN, + STATE(1098), 1, + sym_arguments, + [108247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4085), 2, + ACTIONS(5767), 2, anon_sym_COMMA, anon_sym_RBRACE, - [108203] = 3, + [108255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_class_body, - [108213] = 3, + ACTIONS(4087), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2384), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, + ACTIONS(4696), 2, anon_sym_LBRACE, - STATE(1040), 1, - sym_statement_block, - [108223] = 3, + anon_sym_EQ_GT, + [108279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(1506), 1, sym_class_body, - [108233] = 3, + [108289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4853), 1, + sym_identifier, + ACTIONS(4855), 1, + anon_sym_LBRACK, + [108299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, + ACTIONS(5763), 1, anon_sym_LBRACE, - STATE(1067), 1, - sym_statement_block, - [108243] = 3, + STATE(2498), 1, + sym_enum_body, + [108309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(4463), 1, anon_sym_LBRACE, - STATE(521), 1, + STATE(2467), 1, sym_statement_block, - [108253] = 3, + [108319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(4463), 1, anon_sym_LBRACE, - STATE(1533), 1, + STATE(2488), 1, sym_statement_block, - [108263] = 3, + [108329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(1644), 1, - sym_class_body, - [108273] = 3, + ACTIONS(4101), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(5727), 1, anon_sym_LBRACE, - STATE(2461), 1, + STATE(1640), 1, sym_statement_block, - [108283] = 3, + [108347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, - anon_sym_from, - STATE(2837), 1, - sym__from_clause, - [108293] = 3, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(1134), 1, + sym_statement_block, + [108357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(1065), 1, - sym_class_body, - [108303] = 3, + STATE(2974), 1, + sym_statement_block, + [108367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 1, - anon_sym_LPAREN, - STATE(2137), 1, - sym_formal_parameters, - [108313] = 2, + ACTIONS(5174), 1, + anon_sym_from, + STATE(3015), 1, + sym__from_clause, + [108377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5731), 2, + ACTIONS(5769), 2, sym__automatic_semicolon, anon_sym_SEMI, - [108321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(1639), 1, - sym_class_body, - [108331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 1, - anon_sym_LBRACE, - STATE(1044), 1, - sym_statement_block, - [108341] = 3, + [108385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(4350), 1, anon_sym_LBRACE, - STATE(2305), 1, + STATE(1137), 1, sym_class_body, - [108351] = 3, + [108395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - STATE(1610), 1, + STATE(1498), 1, sym_statement_block, - [108361] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5733), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108369] = 3, + [108405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2181), 1, - anon_sym_COLON, - STATE(2436), 1, - sym_type_annotation, - [108379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5383), 1, + ACTIONS(5581), 1, sym_identifier, - STATE(3007), 1, + STATE(2801), 1, sym_type_parameter, - [108389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4396), 1, - anon_sym_LBRACE, - STATE(2295), 1, - sym_class_body, - [108399] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2386), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108407] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5735), 2, - anon_sym_COMMA, - anon_sym_RPAREN, [108415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 1, - anon_sym_LPAREN, - STATE(1048), 1, - sym_arguments, - [108425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(1064), 1, + STATE(1636), 1, sym_class_body, - [108435] = 3, + [108425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1348), 1, - sym_class_body, - [108445] = 2, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(5512), 1, + anon_sym_GT, + [108435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5737), 2, + ACTIONS(4105), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [108453] = 3, + anon_sym_RBRACE, + [108443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5739), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(573), 1, - sym_switch_body, - [108463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5741), 1, - sym_identifier, - STATE(1623), 1, - sym_nested_identifier, - [108473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5691), 1, - anon_sym_LPAREN, - STATE(38), 1, - sym__for_header, - [108483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5743), 1, - sym_identifier, - STATE(500), 1, - sym_nested_identifier, - [108493] = 2, + STATE(2980), 1, + sym_statement_block, + [108453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5745), 2, + ACTIONS(4111), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [108501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [108509] = 3, + anon_sym_RBRACE, + [108461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - STATE(1581), 1, + STATE(1490), 1, sym_statement_block, - [108519] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5747), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [108527] = 3, + [108471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 1, + ACTIONS(4708), 1, sym_identifier, - ACTIONS(5751), 1, - anon_sym_STAR, - [108537] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5753), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108545] = 3, + ACTIONS(4710), 1, + anon_sym_LBRACK, + [108481] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4225), 1, anon_sym_DOT, - ACTIONS(5387), 1, + ACTIONS(5512), 1, anon_sym_GT, - [108555] = 2, + [108491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 2, + ACTIONS(4075), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [108563] = 3, + anon_sym_RBRACE, + [108499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(1496), 1, + STATE(1489), 1, sym_class_body, - [108573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4695), 1, - sym_identifier, - ACTIONS(4697), 1, - anon_sym_LBRACK, - [108583] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5757), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [108591] = 3, + [108509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - STATE(552), 1, - sym_enum_body, - [108601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5759), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108609] = 3, + STATE(1491), 1, + sym_statement_block, + [108519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(5771), 1, anon_sym_LBRACE, STATE(547), 1, + sym_enum_body, + [108529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2940), 1, + anon_sym_LBRACE, + STATE(1492), 1, sym_statement_block, - [108619] = 2, + [108539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5761), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108627] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1496), 1, + sym_class_body, + [108549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(5404), 1, - anon_sym_GT, - [108637] = 3, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(533), 1, + sym_statement_block, + [108559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - sym_identifier, - ACTIONS(5765), 1, - anon_sym_STAR, - [108647] = 3, + ACTIONS(2112), 1, + anon_sym_LPAREN, + STATE(1472), 1, + sym_arguments, + [108569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, - anon_sym_LBRACE, - STATE(2486), 1, - sym_class_body, - [108657] = 3, + ACTIONS(4129), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(1503), 1, + STATE(2896), 1, sym_statement_block, - [108667] = 3, + [108587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1519), 1, - sym_class_body, - [108677] = 2, + ACTIONS(2336), 1, + anon_sym_LPAREN, + STATE(2055), 1, + sym_formal_parameters, + [108597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5767), 2, + ACTIONS(4125), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [108685] = 3, + anon_sym_RBRACE, + [108605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(5404), 1, - anon_sym_GT, - [108695] = 3, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2894), 1, + sym_statement_block, + [108615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4423), 1, anon_sym_LBRACE, - STATE(1053), 1, + STATE(530), 1, sym_class_body, - [108705] = 3, + [108625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, + ACTIONS(4463), 1, anon_sym_LBRACE, - STATE(1057), 1, + STATE(531), 1, sym_statement_block, - [108715] = 2, + [108635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5769), 2, - anon_sym_COMMA, - anon_sym_GT, - [108723] = 2, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(529), 1, + sym_class_body, + [108645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5460), 2, - anon_sym_COMMA, - anon_sym_GT, - [108731] = 2, + ACTIONS(2919), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym_class_body, + [108663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 2, + ACTIONS(5773), 2, anon_sym_COMMA, anon_sym_RBRACE, - [108739] = 3, + [108671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(1585), 1, - sym_class_body, - [108749] = 3, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2576), 1, + sym_formal_parameters, + [108681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(1595), 1, - sym_class_body, - [108759] = 3, + ACTIONS(5775), 1, + sym_identifier, + STATE(501), 1, + sym_nested_identifier, + [108691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, - anon_sym_LBRACE, - STATE(1435), 1, - sym_statement_block, - [108769] = 3, + ACTIONS(2634), 1, + sym_jsx_identifier, + ACTIONS(5777), 1, + sym_identifier, + [108701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3196), 1, - sym_formal_parameters, - [108779] = 3, + ACTIONS(5779), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [108709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, + ACTIONS(5781), 1, anon_sym_LBRACE, - STATE(1607), 1, - sym_statement_block, - [108789] = 2, + STATE(575), 1, + sym_switch_body, + [108719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108797] = 3, + ACTIONS(5783), 1, + sym_identifier, + ACTIONS(5785), 1, + anon_sym_STAR, + [108729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - STATE(1608), 1, + STATE(1423), 1, sym_statement_block, - [108807] = 3, + [108739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5771), 1, - sym_identifier, - STATE(1941), 1, - sym_nested_identifier, - [108817] = 3, + ACTIONS(5727), 1, + anon_sym_LBRACE, + STATE(1645), 1, + sym_statement_block, + [108749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4698), 2, anon_sym_LBRACE, - STATE(1609), 1, - sym_class_body, - [108827] = 2, + anon_sym_EQ_GT, + [108757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108835] = 3, + ACTIONS(4407), 1, + anon_sym_LBRACE, + STATE(84), 1, + sym_class_body, + [108767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3268), 1, - sym_formal_parameters, - [108845] = 3, + ACTIONS(4362), 1, + anon_sym_LBRACE, + STATE(1450), 1, + sym_class_body, + [108777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(5723), 1, anon_sym_LPAREN, - STATE(3292), 1, - sym_formal_parameters, - [108855] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5775), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108863] = 2, + STATE(30), 1, + sym__for_header, + [108787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 2, + ACTIONS(5787), 2, sym__automatic_semicolon, anon_sym_SEMI, - [108871] = 3, + [108795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(87), 1, + STATE(1632), 1, sym_class_body, - [108881] = 3, + [108805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3250), 1, - sym_formal_parameters, - [108891] = 3, + ACTIONS(5789), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3245), 1, - sym_formal_parameters, - [108901] = 3, + ACTIONS(5174), 1, + anon_sym_from, + STATE(3051), 1, + sym__from_clause, + [108823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(5449), 1, - anon_sym_GT, - [108911] = 3, + ACTIONS(5791), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(5449), 1, + ACTIONS(4225), 1, + anon_sym_DOT, + ACTIONS(5529), 1, anon_sym_GT, - [108921] = 3, + [108841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5777), 1, + ACTIONS(2122), 1, anon_sym_LPAREN, - STATE(2996), 1, - sym_parenthesized_expression, - [108931] = 3, + STATE(1628), 1, + sym_arguments, + [108851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 1, + ACTIONS(4307), 1, anon_sym_COLON, - ACTIONS(5387), 1, + ACTIONS(5529), 1, anon_sym_GT, - [108941] = 2, + [108861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4075), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108949] = 3, + ACTIONS(5793), 1, + sym_identifier, + ACTIONS(5795), 1, + anon_sym_STAR, + [108871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(3214), 1, + STATE(2537), 1, sym_formal_parameters, - [108959] = 2, + [108881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108967] = 3, + ACTIONS(1744), 1, + anon_sym_LBRACE, + STATE(2976), 1, + sym_statement_block, + [108891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3189), 1, - sym_formal_parameters, - [108977] = 3, + ACTIONS(5771), 1, + anon_sym_LBRACE, + STATE(543), 1, + sym_enum_body, + [108901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(5727), 1, anon_sym_LBRACE, - STATE(2919), 1, + STATE(1622), 1, sym_statement_block, - [108987] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3393), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [108995] = 3, + [108911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, + ACTIONS(5727), 1, anon_sym_LBRACE, - STATE(565), 1, + STATE(1616), 1, sym_statement_block, - [109005] = 3, + [108921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(515), 1, + STATE(1619), 1, sym_class_body, - [109015] = 3, + [108931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(4401), 1, anon_sym_LBRACE, - STATE(529), 1, + STATE(583), 1, sym_class_body, - [109025] = 3, + [108941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(532), 1, - sym_statement_block, - [109035] = 3, + STATE(1431), 1, + sym_class_body, + [108951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, + ACTIONS(907), 1, anon_sym_LBRACE, - STATE(1618), 1, + STATE(102), 1, sym_statement_block, - [109045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4352), 1, - anon_sym_LBRACE, - STATE(1630), 1, - sym_class_body, - [109055] = 3, + [108961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3123), 1, - sym_formal_parameters, - [109065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5352), 2, - anon_sym_COMMA, - anon_sym_GT, - [109073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1432), 1, - sym_class_body, - [109083] = 3, + ACTIONS(5797), 1, + sym_identifier, + STATE(2767), 1, + sym_nested_identifier, + [108971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1362), 1, - sym_class_body, - [109093] = 3, + ACTIONS(2086), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [108979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - STATE(1547), 1, + STATE(1539), 1, sym_statement_block, - [109103] = 3, + [108989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4358), 1, anon_sym_LBRACE, - STATE(1051), 1, + STATE(1610), 1, sym_class_body, - [109113] = 3, + [108999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(897), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(84), 1, + STATE(2991), 1, sym_statement_block, - [109123] = 3, + [109009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, - anon_sym_LBRACE, - STATE(1066), 1, - sym_statement_block, - [109133] = 3, + ACTIONS(2098), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(3107), 1, + STATE(3248), 1, sym_formal_parameters, - [109143] = 3, + [109027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, + ACTIONS(5581), 1, sym_identifier, - STATE(2730), 1, + STATE(2771), 1, sym_type_parameter, - [109153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 1, - anon_sym_LBRACE, - STATE(575), 1, - sym_class_body, - [109163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2666), 1, - sym_jsx_identifier, - ACTIONS(5779), 1, - sym_identifier, - [109173] = 3, + [109037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(1744), 1, anon_sym_LBRACE, - STATE(2270), 1, - sym_class_body, - [109183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(3155), 1, - sym_formal_parameters, - [109193] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5781), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [109201] = 2, + STATE(2988), 1, + sym_statement_block, + [109047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 2, + ACTIONS(4115), 2, anon_sym_COMMA, anon_sym_RBRACE, - [109209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4550), 1, - anon_sym_LPAREN, - STATE(2618), 1, - sym_formal_parameters, - [109219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5785), 1, - sym_identifier, - STATE(1157), 1, - sym_nested_identifier, - [109229] = 3, + [109055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4362), 1, anon_sym_LBRACE, - STATE(1548), 1, + STATE(1515), 1, sym_class_body, - [109239] = 3, + [109065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, - anon_sym_LBRACE, - STATE(93), 1, - sym_class_body, - [109249] = 3, + ACTIONS(5799), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [109073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(2940), 1, anon_sym_LBRACE, - STATE(1359), 1, + STATE(1524), 1, sym_statement_block, - [109259] = 3, + [109083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_DOT, - ACTIONS(5389), 1, - anon_sym_GT, - [109269] = 3, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3227), 1, + sym_formal_parameters, + [109093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 1, - anon_sym_COLON, - ACTIONS(5389), 1, - anon_sym_GT, - [109279] = 3, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3209), 1, + sym_formal_parameters, + [109103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(3104), 1, + STATE(3181), 1, sym_formal_parameters, - [109289] = 3, + [109113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2637), 1, + STATE(3321), 1, sym_formal_parameters, - [109299] = 3, + [109123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4522), 1, anon_sym_LPAREN, - STATE(2573), 1, + STATE(3072), 1, sym_formal_parameters, - [109309] = 3, + [109133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, - anon_sym_LBRACE, - STATE(1501), 1, - sym_statement_block, - [109319] = 2, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3094), 1, + sym_formal_parameters, + [109143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5787), 1, - anon_sym_RBRACK, - [109326] = 2, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(5620), 1, + anon_sym_GT, + [109153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, - anon_sym_as, - [109333] = 2, + ACTIONS(5801), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, - anon_sym_SLASH2, - [109340] = 2, + ACTIONS(5803), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5793), 1, - anon_sym_COLON, - [109347] = 2, + ACTIONS(5805), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5795), 1, - anon_sym_EQ_GT, - [109354] = 2, + ACTIONS(2122), 1, + anon_sym_LPAREN, + STATE(1560), 1, + sym_arguments, + [109187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, - sym_identifier, - [109361] = 2, + ACTIONS(4407), 1, + anon_sym_LBRACE, + STATE(101), 1, + sym_class_body, + [109197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5389), 1, - anon_sym_GT, - [109368] = 2, - ACTIONS(4404), 1, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3141), 1, + sym_formal_parameters, + [109207] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - sym_regex_pattern, - [109375] = 2, + ACTIONS(3417), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3201), 1, - anon_sym_RPAREN, - [109382] = 2, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3084), 1, + sym_formal_parameters, + [109225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5801), 1, - anon_sym_RPAREN, - [109389] = 2, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3208), 1, + sym_formal_parameters, + [109235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5803), 1, - anon_sym_GT, - [109396] = 2, + ACTIONS(2186), 1, + anon_sym_COLON, + STATE(2766), 1, + sym_type_annotation, + [109245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - sym_identifier, - [109403] = 2, + ACTIONS(3302), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5807), 1, - sym_identifier, - [109410] = 2, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2624), 1, + sym_formal_parameters, + [109263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5809), 1, - anon_sym_COLON, - [109417] = 2, + ACTIONS(5575), 2, + anon_sym_COMMA, + anon_sym_GT, + [109271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 1, - anon_sym_RBRACK, - [109424] = 2, + ACTIONS(5807), 2, + anon_sym_COMMA, + anon_sym_GT, + [109279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5811), 1, + ACTIONS(5809), 1, sym_identifier, - [109431] = 2, + STATE(1582), 1, + sym_nested_identifier, + [109289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5813), 1, - anon_sym_SLASH2, - [109438] = 2, + ACTIONS(5727), 1, + anon_sym_LBRACE, + STATE(1613), 1, + sym_statement_block, + [109299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 1, - anon_sym_DOT, - [109445] = 2, + ACTIONS(5811), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [109307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, - anon_sym_DOT, - [109452] = 2, + ACTIONS(5813), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [109315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5815), 1, - sym_number, - [109459] = 2, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(3269), 1, + sym_formal_parameters, + [109325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5817), 1, - sym_identifier, - [109466] = 2, + ACTIONS(4522), 1, + anon_sym_LPAREN, + STATE(2616), 1, + sym_formal_parameters, + [109335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5819), 1, - anon_sym_GT, - [109473] = 2, + ACTIONS(5815), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [109343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3486), 1, - anon_sym_RBRACK, - [109480] = 2, + ACTIONS(5817), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [109351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5819), 1, + anon_sym_as, + [109358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5821), 1, anon_sym_EQ_GT, - [109487] = 2, + [109365] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5823), 1, - anon_sym_GT, - [109494] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5435), 1, - anon_sym_LBRACE, - [109501] = 2, + anon_sym_RPAREN, + [109372] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5825), 1, - anon_sym_GT, - [109508] = 2, + anon_sym_target, + [109379] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5827), 1, - sym_identifier, - [109515] = 2, + anon_sym_GT, + [109386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5829), 1, - anon_sym_EQ_GT, - [109522] = 2, + sym_number, + [109393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5831), 1, - anon_sym_GT, - [109529] = 2, - ACTIONS(3), 1, + anon_sym_COLON, + [109400] = 2, + ACTIONS(4415), 1, sym_comment, ACTIONS(5833), 1, - anon_sym_EQ_GT, - [109536] = 2, + sym_regex_pattern, + [109407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5835), 1, - sym_identifier, - [109543] = 2, + anon_sym_GT, + [109414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5837), 1, - sym_identifier, - [109550] = 2, + anon_sym_EQ_GT, + [109421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5839), 1, - anon_sym_DOT, - [109557] = 2, + sym_identifier, + [109428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5841), 1, - sym_identifier, - [109564] = 2, + anon_sym_GT, + [109435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3507), 1, + anon_sym_RBRACK, + [109442] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5843), 1, anon_sym_EQ_GT, - [109571] = 2, - ACTIONS(4404), 1, - sym_comment, - ACTIONS(5845), 1, - sym_regex_pattern, - [109578] = 2, + [109449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 1, - anon_sym_EQ_GT, - [109585] = 2, + ACTIONS(5845), 1, + sym_identifier, + [109456] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5847), 1, - anon_sym_EQ_GT, - [109592] = 2, + sym_identifier, + [109463] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5849), 1, - anon_sym_EQ_GT, - [109599] = 2, + anon_sym_GT, + [109470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3506), 1, - anon_sym_DOT, - [109606] = 2, + ACTIONS(5851), 1, + anon_sym_RPAREN, + [109477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5851), 1, - sym_identifier, - [109613] = 2, + ACTIONS(2826), 1, + anon_sym_DOT, + [109484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5449), 1, - anon_sym_GT, - [109620] = 2, + ACTIONS(4281), 1, + anon_sym_DOT, + [109491] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5853), 1, - anon_sym_COLON, - [109627] = 2, + sym_identifier, + [109498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5855), 1, - anon_sym_GT, - [109634] = 2, + anon_sym_RBRACK, + [109505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5857), 1, - anon_sym_EQ_GT, - [109641] = 2, + sym_identifier, + [109512] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5859), 1, anon_sym_EQ_GT, - [109648] = 2, + [109519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5861), 1, - anon_sym_EQ_GT, - [109655] = 2, + anon_sym_from, + [109526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5863), 1, - anon_sym_while, - [109662] = 2, + sym_identifier, + [109533] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5865), 1, - anon_sym_EQ_GT, - [109669] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5094), 1, - anon_sym_EQ_GT, - [109676] = 2, + anon_sym_LPAREN, + [109540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5867), 1, - anon_sym_EQ_GT, - [109683] = 2, + sym_identifier, + [109547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5869), 1, - anon_sym_GT, - [109690] = 2, + sym_identifier, + [109554] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5871), 1, - anon_sym_GT, - [109697] = 2, + anon_sym_RPAREN, + [109561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5873), 1, - anon_sym_EQ_GT, - [109704] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3273), 1, - anon_sym_RPAREN, - [109711] = 2, + anon_sym_require, + [109568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5875), 1, - anon_sym_class, - [109718] = 2, + anon_sym_EQ_GT, + [109575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5404), 1, - anon_sym_GT, - [109725] = 2, + ACTIONS(3047), 1, + anon_sym_RPAREN, + [109582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5877), 1, - anon_sym_target, - [109732] = 2, + anon_sym_DOT, + [109589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5879), 1, - sym_identifier, - [109739] = 2, + anon_sym_from, + [109596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5881), 1, anon_sym_EQ_GT, - [109746] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3510), 1, - anon_sym_RBRACK, - [109753] = 2, + [109603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5883), 1, - anon_sym_namespace, - [109760] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4695), 1, - sym_identifier, - [109767] = 2, + anon_sym_while, + [109610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5885), 1, - anon_sym_GT, - [109774] = 2, + anon_sym_from, + [109617] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5887), 1, + anon_sym_EQ_GT, + [109624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5889), 1, anon_sym_GT, - [109781] = 2, + [109631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5889), 1, - sym_identifier, - [109788] = 2, + ACTIONS(3531), 1, + anon_sym_DOT, + [109638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5891), 1, - sym_identifier, - [109795] = 2, + anon_sym_SLASH2, + [109645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5893), 1, anon_sym_from, - [109802] = 2, + [109652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5895), 1, - anon_sym_COLON, - [109809] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3114), 1, - anon_sym_RPAREN, - [109816] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3536), 1, - anon_sym_RBRACK, - [109823] = 2, + sym_number, + [109659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5897), 1, anon_sym_EQ_GT, - [109830] = 2, + [109666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5387), 1, + ACTIONS(5620), 1, anon_sym_GT, - [109837] = 2, - ACTIONS(3), 1, + [109673] = 2, + ACTIONS(4415), 1, sym_comment, ACTIONS(5899), 1, - anon_sym_EQ_GT, - [109844] = 2, + sym_regex_pattern, + [109680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5901), 1, anon_sym_EQ_GT, - [109851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3542), 1, - anon_sym_COLON, - [109858] = 2, + [109687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5903), 1, sym_identifier, - [109865] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 1, - anon_sym_RPAREN, - [109872] = 2, + [109694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, - anon_sym_RPAREN, - [109879] = 2, + ACTIONS(3516), 1, + anon_sym_RBRACK, + [109701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 1, + ACTIONS(3231), 1, anon_sym_RPAREN, - [109886] = 2, + [109708] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5905), 1, - anon_sym_EQ, - [109893] = 2, + sym_identifier, + [109715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 1, - anon_sym_RBRACE, - [109900] = 2, + ACTIONS(5907), 1, + anon_sym_EQ_GT, + [109722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5907), 1, - anon_sym_EQ, - [109907] = 2, + ACTIONS(3540), 1, + anon_sym_RBRACK, + [109729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5909), 1, - sym_identifier, - [109914] = 2, + anon_sym_COLON, + [109736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5911), 1, - sym_identifier, - [109921] = 2, + anon_sym_COLON, + [109743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5913), 1, - anon_sym_EQ_GT, - [109928] = 2, + anon_sym_class, + [109750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5915), 1, - anon_sym_RPAREN, - [109935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3561), 1, - anon_sym_RPAREN, - [109942] = 2, + sym_identifier, + [109757] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5917), 1, - anon_sym_COLON, - [109949] = 2, + anon_sym_EQ_GT, + [109764] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5919), 1, - anon_sym_GT, - [109956] = 2, + anon_sym_EQ_GT, + [109771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5921), 1, - sym_identifier, - [109963] = 2, + anon_sym_EQ_GT, + [109778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5923), 1, anon_sym_EQ_GT, - [109970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3563), 1, - anon_sym_RPAREN, - [109977] = 2, + [109785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5925), 1, - sym_number, - [109984] = 2, + anon_sym_namespace, + [109792] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5927), 1, anon_sym_EQ_GT, - [109991] = 2, + [109799] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 1, + anon_sym_LBRACE, + [109806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 1, + anon_sym_RBRACK, + [109813] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3579), 1, + anon_sym_RBRACK, + [109820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5929), 1, sym_identifier, - [109998] = 2, + [109827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5931), 1, - anon_sym_EQ_GT, - [110005] = 2, + sym_identifier, + [109834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5933), 1, - anon_sym_RPAREN, - [110012] = 2, + sym_identifier, + [109841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5935), 1, - anon_sym_GT, - [110019] = 2, + anon_sym_EQ_GT, + [109848] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4067), 1, + anon_sym_EQ_GT, + [109855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5937), 1, - anon_sym_RPAREN, - [110026] = 2, + anon_sym_EQ_GT, + [109862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5529), 1, + anon_sym_GT, + [109869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5939), 1, - anon_sym_RPAREN, - [110033] = 2, + anon_sym_EQ_GT, + [109876] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5941), 1, - anon_sym_RPAREN, - [110040] = 2, + anon_sym_EQ_GT, + [109883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5943), 1, + anon_sym_SLASH2, + [109890] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5233), 1, anon_sym_EQ_GT, - [110047] = 2, + [109897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5945), 1, anon_sym_EQ_GT, - [110054] = 2, + [109904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5947), 1, - anon_sym_GT, - [110061] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3579), 1, - anon_sym_RBRACK, - [110068] = 2, + sym_identifier, + [109911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5949), 1, - anon_sym_from, - [110075] = 2, + sym_identifier, + [109918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5951), 1, - anon_sym_LPAREN, - [110082] = 2, + anon_sym_EQ, + [109925] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5953), 1, - anon_sym_EQ_GT, - [110089] = 2, + anon_sym_target, + [109932] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5955), 1, - anon_sym_GT, - [110096] = 2, + anon_sym_EQ, + [109939] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3535), 1, + anon_sym_RBRACE, + [109946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5957), 1, - anon_sym_GT, - [110103] = 2, + anon_sym_from, + [109953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3492), 1, + anon_sym_RBRACK, + [109960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3056), 1, + anon_sym_RPAREN, + [109967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5959), 1, - anon_sym_EQ_GT, - [110110] = 2, + sym_identifier, + [109974] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5961), 1, - anon_sym_RBRACE, - [110117] = 2, + anon_sym_GT, + [109981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5963), 1, - anon_sym_require, - [110124] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 1, - anon_sym_RBRACK, - [110131] = 2, + sym_identifier, + [109988] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5965), 1, - sym_identifier, - [110138] = 2, + anon_sym_EQ_GT, + [109995] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5967), 1, - anon_sym_from, - [110145] = 2, + anon_sym_EQ_GT, + [110002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5488), 1, - anon_sym_from, - [110152] = 2, + ACTIONS(5969), 1, + sym_identifier, + [110009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(4708), 1, sym_identifier, - [110159] = 2, + [110016] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_GT, + [110023] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5971), 1, - anon_sym_EQ_GT, - [110166] = 2, + sym_identifier, + [110030] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5973), 1, - anon_sym_from, - [110173] = 2, + anon_sym_EQ_GT, + [110037] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5975), 1, - anon_sym_from, - [110180] = 2, + sym_identifier, + [110044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - anon_sym_EQ_GT, - [110187] = 2, + ACTIONS(4748), 1, + sym_identifier, + [110051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 1, - anon_sym_DOT, - [110194] = 2, + ACTIONS(3571), 1, + anon_sym_RBRACK, + [110058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, - sym_identifier, - [110201] = 2, + ACTIONS(3575), 1, + anon_sym_RBRACE, + [110065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5981), 1, - sym_identifier, - [110208] = 2, + ACTIONS(5977), 1, + anon_sym_RBRACE, + [110072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5983), 1, + ACTIONS(5979), 1, anon_sym_EQ_GT, - [110215] = 2, + [110079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5985), 1, - sym_identifier, - [110222] = 2, + ACTIONS(5981), 1, + anon_sym_EQ_GT, + [110086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 1, + ACTIONS(5983), 1, anon_sym_GT, - [110229] = 2, + [110093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3495), 1, + ACTIONS(3113), 1, anon_sym_RPAREN, - [110236] = 2, + [110100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_RBRACK, - [110243] = 2, + ACTIONS(5985), 1, + anon_sym_EQ_GT, + [110107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5989), 1, + ACTIONS(5987), 1, sym_identifier, - [110250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5991), 1, - anon_sym_EQ, - [110257] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5557), 1, - anon_sym_GT, - [110264] = 2, + [110114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 1, - anon_sym_RBRACK, - [110271] = 2, + ACTIONS(5989), 1, + anon_sym_EQ_GT, + [110121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 1, - anon_sym_RBRACK, - [110278] = 2, + ACTIONS(5991), 1, + anon_sym_EQ_GT, + [110128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5993), 1, - anon_sym_EQ_GT, - [110285] = 2, + sym_identifier, + [110135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5995), 1, - sym_identifier, - [110292] = 2, + anon_sym_from, + [110142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5997), 1, - sym_number, - [110299] = 2, + sym_identifier, + [110149] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5999), 1, - anon_sym_EQ_GT, - [110306] = 2, + anon_sym_SLASH2, + [110156] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6001), 1, - anon_sym_EQ_GT, - [110313] = 2, + sym_identifier, + [110163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6003), 1, - sym_identifier, - [110320] = 2, + anon_sym_EQ_GT, + [110170] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_from, + [110177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6005), 1, - sym_identifier, - [110327] = 2, + anon_sym_EQ_GT, + [110184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3567), 1, + anon_sym_RBRACK, + [110191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6007), 1, - sym_identifier, - [110334] = 2, + anon_sym_EQ_GT, + [110198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6009), 1, - anon_sym_EQ_GT, - [110341] = 2, + anon_sym_target, + [110205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4853), 1, + sym_identifier, + [110212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6011), 1, sym_identifier, - [110348] = 2, + [110219] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6013), 1, - sym_number, - [110355] = 2, + anon_sym_EQ_GT, + [110226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 1, - anon_sym_RBRACE, - [110362] = 2, + ACTIONS(4754), 1, + sym_identifier, + [110233] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6015), 1, sym_identifier, - [110369] = 2, + [110240] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6017), 1, - sym_identifier, - [110376] = 2, + anon_sym_GT, + [110247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6019), 1, - anon_sym_function, - [110383] = 2, + ACTIONS(3520), 1, + anon_sym_COLON, + [110254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6021), 1, - sym_identifier, - [110390] = 2, + ACTIONS(6019), 1, + anon_sym_EQ_GT, + [110261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 1, - sym_identifier, - [110397] = 2, + ACTIONS(6021), 1, + anon_sym_GT, + [110268] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6023), 1, - sym_identifier, - [110404] = 2, + anon_sym_GT, + [110275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6025), 1, - sym_identifier, - [110411] = 2, + anon_sym_GT, + [110282] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6027), 1, - sym_identifier, - [110418] = 2, + anon_sym_EQ_GT, + [110289] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6029), 1, - anon_sym_EQ_GT, - [110425] = 2, + sym_identifier, + [110296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6031), 1, - anon_sym_from, - [110432] = 2, + sym_identifier, + [110303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6033), 1, - sym_identifier, - [110439] = 2, + anon_sym_EQ_GT, + [110310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6035), 1, - sym_identifier, - [110446] = 2, + anon_sym_EQ_GT, + [110317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6037), 1, - anon_sym_GT, - [110453] = 2, + anon_sym_EQ_GT, + [110324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6039), 1, - anon_sym_RPAREN, - [110460] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6041), 1, - anon_sym_namespace, - [110467] = 2, + sym_identifier, + [110331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6043), 1, - anon_sym_EQ_GT, - [110474] = 2, + ACTIONS(3546), 1, + anon_sym_RPAREN, + [110338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3530), 1, + ACTIONS(3548), 1, anon_sym_RPAREN, - [110481] = 2, + [110345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3528), 1, + ACTIONS(3550), 1, anon_sym_RPAREN, - [110488] = 2, + [110352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 1, + ACTIONS(3552), 1, anon_sym_RPAREN, - [110495] = 2, + [110359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3512), 1, - anon_sym_RPAREN, - [110502] = 2, + ACTIONS(6041), 1, + anon_sym_LBRACE, + [110366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6045), 1, + ACTIONS(6043), 1, anon_sym_RPAREN, - [110509] = 2, + [110373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, - anon_sym_DOT, - [110516] = 2, + ACTIONS(6045), 1, + sym_identifier, + [110380] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3544), 1, - anon_sym_RBRACE, - [110523] = 2, + ACTIONS(6047), 1, + anon_sym_EQ_GT, + [110387] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6047), 1, + ACTIONS(4682), 1, sym_identifier, - [110530] = 2, + [110394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6049), 1, anon_sym_EQ_GT, - [110537] = 2, + [110401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4747), 1, - sym_identifier, - [110544] = 2, + ACTIONS(3558), 1, + anon_sym_RPAREN, + [110408] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6051), 1, - sym_identifier, - [110551] = 2, + anon_sym_function, + [110415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6053), 1, - anon_sym_EQ_GT, - [110558] = 2, + sym_identifier, + [110422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4642), 1, + sym_identifier, + [110429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6055), 1, sym_identifier, - [110565] = 2, + [110436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6057), 1, - anon_sym_GT, - [110572] = 2, + sym_number, + [110443] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6059), 1, - anon_sym_RBRACK, - [110579] = 2, + anon_sym_EQ_GT, + [110450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6061), 1, - sym_identifier, - [110586] = 2, + anon_sym_RBRACE, + [110457] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6063), 1, anon_sym_EQ_GT, - [110593] = 2, + [110464] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6065), 1, - anon_sym_EQ_GT, - [110600] = 2, + sym_identifier, + [110471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6067), 1, - anon_sym_EQ_GT, - [110607] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6069), 1, sym_identifier, - [110614] = 2, + [110478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3532), 1, - anon_sym_RBRACK, - [110621] = 2, + ACTIONS(6069), 1, + anon_sym_RPAREN, + [110485] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6071), 1, - sym_identifier, - [110628] = 2, + anon_sym_RPAREN, + [110492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6073), 1, - anon_sym_EQ, - [110635] = 2, + anon_sym_namespace, + [110499] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6075), 1, - anon_sym_EQ_GT, - [110642] = 2, + sym_number, + [110506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6077), 1, - anon_sym_EQ_GT, - [110649] = 2, + anon_sym_RPAREN, + [110513] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6079), 1, - anon_sym_EQ_GT, - [110656] = 2, + anon_sym_GT, + [110520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6081), 1, - ts_builtin_sym_end, - [110663] = 2, + sym_identifier, + [110527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6083), 1, sym_identifier, - [110670] = 2, + [110534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6085), 1, - sym_identifier, - [110677] = 2, + anon_sym_GT, + [110541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6087), 1, - sym_identifier, - [110684] = 2, + anon_sym_RPAREN, + [110548] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6089), 1, - anon_sym_class, - [110691] = 2, + sym_identifier, + [110555] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6091), 1, - anon_sym_EQ, - [110698] = 2, + anon_sym_SLASH2, + [110562] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6093), 1, - sym_identifier, - [110705] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6095), 1, - sym_identifier, - [110712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6097), 1, - anon_sym_EQ_GT, - [110719] = 2, + anon_sym_RBRACK, + [110569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, + ACTIONS(2985), 1, anon_sym_RPAREN, - [110726] = 2, + [110576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3574), 1, + ACTIONS(6095), 1, anon_sym_RBRACK, - [110733] = 2, + [110583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6097), 1, + anon_sym_GT, + [110590] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6099), 1, anon_sym_EQ_GT, - [110740] = 2, - ACTIONS(4404), 1, + [110597] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(6101), 1, - sym_regex_pattern, - [110747] = 2, + sym_identifier, + [110604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6103), 1, - anon_sym_EQ_GT, - [110754] = 2, + anon_sym_EQ, + [110611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6105), 1, - anon_sym_SLASH2, - [110761] = 2, + sym_identifier, + [110618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6107), 1, + ACTIONS(3569), 1, anon_sym_RBRACK, - [110768] = 2, + [110625] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6107), 1, + anon_sym_EQ_GT, + [110632] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6109), 1, - sym_identifier, - [110775] = 2, - ACTIONS(4404), 1, + anon_sym_EQ_GT, + [110639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3563), 1, + anon_sym_RBRACK, + [110646] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(6111), 1, - sym_regex_pattern, - [110782] = 2, + sym_identifier, + [110653] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6113), 1, sym_identifier, - [110789] = 2, + [110660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3497), 1, + ACTIONS(3556), 1, anon_sym_RPAREN, - [110796] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4729), 1, - sym_identifier, - [110803] = 2, + [110667] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6115), 1, - anon_sym_EQ, - [110810] = 2, + anon_sym_EQ_GT, + [110674] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6117), 1, - anon_sym_target, - [110817] = 2, + anon_sym_EQ_GT, + [110681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6119), 1, - sym_identifier, - [110824] = 2, + anon_sym_EQ_GT, + [110688] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6121), 1, - anon_sym_EQ_GT, - [110831] = 2, + ts_builtin_sym_end, + [110695] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3554), 1, + anon_sym_RPAREN, + [110702] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6123), 1, - anon_sym_EQ_GT, - [110838] = 2, + sym_identifier, + [110709] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6125), 1, - anon_sym_EQ_GT, - [110845] = 2, + sym_identifier, + [110716] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6127), 1, - anon_sym_EQ_GT, - [110852] = 2, + anon_sym_class, + [110723] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6129), 1, - anon_sym_EQ_GT, - [110859] = 2, + sym_identifier, + [110730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3544), 1, + anon_sym_RPAREN, + [110737] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6131), 1, anon_sym_EQ_GT, - [110866] = 2, + [110744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3401), 1, + anon_sym_DOT, + [110751] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6133), 1, - anon_sym_EQ_GT, - [110873] = 2, + sym_identifier, + [110758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3542), 1, + anon_sym_RPAREN, + [110765] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6135), 1, - anon_sym_target, - [110880] = 2, + anon_sym_RPAREN, + [110772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6137), 1, - anon_sym_EQ_GT, - [110887] = 2, + anon_sym_from, + [110779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, + ACTIONS(6139), 1, sym_identifier, - [110894] = 2, + [110786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6139), 1, - sym_identifier, - [110901] = 2, + ACTIONS(3526), 1, + anon_sym_RBRACE, + [110793] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6141), 1, sym_identifier, - [110908] = 2, + [110800] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(3524), 1, + anon_sym_RBRACK, + [110807] = 2, + ACTIONS(4415), 1, + sym_comment, ACTIONS(6143), 1, - anon_sym_function, - [110915] = 2, + sym_regex_pattern, + [110814] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6145), 1, - sym_identifier, - [110922] = 2, + anon_sym_EQ_GT, + [110821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6147), 1, + ACTIONS(3522), 1, anon_sym_RPAREN, - [110929] = 2, + [110828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6147), 1, + sym_identifier, + [110835] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6149), 1, sym_identifier, - [110936] = 2, + [110842] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6151), 1, - sym_identifier, - [110943] = 2, + anon_sym_GT, + [110849] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6153), 1, sym_identifier, - [110950] = 2, + [110856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6155), 1, - sym_number, - [110957] = 2, + anon_sym_GT, + [110863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3572), 1, - anon_sym_RBRACK, - [110964] = 2, + ACTIONS(3581), 1, + anon_sym_RPAREN, + [110870] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6157), 1, - sym_identifier, - [110971] = 2, + anon_sym_EQ_GT, + [110877] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4233), 1, + anon_sym_DOT, + [110884] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6159), 1, - sym_identifier, - [110978] = 2, + anon_sym_GT, + [110891] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6161), 1, sym_identifier, - [110985] = 2, + [110898] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6163), 1, - sym_identifier, - [110992] = 2, + anon_sym_EQ_GT, + [110905] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6165), 1, - anon_sym_SLASH2, - [110999] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_RPAREN, - [111006] = 2, + sym_identifier, + [110912] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6167), 1, sym_identifier, - [111013] = 2, + [110919] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6169), 1, - anon_sym_RBRACE, - [111020] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, sym_identifier, - [111027] = 2, + [110926] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6171), 1, - anon_sym_EQ_GT, - [111034] = 2, + sym_identifier, + [110933] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6173), 1, sym_identifier, - [111041] = 2, + [110940] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6175), 1, - anon_sym_from, - [111048] = 2, + anon_sym_function, + [110947] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6177), 1, - sym_identifier, - [111055] = 2, + anon_sym_EQ, + [110954] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6179), 1, - anon_sym_LBRACE, - [111062] = 2, + anon_sym_EQ, + [110961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3518), 1, + anon_sym_RBRACK, + [110968] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6181), 1, - sym_identifier, - [111069] = 2, + anon_sym_COLON, + [110975] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6183), 1, sym_identifier, + [110982] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6185), 1, + sym_number, + [110989] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5696), 1, + anon_sym_GT, + [110996] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6187), 1, + sym_identifier, + [111003] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6189), 1, + sym_identifier, + [111010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6191), 1, + anon_sym_GT, + [111017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6193), 1, + sym_identifier, + [111024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_GT, + [111031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + sym_identifier, + [111038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6197), 1, + sym_identifier, + [111045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6199), 1, + sym_identifier, + [111052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6201), 1, + anon_sym_EQ, + [111059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6203), 1, + anon_sym_EQ_GT, + [111066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6205), 1, + anon_sym_EQ_GT, + [111073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6207), 1, + anon_sym_COLON, + [111080] = 2, + ACTIONS(4415), 1, + sym_comment, + ACTIONS(6209), 1, + sym_regex_pattern, + [111087] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6211), 1, + sym_identifier, + [111094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6213), 1, + sym_identifier, + [111101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6215), 1, + anon_sym_EQ_GT, }; static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(627)] = 0, - [SMALL_STATE(628)] = 95, + [SMALL_STATE(628)] = 103, [SMALL_STATE(629)] = 198, [SMALL_STATE(630)] = 301, [SMALL_STATE(631)] = 404, [SMALL_STATE(632)] = 500, [SMALL_STATE(633)] = 596, [SMALL_STATE(634)] = 692, - [SMALL_STATE(635)] = 788, - [SMALL_STATE(636)] = 890, - [SMALL_STATE(637)] = 986, + [SMALL_STATE(635)] = 786, + [SMALL_STATE(636)] = 882, + [SMALL_STATE(637)] = 984, [SMALL_STATE(638)] = 1082, - [SMALL_STATE(639)] = 1180, + [SMALL_STATE(639)] = 1178, [SMALL_STATE(640)] = 1274, [SMALL_STATE(641)] = 1367, - [SMALL_STATE(642)] = 1466, - [SMALL_STATE(643)] = 1561, - [SMALL_STATE(644)] = 1658, - [SMALL_STATE(645)] = 1751, + [SMALL_STATE(642)] = 1464, + [SMALL_STATE(643)] = 1557, + [SMALL_STATE(644)] = 1652, + [SMALL_STATE(645)] = 1745, [SMALL_STATE(646)] = 1844, [SMALL_STATE(647)] = 1930, [SMALL_STATE(648)] = 2024, [SMALL_STATE(649)] = 2116, - [SMALL_STATE(650)] = 2203, - [SMALL_STATE(651)] = 2270, - [SMALL_STATE(652)] = 2337, - [SMALL_STATE(653)] = 2404, - [SMALL_STATE(654)] = 2471, - [SMALL_STATE(655)] = 2562, - [SMALL_STATE(656)] = 2649, - [SMALL_STATE(657)] = 2716, - [SMALL_STATE(658)] = 2807, - [SMALL_STATE(659)] = 2874, - [SMALL_STATE(660)] = 2967, - [SMALL_STATE(661)] = 3058, - [SMALL_STATE(662)] = 3153, - [SMALL_STATE(663)] = 3242, - [SMALL_STATE(664)] = 3309, - [SMALL_STATE(665)] = 3376, - [SMALL_STATE(666)] = 3467, + [SMALL_STATE(650)] = 2183, + [SMALL_STATE(651)] = 2278, + [SMALL_STATE(652)] = 2369, + [SMALL_STATE(653)] = 2436, + [SMALL_STATE(654)] = 2527, + [SMALL_STATE(655)] = 2618, + [SMALL_STATE(656)] = 2685, + [SMALL_STATE(657)] = 2776, + [SMALL_STATE(658)] = 2869, + [SMALL_STATE(659)] = 2936, + [SMALL_STATE(660)] = 3023, + [SMALL_STATE(661)] = 3112, + [SMALL_STATE(662)] = 3179, + [SMALL_STATE(663)] = 3246, + [SMALL_STATE(664)] = 3333, + [SMALL_STATE(665)] = 3428, + [SMALL_STATE(666)] = 3495, [SMALL_STATE(667)] = 3562, [SMALL_STATE(668)] = 3650, - [SMALL_STATE(669)] = 3722, - [SMALL_STATE(670)] = 3792, - [SMALL_STATE(671)] = 3880, - [SMALL_STATE(672)] = 3968, - [SMALL_STATE(673)] = 4054, - [SMALL_STATE(674)] = 4142, - [SMALL_STATE(675)] = 4230, + [SMALL_STATE(669)] = 3738, + [SMALL_STATE(670)] = 3826, + [SMALL_STATE(671)] = 3914, + [SMALL_STATE(672)] = 4002, + [SMALL_STATE(673)] = 4074, + [SMALL_STATE(674)] = 4162, + [SMALL_STATE(675)] = 4232, [SMALL_STATE(676)] = 4318, - [SMALL_STATE(677)] = 4406, + [SMALL_STATE(677)] = 4404, [SMALL_STATE(678)] = 4492, [SMALL_STATE(679)] = 4580, - [SMALL_STATE(680)] = 4661, + [SMALL_STATE(680)] = 4657, [SMALL_STATE(681)] = 4742, [SMALL_STATE(682)] = 4829, [SMALL_STATE(683)] = 4910, - [SMALL_STATE(684)] = 5001, - [SMALL_STATE(685)] = 5088, - [SMALL_STATE(686)] = 5173, - [SMALL_STATE(687)] = 5250, - [SMALL_STATE(688)] = 5335, - [SMALL_STATE(689)] = 5420, - [SMALL_STATE(690)] = 5497, - [SMALL_STATE(691)] = 5584, - [SMALL_STATE(692)] = 5667, - [SMALL_STATE(693)] = 5748, - [SMALL_STATE(694)] = 5831, - [SMALL_STATE(695)] = 5920, - [SMALL_STATE(696)] = 6005, - [SMALL_STATE(697)] = 6090, - [SMALL_STATE(698)] = 6177, - [SMALL_STATE(699)] = 6262, - [SMALL_STATE(700)] = 6343, + [SMALL_STATE(684)] = 4995, + [SMALL_STATE(685)] = 5072, + [SMALL_STATE(686)] = 5153, + [SMALL_STATE(687)] = 5242, + [SMALL_STATE(688)] = 5323, + [SMALL_STATE(689)] = 5406, + [SMALL_STATE(690)] = 5493, + [SMALL_STATE(691)] = 5574, + [SMALL_STATE(692)] = 5659, + [SMALL_STATE(693)] = 5744, + [SMALL_STATE(694)] = 5827, + [SMALL_STATE(695)] = 5914, + [SMALL_STATE(696)] = 5995, + [SMALL_STATE(697)] = 6076, + [SMALL_STATE(698)] = 6167, + [SMALL_STATE(699)] = 6254, + [SMALL_STATE(700)] = 6339, [SMALL_STATE(701)] = 6424, - [SMALL_STATE(702)] = 6496, - [SMALL_STATE(703)] = 6576, - [SMALL_STATE(704)] = 6656, - [SMALL_STATE(705)] = 6784, - [SMALL_STATE(706)] = 6912, - [SMALL_STATE(707)] = 6992, - [SMALL_STATE(708)] = 7056, - [SMALL_STATE(709)] = 7184, - [SMALL_STATE(710)] = 7262, - [SMALL_STATE(711)] = 7344, - [SMALL_STATE(712)] = 7408, - [SMALL_STATE(713)] = 7486, - [SMALL_STATE(714)] = 7564, - [SMALL_STATE(715)] = 7692, - [SMALL_STATE(716)] = 7770, - [SMALL_STATE(717)] = 7848, - [SMALL_STATE(718)] = 7926, - [SMALL_STATE(719)] = 7990, - [SMALL_STATE(720)] = 8054, - [SMALL_STATE(721)] = 8134, - [SMALL_STATE(722)] = 8198, - [SMALL_STATE(723)] = 8274, - [SMALL_STATE(724)] = 8348, - [SMALL_STATE(725)] = 8418, - [SMALL_STATE(726)] = 8494, - [SMALL_STATE(727)] = 8578, - [SMALL_STATE(728)] = 8664, - [SMALL_STATE(729)] = 8746, - [SMALL_STATE(730)] = 8826, - [SMALL_STATE(731)] = 8910, - [SMALL_STATE(732)] = 8992, - [SMALL_STATE(733)] = 9056, - [SMALL_STATE(734)] = 9120, - [SMALL_STATE(735)] = 9200, - [SMALL_STATE(736)] = 9328, - [SMALL_STATE(737)] = 9392, - [SMALL_STATE(738)] = 9520, + [SMALL_STATE(702)] = 6488, + [SMALL_STATE(703)] = 6566, + [SMALL_STATE(704)] = 6644, + [SMALL_STATE(705)] = 6708, + [SMALL_STATE(706)] = 6772, + [SMALL_STATE(707)] = 6852, + [SMALL_STATE(708)] = 6936, + [SMALL_STATE(709)] = 7016, + [SMALL_STATE(710)] = 7094, + [SMALL_STATE(711)] = 7172, + [SMALL_STATE(712)] = 7248, + [SMALL_STATE(713)] = 7376, + [SMALL_STATE(714)] = 7504, + [SMALL_STATE(715)] = 7568, + [SMALL_STATE(716)] = 7646, + [SMALL_STATE(717)] = 7724, + [SMALL_STATE(718)] = 7852, + [SMALL_STATE(719)] = 7932, + [SMALL_STATE(720)] = 8012, + [SMALL_STATE(721)] = 8092, + [SMALL_STATE(722)] = 8168, + [SMALL_STATE(723)] = 8232, + [SMALL_STATE(724)] = 8360, + [SMALL_STATE(725)] = 8438, + [SMALL_STATE(726)] = 8508, + [SMALL_STATE(727)] = 8636, + [SMALL_STATE(728)] = 8718, + [SMALL_STATE(729)] = 8790, + [SMALL_STATE(730)] = 8854, + [SMALL_STATE(731)] = 8928, + [SMALL_STATE(732)] = 9012, + [SMALL_STATE(733)] = 9140, + [SMALL_STATE(734)] = 9226, + [SMALL_STATE(735)] = 9308, + [SMALL_STATE(736)] = 9390, + [SMALL_STATE(737)] = 9454, + [SMALL_STATE(738)] = 9518, [SMALL_STATE(739)] = 9598, - [SMALL_STATE(740)] = 9676, + [SMALL_STATE(740)] = 9726, [SMALL_STATE(741)] = 9804, [SMALL_STATE(742)] = 9888, - [SMALL_STATE(743)] = 9967, - [SMALL_STATE(744)] = 10046, - [SMALL_STATE(745)] = 10123, - [SMALL_STATE(746)] = 10198, - [SMALL_STATE(747)] = 10277, - [SMALL_STATE(748)] = 10352, - [SMALL_STATE(749)] = 10435, - [SMALL_STATE(750)] = 10504, - [SMALL_STATE(751)] = 10585, - [SMALL_STATE(752)] = 10660, - [SMALL_STATE(753)] = 10735, - [SMALL_STATE(754)] = 10802, - [SMALL_STATE(755)] = 10881, - [SMALL_STATE(756)] = 10952, + [SMALL_STATE(743)] = 9965, + [SMALL_STATE(744)] = 10040, + [SMALL_STATE(745)] = 10115, + [SMALL_STATE(746)] = 10194, + [SMALL_STATE(747)] = 10273, + [SMALL_STATE(748)] = 10348, + [SMALL_STATE(749)] = 10427, + [SMALL_STATE(750)] = 10502, + [SMALL_STATE(751)] = 10581, + [SMALL_STATE(752)] = 10652, + [SMALL_STATE(753)] = 10719, + [SMALL_STATE(754)] = 10796, + [SMALL_STATE(755)] = 10875, + [SMALL_STATE(756)] = 10956, [SMALL_STATE(757)] = 11031, - [SMALL_STATE(758)] = 11110, - [SMALL_STATE(759)] = 11179, - [SMALL_STATE(760)] = 11256, - [SMALL_STATE(761)] = 11331, - [SMALL_STATE(762)] = 11410, - [SMALL_STATE(763)] = 11489, - [SMALL_STATE(764)] = 11562, - [SMALL_STATE(765)] = 11643, - [SMALL_STATE(766)] = 11722, - [SMALL_STATE(767)] = 11801, + [SMALL_STATE(758)] = 11112, + [SMALL_STATE(759)] = 11195, + [SMALL_STATE(760)] = 11274, + [SMALL_STATE(761)] = 11343, + [SMALL_STATE(762)] = 11422, + [SMALL_STATE(763)] = 11497, + [SMALL_STATE(764)] = 11576, + [SMALL_STATE(765)] = 11655, + [SMALL_STATE(766)] = 11728, + [SMALL_STATE(767)] = 11797, [SMALL_STATE(768)] = 11876, [SMALL_STATE(769)] = 11944, - [SMALL_STATE(770)] = 12006, - [SMALL_STATE(771)] = 12068, - [SMALL_STATE(772)] = 12136, - [SMALL_STATE(773)] = 12204, - [SMALL_STATE(774)] = 12270, - [SMALL_STATE(775)] = 12332, - [SMALL_STATE(776)] = 12394, - [SMALL_STATE(777)] = 12464, - [SMALL_STATE(778)] = 12580, - [SMALL_STATE(779)] = 12658, - [SMALL_STATE(780)] = 12734, - [SMALL_STATE(781)] = 12812, - [SMALL_STATE(782)] = 12886, - [SMALL_STATE(783)] = 13002, - [SMALL_STATE(784)] = 13076, - [SMALL_STATE(785)] = 13138, - [SMALL_STATE(786)] = 13210, - [SMALL_STATE(787)] = 13326, - [SMALL_STATE(788)] = 13388, - [SMALL_STATE(789)] = 13450, - [SMALL_STATE(790)] = 13522, - [SMALL_STATE(791)] = 13584, - [SMALL_STATE(792)] = 13652, - [SMALL_STATE(793)] = 13730, - [SMALL_STATE(794)] = 13802, - [SMALL_STATE(795)] = 13864, - [SMALL_STATE(796)] = 13926, - [SMALL_STATE(797)] = 13992, - [SMALL_STATE(798)] = 14060, + [SMALL_STATE(770)] = 12020, + [SMALL_STATE(771)] = 12092, + [SMALL_STATE(772)] = 12166, + [SMALL_STATE(773)] = 12232, + [SMALL_STATE(774)] = 12302, + [SMALL_STATE(775)] = 12368, + [SMALL_STATE(776)] = 12430, + [SMALL_STATE(777)] = 12492, + [SMALL_STATE(778)] = 12608, + [SMALL_STATE(779)] = 12676, + [SMALL_STATE(780)] = 12744, + [SMALL_STATE(781)] = 12822, + [SMALL_STATE(782)] = 12884, + [SMALL_STATE(783)] = 12946, + [SMALL_STATE(784)] = 13010, + [SMALL_STATE(785)] = 13072, + [SMALL_STATE(786)] = 13144, + [SMALL_STATE(787)] = 13212, + [SMALL_STATE(788)] = 13274, + [SMALL_STATE(789)] = 13348, + [SMALL_STATE(790)] = 13426, + [SMALL_STATE(791)] = 13494, + [SMALL_STATE(792)] = 13556, + [SMALL_STATE(793)] = 13672, + [SMALL_STATE(794)] = 13734, + [SMALL_STATE(795)] = 13796, + [SMALL_STATE(796)] = 13858, + [SMALL_STATE(797)] = 13930, + [SMALL_STATE(798)] = 14008, [SMALL_STATE(799)] = 14124, [SMALL_STATE(800)] = 14237, [SMALL_STATE(801)] = 14350, [SMALL_STATE(802)] = 14463, - [SMALL_STATE(803)] = 14576, - [SMALL_STATE(804)] = 14689, - [SMALL_STATE(805)] = 14802, - [SMALL_STATE(806)] = 14915, - [SMALL_STATE(807)] = 15028, - [SMALL_STATE(808)] = 15141, - [SMALL_STATE(809)] = 15254, - [SMALL_STATE(810)] = 15331, - [SMALL_STATE(811)] = 15444, - [SMALL_STATE(812)] = 15557, - [SMALL_STATE(813)] = 15670, - [SMALL_STATE(814)] = 15747, - [SMALL_STATE(815)] = 15860, - [SMALL_STATE(816)] = 15931, - [SMALL_STATE(817)] = 16044, - [SMALL_STATE(818)] = 16157, - [SMALL_STATE(819)] = 16234, - [SMALL_STATE(820)] = 16299, - [SMALL_STATE(821)] = 16376, - [SMALL_STATE(822)] = 16493, - [SMALL_STATE(823)] = 16606, - [SMALL_STATE(824)] = 16723, - [SMALL_STATE(825)] = 16836, - [SMALL_STATE(826)] = 16949, - [SMALL_STATE(827)] = 17062, - [SMALL_STATE(828)] = 17129, - [SMALL_STATE(829)] = 17242, + [SMALL_STATE(803)] = 14580, + [SMALL_STATE(804)] = 14657, + [SMALL_STATE(805)] = 14770, + [SMALL_STATE(806)] = 14883, + [SMALL_STATE(807)] = 14996, + [SMALL_STATE(808)] = 15109, + [SMALL_STATE(809)] = 15222, + [SMALL_STATE(810)] = 15335, + [SMALL_STATE(811)] = 15448, + [SMALL_STATE(812)] = 15561, + [SMALL_STATE(813)] = 15674, + [SMALL_STATE(814)] = 15787, + [SMALL_STATE(815)] = 15900, + [SMALL_STATE(816)] = 16013, + [SMALL_STATE(817)] = 16126, + [SMALL_STATE(818)] = 16239, + [SMALL_STATE(819)] = 16352, + [SMALL_STATE(820)] = 16465, + [SMALL_STATE(821)] = 16578, + [SMALL_STATE(822)] = 16691, + [SMALL_STATE(823)] = 16804, + [SMALL_STATE(824)] = 16875, + [SMALL_STATE(825)] = 16942, + [SMALL_STATE(826)] = 17007, + [SMALL_STATE(827)] = 17084, + [SMALL_STATE(828)] = 17161, + [SMALL_STATE(829)] = 17278, [SMALL_STATE(830)] = 17355, [SMALL_STATE(831)] = 17465, [SMALL_STATE(832)] = 17575, [SMALL_STATE(833)] = 17685, - [SMALL_STATE(834)] = 17795, - [SMALL_STATE(835)] = 17905, - [SMALL_STATE(836)] = 18015, - [SMALL_STATE(837)] = 18125, - [SMALL_STATE(838)] = 18235, - [SMALL_STATE(839)] = 18345, - [SMALL_STATE(840)] = 18455, - [SMALL_STATE(841)] = 18565, - [SMALL_STATE(842)] = 18675, - [SMALL_STATE(843)] = 18785, - [SMALL_STATE(844)] = 18895, - [SMALL_STATE(845)] = 19005, - [SMALL_STATE(846)] = 19115, - [SMALL_STATE(847)] = 19225, - [SMALL_STATE(848)] = 19335, - [SMALL_STATE(849)] = 19445, - [SMALL_STATE(850)] = 19555, - [SMALL_STATE(851)] = 19665, - [SMALL_STATE(852)] = 19775, - [SMALL_STATE(853)] = 19885, - [SMALL_STATE(854)] = 19995, - [SMALL_STATE(855)] = 20105, - [SMALL_STATE(856)] = 20215, - [SMALL_STATE(857)] = 20325, - [SMALL_STATE(858)] = 20435, - [SMALL_STATE(859)] = 20545, - [SMALL_STATE(860)] = 20655, - [SMALL_STATE(861)] = 20765, - [SMALL_STATE(862)] = 20875, - [SMALL_STATE(863)] = 20985, - [SMALL_STATE(864)] = 21095, - [SMALL_STATE(865)] = 21205, - [SMALL_STATE(866)] = 21315, - [SMALL_STATE(867)] = 21425, - [SMALL_STATE(868)] = 21535, - [SMALL_STATE(869)] = 21645, - [SMALL_STATE(870)] = 21755, - [SMALL_STATE(871)] = 21865, - [SMALL_STATE(872)] = 21975, - [SMALL_STATE(873)] = 22085, - [SMALL_STATE(874)] = 22195, - [SMALL_STATE(875)] = 22305, - [SMALL_STATE(876)] = 22415, - [SMALL_STATE(877)] = 22525, - [SMALL_STATE(878)] = 22635, - [SMALL_STATE(879)] = 22745, - [SMALL_STATE(880)] = 22855, - [SMALL_STATE(881)] = 22965, - [SMALL_STATE(882)] = 23075, - [SMALL_STATE(883)] = 23185, - [SMALL_STATE(884)] = 23295, - [SMALL_STATE(885)] = 23405, - [SMALL_STATE(886)] = 23515, - [SMALL_STATE(887)] = 23625, - [SMALL_STATE(888)] = 23735, - [SMALL_STATE(889)] = 23845, - [SMALL_STATE(890)] = 23955, - [SMALL_STATE(891)] = 24065, - [SMALL_STATE(892)] = 24175, - [SMALL_STATE(893)] = 24285, - [SMALL_STATE(894)] = 24395, - [SMALL_STATE(895)] = 24505, - [SMALL_STATE(896)] = 24615, - [SMALL_STATE(897)] = 24725, - [SMALL_STATE(898)] = 24835, - [SMALL_STATE(899)] = 24945, - [SMALL_STATE(900)] = 25055, - [SMALL_STATE(901)] = 25165, - [SMALL_STATE(902)] = 25275, - [SMALL_STATE(903)] = 25385, - [SMALL_STATE(904)] = 25495, - [SMALL_STATE(905)] = 25605, - [SMALL_STATE(906)] = 25715, - [SMALL_STATE(907)] = 25825, - [SMALL_STATE(908)] = 25935, - [SMALL_STATE(909)] = 26045, - [SMALL_STATE(910)] = 26155, - [SMALL_STATE(911)] = 26265, - [SMALL_STATE(912)] = 26375, - [SMALL_STATE(913)] = 26485, - [SMALL_STATE(914)] = 26595, - [SMALL_STATE(915)] = 26705, - [SMALL_STATE(916)] = 26815, - [SMALL_STATE(917)] = 26925, - [SMALL_STATE(918)] = 27035, - [SMALL_STATE(919)] = 27145, - [SMALL_STATE(920)] = 27255, - [SMALL_STATE(921)] = 27329, - [SMALL_STATE(922)] = 27439, - [SMALL_STATE(923)] = 27549, - [SMALL_STATE(924)] = 27659, - [SMALL_STATE(925)] = 27769, - [SMALL_STATE(926)] = 27879, - [SMALL_STATE(927)] = 27989, - [SMALL_STATE(928)] = 28099, - [SMALL_STATE(929)] = 28209, - [SMALL_STATE(930)] = 28319, - [SMALL_STATE(931)] = 28429, - [SMALL_STATE(932)] = 28539, - [SMALL_STATE(933)] = 28649, - [SMALL_STATE(934)] = 28759, - [SMALL_STATE(935)] = 28869, - [SMALL_STATE(936)] = 28979, + [SMALL_STATE(834)] = 17759, + [SMALL_STATE(835)] = 17869, + [SMALL_STATE(836)] = 17979, + [SMALL_STATE(837)] = 18089, + [SMALL_STATE(838)] = 18199, + [SMALL_STATE(839)] = 18309, + [SMALL_STATE(840)] = 18419, + [SMALL_STATE(841)] = 18529, + [SMALL_STATE(842)] = 18639, + [SMALL_STATE(843)] = 18749, + [SMALL_STATE(844)] = 18859, + [SMALL_STATE(845)] = 18969, + [SMALL_STATE(846)] = 19079, + [SMALL_STATE(847)] = 19189, + [SMALL_STATE(848)] = 19299, + [SMALL_STATE(849)] = 19409, + [SMALL_STATE(850)] = 19519, + [SMALL_STATE(851)] = 19629, + [SMALL_STATE(852)] = 19739, + [SMALL_STATE(853)] = 19849, + [SMALL_STATE(854)] = 19959, + [SMALL_STATE(855)] = 20069, + [SMALL_STATE(856)] = 20179, + [SMALL_STATE(857)] = 20253, + [SMALL_STATE(858)] = 20363, + [SMALL_STATE(859)] = 20473, + [SMALL_STATE(860)] = 20583, + [SMALL_STATE(861)] = 20693, + [SMALL_STATE(862)] = 20803, + [SMALL_STATE(863)] = 20913, + [SMALL_STATE(864)] = 21023, + [SMALL_STATE(865)] = 21133, + [SMALL_STATE(866)] = 21243, + [SMALL_STATE(867)] = 21353, + [SMALL_STATE(868)] = 21463, + [SMALL_STATE(869)] = 21573, + [SMALL_STATE(870)] = 21683, + [SMALL_STATE(871)] = 21793, + [SMALL_STATE(872)] = 21903, + [SMALL_STATE(873)] = 22013, + [SMALL_STATE(874)] = 22123, + [SMALL_STATE(875)] = 22233, + [SMALL_STATE(876)] = 22343, + [SMALL_STATE(877)] = 22453, + [SMALL_STATE(878)] = 22563, + [SMALL_STATE(879)] = 22673, + [SMALL_STATE(880)] = 22783, + [SMALL_STATE(881)] = 22893, + [SMALL_STATE(882)] = 23003, + [SMALL_STATE(883)] = 23113, + [SMALL_STATE(884)] = 23223, + [SMALL_STATE(885)] = 23333, + [SMALL_STATE(886)] = 23443, + [SMALL_STATE(887)] = 23553, + [SMALL_STATE(888)] = 23663, + [SMALL_STATE(889)] = 23773, + [SMALL_STATE(890)] = 23883, + [SMALL_STATE(891)] = 23993, + [SMALL_STATE(892)] = 24103, + [SMALL_STATE(893)] = 24213, + [SMALL_STATE(894)] = 24323, + [SMALL_STATE(895)] = 24433, + [SMALL_STATE(896)] = 24543, + [SMALL_STATE(897)] = 24653, + [SMALL_STATE(898)] = 24763, + [SMALL_STATE(899)] = 24873, + [SMALL_STATE(900)] = 24983, + [SMALL_STATE(901)] = 25093, + [SMALL_STATE(902)] = 25203, + [SMALL_STATE(903)] = 25313, + [SMALL_STATE(904)] = 25423, + [SMALL_STATE(905)] = 25533, + [SMALL_STATE(906)] = 25643, + [SMALL_STATE(907)] = 25753, + [SMALL_STATE(908)] = 25863, + [SMALL_STATE(909)] = 25973, + [SMALL_STATE(910)] = 26083, + [SMALL_STATE(911)] = 26193, + [SMALL_STATE(912)] = 26303, + [SMALL_STATE(913)] = 26413, + [SMALL_STATE(914)] = 26523, + [SMALL_STATE(915)] = 26633, + [SMALL_STATE(916)] = 26743, + [SMALL_STATE(917)] = 26853, + [SMALL_STATE(918)] = 26963, + [SMALL_STATE(919)] = 27073, + [SMALL_STATE(920)] = 27183, + [SMALL_STATE(921)] = 27293, + [SMALL_STATE(922)] = 27403, + [SMALL_STATE(923)] = 27513, + [SMALL_STATE(924)] = 27623, + [SMALL_STATE(925)] = 27733, + [SMALL_STATE(926)] = 27843, + [SMALL_STATE(927)] = 27953, + [SMALL_STATE(928)] = 28063, + [SMALL_STATE(929)] = 28173, + [SMALL_STATE(930)] = 28283, + [SMALL_STATE(931)] = 28393, + [SMALL_STATE(932)] = 28503, + [SMALL_STATE(933)] = 28613, + [SMALL_STATE(934)] = 28723, + [SMALL_STATE(935)] = 28833, + [SMALL_STATE(936)] = 28943, [SMALL_STATE(937)] = 29053, [SMALL_STATE(938)] = 29163, [SMALL_STATE(939)] = 29273, @@ -156851,852 +157094,852 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(942)] = 29556, [SMALL_STATE(943)] = 29660, [SMALL_STATE(944)] = 29764, - [SMALL_STATE(945)] = 29867, - [SMALL_STATE(946)] = 29970, - [SMALL_STATE(947)] = 30073, - [SMALL_STATE(948)] = 30176, - [SMALL_STATE(949)] = 30279, + [SMALL_STATE(945)] = 29865, + [SMALL_STATE(946)] = 29968, + [SMALL_STATE(947)] = 30071, + [SMALL_STATE(948)] = 30174, + [SMALL_STATE(949)] = 30277, [SMALL_STATE(950)] = 30380, [SMALL_STATE(951)] = 30483, [SMALL_STATE(952)] = 30582, [SMALL_STATE(953)] = 30681, [SMALL_STATE(954)] = 30780, - [SMALL_STATE(955)] = 30849, - [SMALL_STATE(956)] = 30948, - [SMALL_STATE(957)] = 31047, - [SMALL_STATE(958)] = 31146, - [SMALL_STATE(959)] = 31245, - [SMALL_STATE(960)] = 31344, - [SMALL_STATE(961)] = 31443, - [SMALL_STATE(962)] = 31512, + [SMALL_STATE(955)] = 30879, + [SMALL_STATE(956)] = 30978, + [SMALL_STATE(957)] = 31077, + [SMALL_STATE(958)] = 31176, + [SMALL_STATE(959)] = 31275, + [SMALL_STATE(960)] = 31374, + [SMALL_STATE(961)] = 31473, + [SMALL_STATE(962)] = 31542, [SMALL_STATE(963)] = 31611, - [SMALL_STATE(964)] = 31710, - [SMALL_STATE(965)] = 31809, - [SMALL_STATE(966)] = 31908, - [SMALL_STATE(967)] = 32007, - [SMALL_STATE(968)] = 32106, + [SMALL_STATE(964)] = 31676, + [SMALL_STATE(965)] = 31775, + [SMALL_STATE(966)] = 31874, + [SMALL_STATE(967)] = 31973, + [SMALL_STATE(968)] = 32072, [SMALL_STATE(969)] = 32171, - [SMALL_STATE(970)] = 32223, - [SMALL_STATE(971)] = 32283, - [SMALL_STATE(972)] = 32335, - [SMALL_STATE(973)] = 32387, - [SMALL_STATE(974)] = 32439, - [SMALL_STATE(975)] = 32495, - [SMALL_STATE(976)] = 32547, - [SMALL_STATE(977)] = 32599, - [SMALL_STATE(978)] = 32651, - [SMALL_STATE(979)] = 32703, - [SMALL_STATE(980)] = 32755, - [SMALL_STATE(981)] = 32807, + [SMALL_STATE(970)] = 32231, + [SMALL_STATE(971)] = 32297, + [SMALL_STATE(972)] = 32349, + [SMALL_STATE(973)] = 32401, + [SMALL_STATE(974)] = 32453, + [SMALL_STATE(975)] = 32505, + [SMALL_STATE(976)] = 32557, + [SMALL_STATE(977)] = 32609, + [SMALL_STATE(978)] = 32665, + [SMALL_STATE(979)] = 32717, + [SMALL_STATE(980)] = 32769, + [SMALL_STATE(981)] = 32821, [SMALL_STATE(982)] = 32873, [SMALL_STATE(983)] = 32968, [SMALL_STATE(984)] = 33063, - [SMALL_STATE(985)] = 33148, - [SMALL_STATE(986)] = 33219, - [SMALL_STATE(987)] = 33290, - [SMALL_STATE(988)] = 33343, - [SMALL_STATE(989)] = 33398, - [SMALL_STATE(990)] = 33493, - [SMALL_STATE(991)] = 33588, - [SMALL_STATE(992)] = 33643, - [SMALL_STATE(993)] = 33738, - [SMALL_STATE(994)] = 33833, - [SMALL_STATE(995)] = 33886, - [SMALL_STATE(996)] = 33967, - [SMALL_STATE(997)] = 34062, - [SMALL_STATE(998)] = 34159, - [SMALL_STATE(999)] = 34214, - [SMALL_STATE(1000)] = 34271, - [SMALL_STATE(1001)] = 34346, - [SMALL_STATE(1002)] = 34441, - [SMALL_STATE(1003)] = 34536, - [SMALL_STATE(1004)] = 34609, - [SMALL_STATE(1005)] = 34704, - [SMALL_STATE(1006)] = 34777, - [SMALL_STATE(1007)] = 34872, - [SMALL_STATE(1008)] = 34967, - [SMALL_STATE(1009)] = 35062, - [SMALL_STATE(1010)] = 35117, - [SMALL_STATE(1011)] = 35170, - [SMALL_STATE(1012)] = 35265, - [SMALL_STATE(1013)] = 35320, - [SMALL_STATE(1014)] = 35415, - [SMALL_STATE(1015)] = 35486, - [SMALL_STATE(1016)] = 35581, - [SMALL_STATE(1017)] = 35636, - [SMALL_STATE(1018)] = 35731, - [SMALL_STATE(1019)] = 35824, - [SMALL_STATE(1020)] = 35913, - [SMALL_STATE(1021)] = 35986, - [SMALL_STATE(1022)] = 36081, - [SMALL_STATE(1023)] = 36134, - [SMALL_STATE(1024)] = 36229, - [SMALL_STATE(1025)] = 36308, - [SMALL_STATE(1026)] = 36403, - [SMALL_STATE(1027)] = 36460, + [SMALL_STATE(985)] = 33158, + [SMALL_STATE(986)] = 33253, + [SMALL_STATE(987)] = 33348, + [SMALL_STATE(988)] = 33403, + [SMALL_STATE(989)] = 33458, + [SMALL_STATE(990)] = 33553, + [SMALL_STATE(991)] = 33648, + [SMALL_STATE(992)] = 33743, + [SMALL_STATE(993)] = 33818, + [SMALL_STATE(994)] = 33915, + [SMALL_STATE(995)] = 33996, + [SMALL_STATE(996)] = 34081, + [SMALL_STATE(997)] = 34170, + [SMALL_STATE(998)] = 34249, + [SMALL_STATE(999)] = 34322, + [SMALL_STATE(1000)] = 34415, + [SMALL_STATE(1001)] = 34510, + [SMALL_STATE(1002)] = 34605, + [SMALL_STATE(1003)] = 34700, + [SMALL_STATE(1004)] = 34795, + [SMALL_STATE(1005)] = 34850, + [SMALL_STATE(1006)] = 34945, + [SMALL_STATE(1007)] = 35018, + [SMALL_STATE(1008)] = 35089, + [SMALL_STATE(1009)] = 35184, + [SMALL_STATE(1010)] = 35241, + [SMALL_STATE(1011)] = 35296, + [SMALL_STATE(1012)] = 35367, + [SMALL_STATE(1013)] = 35438, + [SMALL_STATE(1014)] = 35533, + [SMALL_STATE(1015)] = 35628, + [SMALL_STATE(1016)] = 35681, + [SMALL_STATE(1017)] = 35734, + [SMALL_STATE(1018)] = 35791, + [SMALL_STATE(1019)] = 35846, + [SMALL_STATE(1020)] = 35941, + [SMALL_STATE(1021)] = 35994, + [SMALL_STATE(1022)] = 36049, + [SMALL_STATE(1023)] = 36104, + [SMALL_STATE(1024)] = 36199, + [SMALL_STATE(1025)] = 36272, + [SMALL_STATE(1026)] = 36325, + [SMALL_STATE(1027)] = 36420, [SMALL_STATE(1028)] = 36515, [SMALL_STATE(1029)] = 36610, [SMALL_STATE(1030)] = 36705, - [SMALL_STATE(1031)] = 36805, - [SMALL_STATE(1032)] = 36903, - [SMALL_STATE(1033)] = 36997, - [SMALL_STATE(1034)] = 37047, - [SMALL_STATE(1035)] = 37097, - [SMALL_STATE(1036)] = 37197, - [SMALL_STATE(1037)] = 37247, - [SMALL_STATE(1038)] = 37297, - [SMALL_STATE(1039)] = 37347, - [SMALL_STATE(1040)] = 37397, - [SMALL_STATE(1041)] = 37447, - [SMALL_STATE(1042)] = 37545, - [SMALL_STATE(1043)] = 37595, - [SMALL_STATE(1044)] = 37645, - [SMALL_STATE(1045)] = 37695, - [SMALL_STATE(1046)] = 37795, - [SMALL_STATE(1047)] = 37845, - [SMALL_STATE(1048)] = 37895, - [SMALL_STATE(1049)] = 37945, - [SMALL_STATE(1050)] = 37995, - [SMALL_STATE(1051)] = 38055, - [SMALL_STATE(1052)] = 38105, - [SMALL_STATE(1053)] = 38155, - [SMALL_STATE(1054)] = 38205, - [SMALL_STATE(1055)] = 38255, - [SMALL_STATE(1056)] = 38305, - [SMALL_STATE(1057)] = 38355, - [SMALL_STATE(1058)] = 38405, - [SMALL_STATE(1059)] = 38455, - [SMALL_STATE(1060)] = 38505, - [SMALL_STATE(1061)] = 38555, - [SMALL_STATE(1062)] = 38605, - [SMALL_STATE(1063)] = 38655, - [SMALL_STATE(1064)] = 38705, - [SMALL_STATE(1065)] = 38755, - [SMALL_STATE(1066)] = 38805, - [SMALL_STATE(1067)] = 38855, - [SMALL_STATE(1068)] = 38905, - [SMALL_STATE(1069)] = 38955, - [SMALL_STATE(1070)] = 39005, - [SMALL_STATE(1071)] = 39055, - [SMALL_STATE(1072)] = 39105, - [SMALL_STATE(1073)] = 39155, - [SMALL_STATE(1074)] = 39205, - [SMALL_STATE(1075)] = 39255, - [SMALL_STATE(1076)] = 39349, - [SMALL_STATE(1077)] = 39399, - [SMALL_STATE(1078)] = 39493, - [SMALL_STATE(1079)] = 39587, - [SMALL_STATE(1080)] = 39687, - [SMALL_STATE(1081)] = 39761, - [SMALL_STATE(1082)] = 39841, - [SMALL_STATE(1083)] = 39891, - [SMALL_STATE(1084)] = 39941, - [SMALL_STATE(1085)] = 39991, - [SMALL_STATE(1086)] = 40085, - [SMALL_STATE(1087)] = 40135, - [SMALL_STATE(1088)] = 40219, - [SMALL_STATE(1089)] = 40313, - [SMALL_STATE(1090)] = 40401, - [SMALL_STATE(1091)] = 40479, - [SMALL_STATE(1092)] = 40551, - [SMALL_STATE(1093)] = 40601, - [SMALL_STATE(1094)] = 40695, - [SMALL_STATE(1095)] = 40787, - [SMALL_STATE(1096)] = 40881, - [SMALL_STATE(1097)] = 40975, - [SMALL_STATE(1098)] = 41025, - [SMALL_STATE(1099)] = 41075, - [SMALL_STATE(1100)] = 41169, - [SMALL_STATE(1101)] = 41263, - [SMALL_STATE(1102)] = 41363, - [SMALL_STATE(1103)] = 41461, - [SMALL_STATE(1104)] = 41511, - [SMALL_STATE(1105)] = 41609, - [SMALL_STATE(1106)] = 41663, - [SMALL_STATE(1107)] = 41757, - [SMALL_STATE(1108)] = 41807, - [SMALL_STATE(1109)] = 41901, - [SMALL_STATE(1110)] = 41951, - [SMALL_STATE(1111)] = 42049, - [SMALL_STATE(1112)] = 42103, - [SMALL_STATE(1113)] = 42197, - [SMALL_STATE(1114)] = 42291, - [SMALL_STATE(1115)] = 42341, - [SMALL_STATE(1116)] = 42395, - [SMALL_STATE(1117)] = 42445, - [SMALL_STATE(1118)] = 42499, - [SMALL_STATE(1119)] = 42549, - [SMALL_STATE(1120)] = 42599, - [SMALL_STATE(1121)] = 42649, - [SMALL_STATE(1122)] = 42699, - [SMALL_STATE(1123)] = 42753, - [SMALL_STATE(1124)] = 42803, - [SMALL_STATE(1125)] = 42853, - [SMALL_STATE(1126)] = 42903, - [SMALL_STATE(1127)] = 42965, - [SMALL_STATE(1128)] = 43035, - [SMALL_STATE(1129)] = 43101, - [SMALL_STATE(1130)] = 43151, - [SMALL_STATE(1131)] = 43217, - [SMALL_STATE(1132)] = 43267, - [SMALL_STATE(1133)] = 43317, - [SMALL_STATE(1134)] = 43367, - [SMALL_STATE(1135)] = 43417, - [SMALL_STATE(1136)] = 43467, - [SMALL_STATE(1137)] = 43517, - [SMALL_STATE(1138)] = 43567, - [SMALL_STATE(1139)] = 43617, - [SMALL_STATE(1140)] = 43667, - [SMALL_STATE(1141)] = 43717, - [SMALL_STATE(1142)] = 43767, - [SMALL_STATE(1143)] = 43817, - [SMALL_STATE(1144)] = 43867, - [SMALL_STATE(1145)] = 43961, - [SMALL_STATE(1146)] = 44011, - [SMALL_STATE(1147)] = 44061, - [SMALL_STATE(1148)] = 44117, - [SMALL_STATE(1149)] = 44169, - [SMALL_STATE(1150)] = 44219, - [SMALL_STATE(1151)] = 44269, - [SMALL_STATE(1152)] = 44319, - [SMALL_STATE(1153)] = 44413, - [SMALL_STATE(1154)] = 44463, - [SMALL_STATE(1155)] = 44563, - [SMALL_STATE(1156)] = 44613, - [SMALL_STATE(1157)] = 44663, - [SMALL_STATE(1158)] = 44715, - [SMALL_STATE(1159)] = 44767, - [SMALL_STATE(1160)] = 44817, - [SMALL_STATE(1161)] = 44867, - [SMALL_STATE(1162)] = 44917, - [SMALL_STATE(1163)] = 44967, - [SMALL_STATE(1164)] = 45039, - [SMALL_STATE(1165)] = 45099, - [SMALL_STATE(1166)] = 45149, - [SMALL_STATE(1167)] = 45199, - [SMALL_STATE(1168)] = 45249, - [SMALL_STATE(1169)] = 45299, - [SMALL_STATE(1170)] = 45349, - [SMALL_STATE(1171)] = 45421, - [SMALL_STATE(1172)] = 45471, - [SMALL_STATE(1173)] = 45521, - [SMALL_STATE(1174)] = 45573, - [SMALL_STATE(1175)] = 45623, - [SMALL_STATE(1176)] = 45673, - [SMALL_STATE(1177)] = 45723, - [SMALL_STATE(1178)] = 45773, - [SMALL_STATE(1179)] = 45823, - [SMALL_STATE(1180)] = 45873, - [SMALL_STATE(1181)] = 45923, - [SMALL_STATE(1182)] = 45973, - [SMALL_STATE(1183)] = 46023, + [SMALL_STATE(1031)] = 36755, + [SMALL_STATE(1032)] = 36805, + [SMALL_STATE(1033)] = 36855, + [SMALL_STATE(1034)] = 36955, + [SMALL_STATE(1035)] = 37005, + [SMALL_STATE(1036)] = 37055, + [SMALL_STATE(1037)] = 37153, + [SMALL_STATE(1038)] = 37247, + [SMALL_STATE(1039)] = 37297, + [SMALL_STATE(1040)] = 37347, + [SMALL_STATE(1041)] = 37397, + [SMALL_STATE(1042)] = 37491, + [SMALL_STATE(1043)] = 37541, + [SMALL_STATE(1044)] = 37591, + [SMALL_STATE(1045)] = 37641, + [SMALL_STATE(1046)] = 37691, + [SMALL_STATE(1047)] = 37789, + [SMALL_STATE(1048)] = 37839, + [SMALL_STATE(1049)] = 37939, + [SMALL_STATE(1050)] = 37989, + [SMALL_STATE(1051)] = 38039, + [SMALL_STATE(1052)] = 38089, + [SMALL_STATE(1053)] = 38141, + [SMALL_STATE(1054)] = 38191, + [SMALL_STATE(1055)] = 38241, + [SMALL_STATE(1056)] = 38291, + [SMALL_STATE(1057)] = 38391, + [SMALL_STATE(1058)] = 38441, + [SMALL_STATE(1059)] = 38491, + [SMALL_STATE(1060)] = 38541, + [SMALL_STATE(1061)] = 38591, + [SMALL_STATE(1062)] = 38641, + [SMALL_STATE(1063)] = 38735, + [SMALL_STATE(1064)] = 38785, + [SMALL_STATE(1065)] = 38835, + [SMALL_STATE(1066)] = 38885, + [SMALL_STATE(1067)] = 38935, + [SMALL_STATE(1068)] = 38985, + [SMALL_STATE(1069)] = 39035, + [SMALL_STATE(1070)] = 39085, + [SMALL_STATE(1071)] = 39135, + [SMALL_STATE(1072)] = 39187, + [SMALL_STATE(1073)] = 39239, + [SMALL_STATE(1074)] = 39289, + [SMALL_STATE(1075)] = 39349, + [SMALL_STATE(1076)] = 39399, + [SMALL_STATE(1077)] = 39449, + [SMALL_STATE(1078)] = 39499, + [SMALL_STATE(1079)] = 39597, + [SMALL_STATE(1080)] = 39695, + [SMALL_STATE(1081)] = 39745, + [SMALL_STATE(1082)] = 39797, + [SMALL_STATE(1083)] = 39869, + [SMALL_STATE(1084)] = 39919, + [SMALL_STATE(1085)] = 39969, + [SMALL_STATE(1086)] = 40019, + [SMALL_STATE(1087)] = 40069, + [SMALL_STATE(1088)] = 40119, + [SMALL_STATE(1089)] = 40175, + [SMALL_STATE(1090)] = 40225, + [SMALL_STATE(1091)] = 40319, + [SMALL_STATE(1092)] = 40369, + [SMALL_STATE(1093)] = 40419, + [SMALL_STATE(1094)] = 40469, + [SMALL_STATE(1095)] = 40519, + [SMALL_STATE(1096)] = 40569, + [SMALL_STATE(1097)] = 40619, + [SMALL_STATE(1098)] = 40713, + [SMALL_STATE(1099)] = 40763, + [SMALL_STATE(1100)] = 40813, + [SMALL_STATE(1101)] = 40863, + [SMALL_STATE(1102)] = 40913, + [SMALL_STATE(1103)] = 40963, + [SMALL_STATE(1104)] = 41013, + [SMALL_STATE(1105)] = 41063, + [SMALL_STATE(1106)] = 41113, + [SMALL_STATE(1107)] = 41163, + [SMALL_STATE(1108)] = 41263, + [SMALL_STATE(1109)] = 41313, + [SMALL_STATE(1110)] = 41367, + [SMALL_STATE(1111)] = 41461, + [SMALL_STATE(1112)] = 41511, + [SMALL_STATE(1113)] = 41561, + [SMALL_STATE(1114)] = 41655, + [SMALL_STATE(1115)] = 41715, + [SMALL_STATE(1116)] = 41775, + [SMALL_STATE(1117)] = 41869, + [SMALL_STATE(1118)] = 41963, + [SMALL_STATE(1119)] = 42057, + [SMALL_STATE(1120)] = 42107, + [SMALL_STATE(1121)] = 42161, + [SMALL_STATE(1122)] = 42211, + [SMALL_STATE(1123)] = 42261, + [SMALL_STATE(1124)] = 42311, + [SMALL_STATE(1125)] = 42405, + [SMALL_STATE(1126)] = 42455, + [SMALL_STATE(1127)] = 42505, + [SMALL_STATE(1128)] = 42555, + [SMALL_STATE(1129)] = 42605, + [SMALL_STATE(1130)] = 42655, + [SMALL_STATE(1131)] = 42705, + [SMALL_STATE(1132)] = 42755, + [SMALL_STATE(1133)] = 42805, + [SMALL_STATE(1134)] = 42859, + [SMALL_STATE(1135)] = 42909, + [SMALL_STATE(1136)] = 42959, + [SMALL_STATE(1137)] = 43009, + [SMALL_STATE(1138)] = 43059, + [SMALL_STATE(1139)] = 43113, + [SMALL_STATE(1140)] = 43167, + [SMALL_STATE(1141)] = 43217, + [SMALL_STATE(1142)] = 43267, + [SMALL_STATE(1143)] = 43367, + [SMALL_STATE(1144)] = 43417, + [SMALL_STATE(1145)] = 43517, + [SMALL_STATE(1146)] = 43567, + [SMALL_STATE(1147)] = 43617, + [SMALL_STATE(1148)] = 43667, + [SMALL_STATE(1149)] = 43733, + [SMALL_STATE(1150)] = 43827, + [SMALL_STATE(1151)] = 43921, + [SMALL_STATE(1152)] = 43987, + [SMALL_STATE(1153)] = 44037, + [SMALL_STATE(1154)] = 44087, + [SMALL_STATE(1155)] = 44137, + [SMALL_STATE(1156)] = 44229, + [SMALL_STATE(1157)] = 44279, + [SMALL_STATE(1158)] = 44329, + [SMALL_STATE(1159)] = 44401, + [SMALL_STATE(1160)] = 44479, + [SMALL_STATE(1161)] = 44529, + [SMALL_STATE(1162)] = 44627, + [SMALL_STATE(1163)] = 44715, + [SMALL_STATE(1164)] = 44765, + [SMALL_STATE(1165)] = 44835, + [SMALL_STATE(1166)] = 44919, + [SMALL_STATE(1167)] = 44991, + [SMALL_STATE(1168)] = 45053, + [SMALL_STATE(1169)] = 45133, + [SMALL_STATE(1170)] = 45183, + [SMALL_STATE(1171)] = 45257, + [SMALL_STATE(1172)] = 45351, + [SMALL_STATE(1173)] = 45445, + [SMALL_STATE(1174)] = 45495, + [SMALL_STATE(1175)] = 45545, + [SMALL_STATE(1176)] = 45639, + [SMALL_STATE(1177)] = 45689, + [SMALL_STATE(1178)] = 45739, + [SMALL_STATE(1179)] = 45789, + [SMALL_STATE(1180)] = 45839, + [SMALL_STATE(1181)] = 45889, + [SMALL_STATE(1182)] = 45939, + [SMALL_STATE(1183)] = 45989, [SMALL_STATE(1184)] = 46083, - [SMALL_STATE(1185)] = 46174, - [SMALL_STATE(1186)] = 46271, + [SMALL_STATE(1185)] = 46178, + [SMALL_STATE(1186)] = 46239, [SMALL_STATE(1187)] = 46334, [SMALL_STATE(1188)] = 46419, [SMALL_STATE(1189)] = 46488, - [SMALL_STATE(1190)] = 46537, - [SMALL_STATE(1191)] = 46634, - [SMALL_STATE(1192)] = 46729, - [SMALL_STATE(1193)] = 46826, - [SMALL_STATE(1194)] = 46919, - [SMALL_STATE(1195)] = 47004, - [SMALL_STATE(1196)] = 47097, - [SMALL_STATE(1197)] = 47168, - [SMALL_STATE(1198)] = 47239, - [SMALL_STATE(1199)] = 47334, - [SMALL_STATE(1200)] = 47429, - [SMALL_STATE(1201)] = 47524, - [SMALL_STATE(1202)] = 47617, - [SMALL_STATE(1203)] = 47702, - [SMALL_STATE(1204)] = 47797, - [SMALL_STATE(1205)] = 47866, - [SMALL_STATE(1206)] = 47959, - [SMALL_STATE(1207)] = 48052, - [SMALL_STATE(1208)] = 48147, - [SMALL_STATE(1209)] = 48218, - [SMALL_STATE(1210)] = 48289, - [SMALL_STATE(1211)] = 48384, - [SMALL_STATE(1212)] = 48475, - [SMALL_STATE(1213)] = 48546, - [SMALL_STATE(1214)] = 48623, - [SMALL_STATE(1215)] = 48710, - [SMALL_STATE(1216)] = 48793, - [SMALL_STATE(1217)] = 48872, - [SMALL_STATE(1218)] = 48945, - [SMALL_STATE(1219)] = 49040, - [SMALL_STATE(1220)] = 49135, - [SMALL_STATE(1221)] = 49230, - [SMALL_STATE(1222)] = 49281, - [SMALL_STATE(1223)] = 49374, - [SMALL_STATE(1224)] = 49459, - [SMALL_STATE(1225)] = 49554, - [SMALL_STATE(1226)] = 49647, - [SMALL_STATE(1227)] = 49740, - [SMALL_STATE(1228)] = 49833, - [SMALL_STATE(1229)] = 49926, - [SMALL_STATE(1230)] = 49977, + [SMALL_STATE(1190)] = 46559, + [SMALL_STATE(1191)] = 46656, + [SMALL_STATE(1192)] = 46727, + [SMALL_STATE(1193)] = 46822, + [SMALL_STATE(1194)] = 46887, + [SMALL_STATE(1195)] = 46952, + [SMALL_STATE(1196)] = 47047, + [SMALL_STATE(1197)] = 47140, + [SMALL_STATE(1198)] = 47235, + [SMALL_STATE(1199)] = 47284, + [SMALL_STATE(1200)] = 47377, + [SMALL_STATE(1201)] = 47472, + [SMALL_STATE(1202)] = 47559, + [SMALL_STATE(1203)] = 47628, + [SMALL_STATE(1204)] = 47679, + [SMALL_STATE(1205)] = 47762, + [SMALL_STATE(1206)] = 47839, + [SMALL_STATE(1207)] = 47910, + [SMALL_STATE(1208)] = 48001, + [SMALL_STATE(1209)] = 48072, + [SMALL_STATE(1210)] = 48151, + [SMALL_STATE(1211)] = 48246, + [SMALL_STATE(1212)] = 48319, + [SMALL_STATE(1213)] = 48404, + [SMALL_STATE(1214)] = 48499, + [SMALL_STATE(1215)] = 48592, + [SMALL_STATE(1216)] = 48685, + [SMALL_STATE(1217)] = 48778, + [SMALL_STATE(1218)] = 48873, + [SMALL_STATE(1219)] = 48968, + [SMALL_STATE(1220)] = 49065, + [SMALL_STATE(1221)] = 49158, + [SMALL_STATE(1222)] = 49229, + [SMALL_STATE(1223)] = 49324, + [SMALL_STATE(1224)] = 49417, + [SMALL_STATE(1225)] = 49490, + [SMALL_STATE(1226)] = 49569, + [SMALL_STATE(1227)] = 49662, + [SMALL_STATE(1228)] = 49747, + [SMALL_STATE(1229)] = 49840, + [SMALL_STATE(1230)] = 49933, [SMALL_STATE(1231)] = 50026, - [SMALL_STATE(1232)] = 50119, - [SMALL_STATE(1233)] = 50212, - [SMALL_STATE(1234)] = 50307, - [SMALL_STATE(1235)] = 50378, - [SMALL_STATE(1236)] = 50455, - [SMALL_STATE(1237)] = 50542, - [SMALL_STATE(1238)] = 50625, - [SMALL_STATE(1239)] = 50720, - [SMALL_STATE(1240)] = 50815, - [SMALL_STATE(1241)] = 50876, - [SMALL_STATE(1242)] = 50945, - [SMALL_STATE(1243)] = 51024, - [SMALL_STATE(1244)] = 51097, - [SMALL_STATE(1245)] = 51190, - [SMALL_STATE(1246)] = 51283, - [SMALL_STATE(1247)] = 51376, - [SMALL_STATE(1248)] = 51441, - [SMALL_STATE(1249)] = 51534, - [SMALL_STATE(1250)] = 51599, - [SMALL_STATE(1251)] = 51692, - [SMALL_STATE(1252)] = 51785, - [SMALL_STATE(1253)] = 51880, - [SMALL_STATE(1254)] = 51975, - [SMALL_STATE(1255)] = 52068, - [SMALL_STATE(1256)] = 52139, - [SMALL_STATE(1257)] = 52210, - [SMALL_STATE(1258)] = 52259, - [SMALL_STATE(1259)] = 52352, - [SMALL_STATE(1260)] = 52405, - [SMALL_STATE(1261)] = 52502, - [SMALL_STATE(1262)] = 52597, - [SMALL_STATE(1263)] = 52694, - [SMALL_STATE(1264)] = 52789, - [SMALL_STATE(1265)] = 52884, - [SMALL_STATE(1266)] = 52969, - [SMALL_STATE(1267)] = 53054, - [SMALL_STATE(1268)] = 53151, - [SMALL_STATE(1269)] = 53248, - [SMALL_STATE(1270)] = 53343, - [SMALL_STATE(1271)] = 53436, - [SMALL_STATE(1272)] = 53485, - [SMALL_STATE(1273)] = 53582, - [SMALL_STATE(1274)] = 53679, - [SMALL_STATE(1275)] = 53736, - [SMALL_STATE(1276)] = 53821, - [SMALL_STATE(1277)] = 53918, - [SMALL_STATE(1278)] = 53969, - [SMALL_STATE(1279)] = 54054, - [SMALL_STATE(1280)] = 54105, - [SMALL_STATE(1281)] = 54154, - [SMALL_STATE(1282)] = 54251, - [SMALL_STATE(1283)] = 54344, - [SMALL_STATE(1284)] = 54441, - [SMALL_STATE(1285)] = 54536, - [SMALL_STATE(1286)] = 54585, - [SMALL_STATE(1287)] = 54678, - [SMALL_STATE(1288)] = 54771, - [SMALL_STATE(1289)] = 54864, - [SMALL_STATE(1290)] = 54957, - [SMALL_STATE(1291)] = 55050, - [SMALL_STATE(1292)] = 55143, - [SMALL_STATE(1293)] = 55236, - [SMALL_STATE(1294)] = 55309, - [SMALL_STATE(1295)] = 55388, - [SMALL_STATE(1296)] = 55481, - [SMALL_STATE(1297)] = 55564, - [SMALL_STATE(1298)] = 55657, - [SMALL_STATE(1299)] = 55750, - [SMALL_STATE(1300)] = 55803, - [SMALL_STATE(1301)] = 55890, - [SMALL_STATE(1302)] = 55983, - [SMALL_STATE(1303)] = 56060, - [SMALL_STATE(1304)] = 56131, - [SMALL_STATE(1305)] = 56188, - [SMALL_STATE(1306)] = 56245, - [SMALL_STATE(1307)] = 56336, - [SMALL_STATE(1308)] = 56429, - [SMALL_STATE(1309)] = 56522, - [SMALL_STATE(1310)] = 56619, - [SMALL_STATE(1311)] = 56712, - [SMALL_STATE(1312)] = 56805, + [SMALL_STATE(1232)] = 50075, + [SMALL_STATE(1233)] = 50172, + [SMALL_STATE(1234)] = 50223, + [SMALL_STATE(1235)] = 50320, + [SMALL_STATE(1236)] = 50403, + [SMALL_STATE(1237)] = 50452, + [SMALL_STATE(1238)] = 50549, + [SMALL_STATE(1239)] = 50636, + [SMALL_STATE(1240)] = 50729, + [SMALL_STATE(1241)] = 50822, + [SMALL_STATE(1242)] = 50915, + [SMALL_STATE(1243)] = 50992, + [SMALL_STATE(1244)] = 51063, + [SMALL_STATE(1245)] = 51154, + [SMALL_STATE(1246)] = 51203, + [SMALL_STATE(1247)] = 51296, + [SMALL_STATE(1248)] = 51349, + [SMALL_STATE(1249)] = 51400, + [SMALL_STATE(1250)] = 51495, + [SMALL_STATE(1251)] = 51590, + [SMALL_STATE(1252)] = 51683, + [SMALL_STATE(1253)] = 51778, + [SMALL_STATE(1254)] = 51875, + [SMALL_STATE(1255)] = 51968, + [SMALL_STATE(1256)] = 52063, + [SMALL_STATE(1257)] = 52158, + [SMALL_STATE(1258)] = 52255, + [SMALL_STATE(1259)] = 52350, + [SMALL_STATE(1260)] = 52435, + [SMALL_STATE(1261)] = 52492, + [SMALL_STATE(1262)] = 52545, + [SMALL_STATE(1263)] = 52638, + [SMALL_STATE(1264)] = 52733, + [SMALL_STATE(1265)] = 52828, + [SMALL_STATE(1266)] = 52921, + [SMALL_STATE(1267)] = 53014, + [SMALL_STATE(1268)] = 53077, + [SMALL_STATE(1269)] = 53128, + [SMALL_STATE(1270)] = 53223, + [SMALL_STATE(1271)] = 53320, + [SMALL_STATE(1272)] = 53417, + [SMALL_STATE(1273)] = 53512, + [SMALL_STATE(1274)] = 53597, + [SMALL_STATE(1275)] = 53654, + [SMALL_STATE(1276)] = 53711, + [SMALL_STATE(1277)] = 53760, + [SMALL_STATE(1278)] = 53853, + [SMALL_STATE(1279)] = 53946, + [SMALL_STATE(1280)] = 54031, + [SMALL_STATE(1281)] = 54124, + [SMALL_STATE(1282)] = 54217, + [SMALL_STATE(1283)] = 54302, + [SMALL_STATE(1284)] = 54395, + [SMALL_STATE(1285)] = 54488, + [SMALL_STATE(1286)] = 54581, + [SMALL_STATE(1287)] = 54674, + [SMALL_STATE(1288)] = 54747, + [SMALL_STATE(1289)] = 54826, + [SMALL_STATE(1290)] = 54909, + [SMALL_STATE(1291)] = 54996, + [SMALL_STATE(1292)] = 55073, + [SMALL_STATE(1293)] = 55144, + [SMALL_STATE(1294)] = 55235, + [SMALL_STATE(1295)] = 55328, + [SMALL_STATE(1296)] = 55421, + [SMALL_STATE(1297)] = 55514, + [SMALL_STATE(1298)] = 55607, + [SMALL_STATE(1299)] = 55700, + [SMALL_STATE(1300)] = 55793, + [SMALL_STATE(1301)] = 55886, + [SMALL_STATE(1302)] = 55935, + [SMALL_STATE(1303)] = 56006, + [SMALL_STATE(1304)] = 56077, + [SMALL_STATE(1305)] = 56174, + [SMALL_STATE(1306)] = 56267, + [SMALL_STATE(1307)] = 56360, + [SMALL_STATE(1308)] = 56457, + [SMALL_STATE(1309)] = 56554, + [SMALL_STATE(1310)] = 56647, + [SMALL_STATE(1311)] = 56732, + [SMALL_STATE(1312)] = 56801, [SMALL_STATE(1313)] = 56898, - [SMALL_STATE(1314)] = 56995, + [SMALL_STATE(1314)] = 56991, [SMALL_STATE(1315)] = 57088, - [SMALL_STATE(1316)] = 57146, - [SMALL_STATE(1317)] = 57206, - [SMALL_STATE(1318)] = 57258, - [SMALL_STATE(1319)] = 57310, - [SMALL_STATE(1320)] = 57402, - [SMALL_STATE(1321)] = 57452, - [SMALL_STATE(1322)] = 57546, - [SMALL_STATE(1323)] = 57606, - [SMALL_STATE(1324)] = 57658, - [SMALL_STATE(1325)] = 57750, - [SMALL_STATE(1326)] = 57844, - [SMALL_STATE(1327)] = 57906, - [SMALL_STATE(1328)] = 57958, - [SMALL_STATE(1329)] = 58052, - [SMALL_STATE(1330)] = 58144, - [SMALL_STATE(1331)] = 58236, - [SMALL_STATE(1332)] = 58328, - [SMALL_STATE(1333)] = 58380, - [SMALL_STATE(1334)] = 58436, - [SMALL_STATE(1335)] = 58530, - [SMALL_STATE(1336)] = 58580, - [SMALL_STATE(1337)] = 58640, - [SMALL_STATE(1338)] = 58732, - [SMALL_STATE(1339)] = 58784, - [SMALL_STATE(1340)] = 58876, - [SMALL_STATE(1341)] = 58970, - [SMALL_STATE(1342)] = 59064, - [SMALL_STATE(1343)] = 59116, - [SMALL_STATE(1344)] = 59210, - [SMALL_STATE(1345)] = 59304, - [SMALL_STATE(1346)] = 59358, - [SMALL_STATE(1347)] = 59410, - [SMALL_STATE(1348)] = 59504, - [SMALL_STATE(1349)] = 59556, - [SMALL_STATE(1350)] = 59648, - [SMALL_STATE(1351)] = 59742, - [SMALL_STATE(1352)] = 59834, - [SMALL_STATE(1353)] = 59928, - [SMALL_STATE(1354)] = 60022, - [SMALL_STATE(1355)] = 60114, - [SMALL_STATE(1356)] = 60206, - [SMALL_STATE(1357)] = 60298, - [SMALL_STATE(1358)] = 60392, - [SMALL_STATE(1359)] = 60486, - [SMALL_STATE(1360)] = 60538, - [SMALL_STATE(1361)] = 60590, - [SMALL_STATE(1362)] = 60650, - [SMALL_STATE(1363)] = 60702, - [SMALL_STATE(1364)] = 60758, - [SMALL_STATE(1365)] = 60852, - [SMALL_STATE(1366)] = 60904, - [SMALL_STATE(1367)] = 60998, - [SMALL_STATE(1368)] = 61050, - [SMALL_STATE(1369)] = 61144, - [SMALL_STATE(1370)] = 61236, - [SMALL_STATE(1371)] = 61286, - [SMALL_STATE(1372)] = 61378, - [SMALL_STATE(1373)] = 61470, - [SMALL_STATE(1374)] = 61564, - [SMALL_STATE(1375)] = 61658, - [SMALL_STATE(1376)] = 61752, - [SMALL_STATE(1377)] = 61842, - [SMALL_STATE(1378)] = 61936, - [SMALL_STATE(1379)] = 62006, - [SMALL_STATE(1380)] = 62100, - [SMALL_STATE(1381)] = 62194, - [SMALL_STATE(1382)] = 62244, - [SMALL_STATE(1383)] = 62320, - [SMALL_STATE(1384)] = 62406, - [SMALL_STATE(1385)] = 62458, - [SMALL_STATE(1386)] = 62510, - [SMALL_STATE(1387)] = 62562, - [SMALL_STATE(1388)] = 62656, - [SMALL_STATE(1389)] = 62724, - [SMALL_STATE(1390)] = 62816, - [SMALL_STATE(1391)] = 62908, - [SMALL_STATE(1392)] = 62978, - [SMALL_STATE(1393)] = 63048, - [SMALL_STATE(1394)] = 63140, - [SMALL_STATE(1395)] = 63232, - [SMALL_STATE(1396)] = 63326, - [SMALL_STATE(1397)] = 63418, - [SMALL_STATE(1398)] = 63510, - [SMALL_STATE(1399)] = 63592, - [SMALL_STATE(1400)] = 63686, - [SMALL_STATE(1401)] = 63778, - [SMALL_STATE(1402)] = 63834, - [SMALL_STATE(1403)] = 63886, - [SMALL_STATE(1404)] = 63978, - [SMALL_STATE(1405)] = 64070, - [SMALL_STATE(1406)] = 64162, - [SMALL_STATE(1407)] = 64256, - [SMALL_STATE(1408)] = 64328, - [SMALL_STATE(1409)] = 64380, - [SMALL_STATE(1410)] = 64474, + [SMALL_STATE(1316)] = 57180, + [SMALL_STATE(1317)] = 57232, + [SMALL_STATE(1318)] = 57286, + [SMALL_STATE(1319)] = 57346, + [SMALL_STATE(1320)] = 57396, + [SMALL_STATE(1321)] = 57448, + [SMALL_STATE(1322)] = 57542, + [SMALL_STATE(1323)] = 57602, + [SMALL_STATE(1324)] = 57696, + [SMALL_STATE(1325)] = 57746, + [SMALL_STATE(1326)] = 57798, + [SMALL_STATE(1327)] = 57890, + [SMALL_STATE(1328)] = 57942, + [SMALL_STATE(1329)] = 58034, + [SMALL_STATE(1330)] = 58086, + [SMALL_STATE(1331)] = 58180, + [SMALL_STATE(1332)] = 58232, + [SMALL_STATE(1333)] = 58282, + [SMALL_STATE(1334)] = 58374, + [SMALL_STATE(1335)] = 58444, + [SMALL_STATE(1336)] = 58496, + [SMALL_STATE(1337)] = 58566, + [SMALL_STATE(1338)] = 58658, + [SMALL_STATE(1339)] = 58752, + [SMALL_STATE(1340)] = 58844, + [SMALL_STATE(1341)] = 58936, + [SMALL_STATE(1342)] = 59030, + [SMALL_STATE(1343)] = 59098, + [SMALL_STATE(1344)] = 59148, + [SMALL_STATE(1345)] = 59240, + [SMALL_STATE(1346)] = 59332, + [SMALL_STATE(1347)] = 59390, + [SMALL_STATE(1348)] = 59484, + [SMALL_STATE(1349)] = 59576, + [SMALL_STATE(1350)] = 59628, + [SMALL_STATE(1351)] = 59722, + [SMALL_STATE(1352)] = 59816, + [SMALL_STATE(1353)] = 59908, + [SMALL_STATE(1354)] = 60002, + [SMALL_STATE(1355)] = 60058, + [SMALL_STATE(1356)] = 60110, + [SMALL_STATE(1357)] = 60170, + [SMALL_STATE(1358)] = 60222, + [SMALL_STATE(1359)] = 60314, + [SMALL_STATE(1360)] = 60406, + [SMALL_STATE(1361)] = 60496, + [SMALL_STATE(1362)] = 60590, + [SMALL_STATE(1363)] = 60682, + [SMALL_STATE(1364)] = 60774, + [SMALL_STATE(1365)] = 60844, + [SMALL_STATE(1366)] = 60936, + [SMALL_STATE(1367)] = 61012, + [SMALL_STATE(1368)] = 61106, + [SMALL_STATE(1369)] = 61192, + [SMALL_STATE(1370)] = 61286, + [SMALL_STATE(1371)] = 61380, + [SMALL_STATE(1372)] = 61474, + [SMALL_STATE(1373)] = 61526, + [SMALL_STATE(1374)] = 61620, + [SMALL_STATE(1375)] = 61714, + [SMALL_STATE(1376)] = 61808, + [SMALL_STATE(1377)] = 61860, + [SMALL_STATE(1378)] = 61954, + [SMALL_STATE(1379)] = 62048, + [SMALL_STATE(1380)] = 62104, + [SMALL_STATE(1381)] = 62160, + [SMALL_STATE(1382)] = 62254, + [SMALL_STATE(1383)] = 62336, + [SMALL_STATE(1384)] = 62396, + [SMALL_STATE(1385)] = 62448, + [SMALL_STATE(1386)] = 62526, + [SMALL_STATE(1387)] = 62618, + [SMALL_STATE(1388)] = 62670, + [SMALL_STATE(1389)] = 62742, + [SMALL_STATE(1390)] = 62834, + [SMALL_STATE(1391)] = 62926, + [SMALL_STATE(1392)] = 63018, + [SMALL_STATE(1393)] = 63070, + [SMALL_STATE(1394)] = 63164, + [SMALL_STATE(1395)] = 63256, + [SMALL_STATE(1396)] = 63348, + [SMALL_STATE(1397)] = 63400, + [SMALL_STATE(1398)] = 63494, + [SMALL_STATE(1399)] = 63588, + [SMALL_STATE(1400)] = 63640, + [SMALL_STATE(1401)] = 63734, + [SMALL_STATE(1402)] = 63828, + [SMALL_STATE(1403)] = 63922, + [SMALL_STATE(1404)] = 63974, + [SMALL_STATE(1405)] = 64036, + [SMALL_STATE(1406)] = 64128, + [SMALL_STATE(1407)] = 64180, + [SMALL_STATE(1408)] = 64272, + [SMALL_STATE(1409)] = 64366, + [SMALL_STATE(1410)] = 64460, [SMALL_STATE(1411)] = 64552, - [SMALL_STATE(1412)] = 64599, - [SMALL_STATE(1413)] = 64684, - [SMALL_STATE(1414)] = 64735, - [SMALL_STATE(1415)] = 64820, - [SMALL_STATE(1416)] = 64867, - [SMALL_STATE(1417)] = 64918, - [SMALL_STATE(1418)] = 65009, - [SMALL_STATE(1419)] = 65056, - [SMALL_STATE(1420)] = 65103, - [SMALL_STATE(1421)] = 65156, - [SMALL_STATE(1422)] = 65203, - [SMALL_STATE(1423)] = 65288, - [SMALL_STATE(1424)] = 65335, - [SMALL_STATE(1425)] = 65384, - [SMALL_STATE(1426)] = 65431, - [SMALL_STATE(1427)] = 65478, - [SMALL_STATE(1428)] = 65525, - [SMALL_STATE(1429)] = 65580, - [SMALL_STATE(1430)] = 65627, - [SMALL_STATE(1431)] = 65674, - [SMALL_STATE(1432)] = 65721, - [SMALL_STATE(1433)] = 65768, - [SMALL_STATE(1434)] = 65815, - [SMALL_STATE(1435)] = 65862, - [SMALL_STATE(1436)] = 65909, - [SMALL_STATE(1437)] = 65966, - [SMALL_STATE(1438)] = 66013, - [SMALL_STATE(1439)] = 66060, - [SMALL_STATE(1440)] = 66123, - [SMALL_STATE(1441)] = 66180, - [SMALL_STATE(1442)] = 66235, - [SMALL_STATE(1443)] = 66282, - [SMALL_STATE(1444)] = 66331, - [SMALL_STATE(1445)] = 66378, - [SMALL_STATE(1446)] = 66425, - [SMALL_STATE(1447)] = 66516, - [SMALL_STATE(1448)] = 66573, - [SMALL_STATE(1449)] = 66620, - [SMALL_STATE(1450)] = 66667, - [SMALL_STATE(1451)] = 66722, - [SMALL_STATE(1452)] = 66769, - [SMALL_STATE(1453)] = 66818, - [SMALL_STATE(1454)] = 66865, - [SMALL_STATE(1455)] = 66912, - [SMALL_STATE(1456)] = 66959, - [SMALL_STATE(1457)] = 67014, - [SMALL_STATE(1458)] = 67061, - [SMALL_STATE(1459)] = 67152, - [SMALL_STATE(1460)] = 67203, - [SMALL_STATE(1461)] = 67258, - [SMALL_STATE(1462)] = 67305, - [SMALL_STATE(1463)] = 67360, - [SMALL_STATE(1464)] = 67407, - [SMALL_STATE(1465)] = 67454, - [SMALL_STATE(1466)] = 67501, - [SMALL_STATE(1467)] = 67548, - [SMALL_STATE(1468)] = 67595, - [SMALL_STATE(1469)] = 67642, - [SMALL_STATE(1470)] = 67693, - [SMALL_STATE(1471)] = 67740, - [SMALL_STATE(1472)] = 67787, - [SMALL_STATE(1473)] = 67842, - [SMALL_STATE(1474)] = 67893, - [SMALL_STATE(1475)] = 67940, - [SMALL_STATE(1476)] = 67987, - [SMALL_STATE(1477)] = 68034, - [SMALL_STATE(1478)] = 68085, - [SMALL_STATE(1479)] = 68132, - [SMALL_STATE(1480)] = 68179, - [SMALL_STATE(1481)] = 68230, - [SMALL_STATE(1482)] = 68277, - [SMALL_STATE(1483)] = 68324, - [SMALL_STATE(1484)] = 68371, - [SMALL_STATE(1485)] = 68422, - [SMALL_STATE(1486)] = 68471, - [SMALL_STATE(1487)] = 68556, - [SMALL_STATE(1488)] = 68603, - [SMALL_STATE(1489)] = 68650, - [SMALL_STATE(1490)] = 68697, - [SMALL_STATE(1491)] = 68744, - [SMALL_STATE(1492)] = 68805, - [SMALL_STATE(1493)] = 68896, - [SMALL_STATE(1494)] = 68943, - [SMALL_STATE(1495)] = 68996, - [SMALL_STATE(1496)] = 69047, - [SMALL_STATE(1497)] = 69094, - [SMALL_STATE(1498)] = 69141, - [SMALL_STATE(1499)] = 69202, - [SMALL_STATE(1500)] = 69249, - [SMALL_STATE(1501)] = 69310, - [SMALL_STATE(1502)] = 69357, - [SMALL_STATE(1503)] = 69406, - [SMALL_STATE(1504)] = 69453, - [SMALL_STATE(1505)] = 69500, - [SMALL_STATE(1506)] = 69547, - [SMALL_STATE(1507)] = 69594, - [SMALL_STATE(1508)] = 69641, - [SMALL_STATE(1509)] = 69692, - [SMALL_STATE(1510)] = 69743, - [SMALL_STATE(1511)] = 69790, - [SMALL_STATE(1512)] = 69881, - [SMALL_STATE(1513)] = 69928, - [SMALL_STATE(1514)] = 69977, - [SMALL_STATE(1515)] = 70026, - [SMALL_STATE(1516)] = 70073, - [SMALL_STATE(1517)] = 70120, - [SMALL_STATE(1518)] = 70167, - [SMALL_STATE(1519)] = 70214, - [SMALL_STATE(1520)] = 70261, - [SMALL_STATE(1521)] = 70320, - [SMALL_STATE(1522)] = 70371, - [SMALL_STATE(1523)] = 70418, - [SMALL_STATE(1524)] = 70465, - [SMALL_STATE(1525)] = 70512, - [SMALL_STATE(1526)] = 70559, - [SMALL_STATE(1527)] = 70606, - [SMALL_STATE(1528)] = 70691, - [SMALL_STATE(1529)] = 70782, - [SMALL_STATE(1530)] = 70829, - [SMALL_STATE(1531)] = 70876, - [SMALL_STATE(1532)] = 70967, - [SMALL_STATE(1533)] = 71014, - [SMALL_STATE(1534)] = 71061, - [SMALL_STATE(1535)] = 71116, - [SMALL_STATE(1536)] = 71175, - [SMALL_STATE(1537)] = 71222, - [SMALL_STATE(1538)] = 71271, - [SMALL_STATE(1539)] = 71320, - [SMALL_STATE(1540)] = 71367, - [SMALL_STATE(1541)] = 71414, - [SMALL_STATE(1542)] = 71461, - [SMALL_STATE(1543)] = 71508, - [SMALL_STATE(1544)] = 71555, - [SMALL_STATE(1545)] = 71602, - [SMALL_STATE(1546)] = 71649, - [SMALL_STATE(1547)] = 71706, - [SMALL_STATE(1548)] = 71753, - [SMALL_STATE(1549)] = 71800, + [SMALL_STATE(1412)] = 64603, + [SMALL_STATE(1413)] = 64650, + [SMALL_STATE(1414)] = 64697, + [SMALL_STATE(1415)] = 64744, + [SMALL_STATE(1416)] = 64791, + [SMALL_STATE(1417)] = 64838, + [SMALL_STATE(1418)] = 64885, + [SMALL_STATE(1419)] = 64932, + [SMALL_STATE(1420)] = 64979, + [SMALL_STATE(1421)] = 65064, + [SMALL_STATE(1422)] = 65111, + [SMALL_STATE(1423)] = 65158, + [SMALL_STATE(1424)] = 65205, + [SMALL_STATE(1425)] = 65262, + [SMALL_STATE(1426)] = 65309, + [SMALL_STATE(1427)] = 65356, + [SMALL_STATE(1428)] = 65403, + [SMALL_STATE(1429)] = 65450, + [SMALL_STATE(1430)] = 65513, + [SMALL_STATE(1431)] = 65560, + [SMALL_STATE(1432)] = 65607, + [SMALL_STATE(1433)] = 65662, + [SMALL_STATE(1434)] = 65717, + [SMALL_STATE(1435)] = 65764, + [SMALL_STATE(1436)] = 65815, + [SMALL_STATE(1437)] = 65862, + [SMALL_STATE(1438)] = 65909, + [SMALL_STATE(1439)] = 65956, + [SMALL_STATE(1440)] = 66007, + [SMALL_STATE(1441)] = 66054, + [SMALL_STATE(1442)] = 66105, + [SMALL_STATE(1443)] = 66152, + [SMALL_STATE(1444)] = 66199, + [SMALL_STATE(1445)] = 66248, + [SMALL_STATE(1446)] = 66295, + [SMALL_STATE(1447)] = 66342, + [SMALL_STATE(1448)] = 66393, + [SMALL_STATE(1449)] = 66452, + [SMALL_STATE(1450)] = 66499, + [SMALL_STATE(1451)] = 66546, + [SMALL_STATE(1452)] = 66597, + [SMALL_STATE(1453)] = 66644, + [SMALL_STATE(1454)] = 66691, + [SMALL_STATE(1455)] = 66738, + [SMALL_STATE(1456)] = 66785, + [SMALL_STATE(1457)] = 66832, + [SMALL_STATE(1458)] = 66879, + [SMALL_STATE(1459)] = 66970, + [SMALL_STATE(1460)] = 67021, + [SMALL_STATE(1461)] = 67070, + [SMALL_STATE(1462)] = 67129, + [SMALL_STATE(1463)] = 67186, + [SMALL_STATE(1464)] = 67235, + [SMALL_STATE(1465)] = 67326, + [SMALL_STATE(1466)] = 67373, + [SMALL_STATE(1467)] = 67430, + [SMALL_STATE(1468)] = 67487, + [SMALL_STATE(1469)] = 67546, + [SMALL_STATE(1470)] = 67593, + [SMALL_STATE(1471)] = 67684, + [SMALL_STATE(1472)] = 67731, + [SMALL_STATE(1473)] = 67778, + [SMALL_STATE(1474)] = 67831, + [SMALL_STATE(1475)] = 67922, + [SMALL_STATE(1476)] = 67981, + [SMALL_STATE(1477)] = 68042, + [SMALL_STATE(1478)] = 68103, + [SMALL_STATE(1479)] = 68150, + [SMALL_STATE(1480)] = 68205, + [SMALL_STATE(1481)] = 68252, + [SMALL_STATE(1482)] = 68313, + [SMALL_STATE(1483)] = 68362, + [SMALL_STATE(1484)] = 68447, + [SMALL_STATE(1485)] = 68498, + [SMALL_STATE(1486)] = 68553, + [SMALL_STATE(1487)] = 68600, + [SMALL_STATE(1488)] = 68647, + [SMALL_STATE(1489)] = 68698, + [SMALL_STATE(1490)] = 68745, + [SMALL_STATE(1491)] = 68792, + [SMALL_STATE(1492)] = 68839, + [SMALL_STATE(1493)] = 68886, + [SMALL_STATE(1494)] = 68933, + [SMALL_STATE(1495)] = 68980, + [SMALL_STATE(1496)] = 69027, + [SMALL_STATE(1497)] = 69074, + [SMALL_STATE(1498)] = 69121, + [SMALL_STATE(1499)] = 69168, + [SMALL_STATE(1500)] = 69253, + [SMALL_STATE(1501)] = 69300, + [SMALL_STATE(1502)] = 69347, + [SMALL_STATE(1503)] = 69394, + [SMALL_STATE(1504)] = 69445, + [SMALL_STATE(1505)] = 69536, + [SMALL_STATE(1506)] = 69583, + [SMALL_STATE(1507)] = 69630, + [SMALL_STATE(1508)] = 69681, + [SMALL_STATE(1509)] = 69728, + [SMALL_STATE(1510)] = 69777, + [SMALL_STATE(1511)] = 69824, + [SMALL_STATE(1512)] = 69871, + [SMALL_STATE(1513)] = 69962, + [SMALL_STATE(1514)] = 70009, + [SMALL_STATE(1515)] = 70056, + [SMALL_STATE(1516)] = 70103, + [SMALL_STATE(1517)] = 70150, + [SMALL_STATE(1518)] = 70197, + [SMALL_STATE(1519)] = 70244, + [SMALL_STATE(1520)] = 70291, + [SMALL_STATE(1521)] = 70382, + [SMALL_STATE(1522)] = 70429, + [SMALL_STATE(1523)] = 70476, + [SMALL_STATE(1524)] = 70523, + [SMALL_STATE(1525)] = 70570, + [SMALL_STATE(1526)] = 70617, + [SMALL_STATE(1527)] = 70664, + [SMALL_STATE(1528)] = 70711, + [SMALL_STATE(1529)] = 70758, + [SMALL_STATE(1530)] = 70805, + [SMALL_STATE(1531)] = 70852, + [SMALL_STATE(1532)] = 70901, + [SMALL_STATE(1533)] = 70948, + [SMALL_STATE(1534)] = 71003, + [SMALL_STATE(1535)] = 71058, + [SMALL_STATE(1536)] = 71107, + [SMALL_STATE(1537)] = 71164, + [SMALL_STATE(1538)] = 71249, + [SMALL_STATE(1539)] = 71296, + [SMALL_STATE(1540)] = 71343, + [SMALL_STATE(1541)] = 71392, + [SMALL_STATE(1542)] = 71477, + [SMALL_STATE(1543)] = 71524, + [SMALL_STATE(1544)] = 71571, + [SMALL_STATE(1545)] = 71618, + [SMALL_STATE(1546)] = 71667, + [SMALL_STATE(1547)] = 71716, + [SMALL_STATE(1548)] = 71763, + [SMALL_STATE(1549)] = 71810, [SMALL_STATE(1550)] = 71857, - [SMALL_STATE(1551)] = 71948, - [SMALL_STATE(1552)] = 71995, - [SMALL_STATE(1553)] = 72086, - [SMALL_STATE(1554)] = 72135, - [SMALL_STATE(1555)] = 72194, - [SMALL_STATE(1556)] = 72241, - [SMALL_STATE(1557)] = 72288, - [SMALL_STATE(1558)] = 72347, - [SMALL_STATE(1559)] = 72394, + [SMALL_STATE(1551)] = 71904, + [SMALL_STATE(1552)] = 71951, + [SMALL_STATE(1553)] = 72002, + [SMALL_STATE(1554)] = 72049, + [SMALL_STATE(1555)] = 72104, + [SMALL_STATE(1556)] = 72151, + [SMALL_STATE(1557)] = 72204, + [SMALL_STATE(1558)] = 72295, + [SMALL_STATE(1559)] = 72350, [SMALL_STATE(1560)] = 72441, - [SMALL_STATE(1561)] = 72521, - [SMALL_STATE(1562)] = 72567, - [SMALL_STATE(1563)] = 72631, - [SMALL_STATE(1564)] = 72677, - [SMALL_STATE(1565)] = 72757, - [SMALL_STATE(1566)] = 72803, - [SMALL_STATE(1567)] = 72849, - [SMALL_STATE(1568)] = 72929, - [SMALL_STATE(1569)] = 72975, - [SMALL_STATE(1570)] = 73021, - [SMALL_STATE(1571)] = 73067, - [SMALL_STATE(1572)] = 73113, - [SMALL_STATE(1573)] = 73159, - [SMALL_STATE(1574)] = 73205, - [SMALL_STATE(1575)] = 73251, - [SMALL_STATE(1576)] = 73307, - [SMALL_STATE(1577)] = 73357, - [SMALL_STATE(1578)] = 73403, - [SMALL_STATE(1579)] = 73483, - [SMALL_STATE(1580)] = 73533, - [SMALL_STATE(1581)] = 73579, - [SMALL_STATE(1582)] = 73625, - [SMALL_STATE(1583)] = 73713, - [SMALL_STATE(1584)] = 73793, - [SMALL_STATE(1585)] = 73843, - [SMALL_STATE(1586)] = 73889, - [SMALL_STATE(1587)] = 73939, - [SMALL_STATE(1588)] = 73985, - [SMALL_STATE(1589)] = 74031, - [SMALL_STATE(1590)] = 74081, - [SMALL_STATE(1591)] = 74127, - [SMALL_STATE(1592)] = 74173, - [SMALL_STATE(1593)] = 74237, - [SMALL_STATE(1594)] = 74287, - [SMALL_STATE(1595)] = 74333, - [SMALL_STATE(1596)] = 74379, - [SMALL_STATE(1597)] = 74433, - [SMALL_STATE(1598)] = 74479, - [SMALL_STATE(1599)] = 74525, - [SMALL_STATE(1600)] = 74579, - [SMALL_STATE(1601)] = 74625, - [SMALL_STATE(1602)] = 74671, - [SMALL_STATE(1603)] = 74717, - [SMALL_STATE(1604)] = 74763, - [SMALL_STATE(1605)] = 74809, - [SMALL_STATE(1606)] = 74855, - [SMALL_STATE(1607)] = 74901, - [SMALL_STATE(1608)] = 74947, - [SMALL_STATE(1609)] = 74993, - [SMALL_STATE(1610)] = 75039, - [SMALL_STATE(1611)] = 75085, - [SMALL_STATE(1612)] = 75131, - [SMALL_STATE(1613)] = 75179, - [SMALL_STATE(1614)] = 75225, - [SMALL_STATE(1615)] = 75271, - [SMALL_STATE(1616)] = 75351, - [SMALL_STATE(1617)] = 75397, - [SMALL_STATE(1618)] = 75453, - [SMALL_STATE(1619)] = 75499, - [SMALL_STATE(1620)] = 75545, - [SMALL_STATE(1621)] = 75591, - [SMALL_STATE(1622)] = 75637, - [SMALL_STATE(1623)] = 75683, - [SMALL_STATE(1624)] = 75731, - [SMALL_STATE(1625)] = 75811, - [SMALL_STATE(1626)] = 75891, - [SMALL_STATE(1627)] = 75937, - [SMALL_STATE(1628)] = 75983, - [SMALL_STATE(1629)] = 76029, - [SMALL_STATE(1630)] = 76075, - [SMALL_STATE(1631)] = 76121, - [SMALL_STATE(1632)] = 76209, - [SMALL_STATE(1633)] = 76289, - [SMALL_STATE(1634)] = 76335, - [SMALL_STATE(1635)] = 76415, - [SMALL_STATE(1636)] = 76463, - [SMALL_STATE(1637)] = 76519, - [SMALL_STATE(1638)] = 76565, - [SMALL_STATE(1639)] = 76611, - [SMALL_STATE(1640)] = 76657, - [SMALL_STATE(1641)] = 76703, - [SMALL_STATE(1642)] = 76767, + [SMALL_STATE(1561)] = 72487, + [SMALL_STATE(1562)] = 72533, + [SMALL_STATE(1563)] = 72579, + [SMALL_STATE(1564)] = 72625, + [SMALL_STATE(1565)] = 72671, + [SMALL_STATE(1566)] = 72721, + [SMALL_STATE(1567)] = 72767, + [SMALL_STATE(1568)] = 72831, + [SMALL_STATE(1569)] = 72877, + [SMALL_STATE(1570)] = 72957, + [SMALL_STATE(1571)] = 73003, + [SMALL_STATE(1572)] = 73049, + [SMALL_STATE(1573)] = 73129, + [SMALL_STATE(1574)] = 73175, + [SMALL_STATE(1575)] = 73255, + [SMALL_STATE(1576)] = 73301, + [SMALL_STATE(1577)] = 73347, + [SMALL_STATE(1578)] = 73393, + [SMALL_STATE(1579)] = 73439, + [SMALL_STATE(1580)] = 73485, + [SMALL_STATE(1581)] = 73531, + [SMALL_STATE(1582)] = 73579, + [SMALL_STATE(1583)] = 73627, + [SMALL_STATE(1584)] = 73673, + [SMALL_STATE(1585)] = 73753, + [SMALL_STATE(1586)] = 73799, + [SMALL_STATE(1587)] = 73845, + [SMALL_STATE(1588)] = 73891, + [SMALL_STATE(1589)] = 73937, + [SMALL_STATE(1590)] = 73983, + [SMALL_STATE(1591)] = 74047, + [SMALL_STATE(1592)] = 74127, + [SMALL_STATE(1593)] = 74183, + [SMALL_STATE(1594)] = 74251, + [SMALL_STATE(1595)] = 74331, + [SMALL_STATE(1596)] = 74377, + [SMALL_STATE(1597)] = 74465, + [SMALL_STATE(1598)] = 74511, + [SMALL_STATE(1599)] = 74559, + [SMALL_STATE(1600)] = 74605, + [SMALL_STATE(1601)] = 74685, + [SMALL_STATE(1602)] = 74765, + [SMALL_STATE(1603)] = 74811, + [SMALL_STATE(1604)] = 74857, + [SMALL_STATE(1605)] = 74903, + [SMALL_STATE(1606)] = 74949, + [SMALL_STATE(1607)] = 74995, + [SMALL_STATE(1608)] = 75041, + [SMALL_STATE(1609)] = 75121, + [SMALL_STATE(1610)] = 75167, + [SMALL_STATE(1611)] = 75213, + [SMALL_STATE(1612)] = 75279, + [SMALL_STATE(1613)] = 75325, + [SMALL_STATE(1614)] = 75371, + [SMALL_STATE(1615)] = 75417, + [SMALL_STATE(1616)] = 75485, + [SMALL_STATE(1617)] = 75531, + [SMALL_STATE(1618)] = 75577, + [SMALL_STATE(1619)] = 75657, + [SMALL_STATE(1620)] = 75703, + [SMALL_STATE(1621)] = 75749, + [SMALL_STATE(1622)] = 75795, + [SMALL_STATE(1623)] = 75841, + [SMALL_STATE(1624)] = 75907, + [SMALL_STATE(1625)] = 75953, + [SMALL_STATE(1626)] = 75999, + [SMALL_STATE(1627)] = 76045, + [SMALL_STATE(1628)] = 76091, + [SMALL_STATE(1629)] = 76137, + [SMALL_STATE(1630)] = 76193, + [SMALL_STATE(1631)] = 76239, + [SMALL_STATE(1632)] = 76285, + [SMALL_STATE(1633)] = 76331, + [SMALL_STATE(1634)] = 76377, + [SMALL_STATE(1635)] = 76423, + [SMALL_STATE(1636)] = 76469, + [SMALL_STATE(1637)] = 76515, + [SMALL_STATE(1638)] = 76561, + [SMALL_STATE(1639)] = 76607, + [SMALL_STATE(1640)] = 76653, + [SMALL_STATE(1641)] = 76699, + [SMALL_STATE(1642)] = 76745, [SMALL_STATE(1643)] = 76833, - [SMALL_STATE(1644)] = 76879, - [SMALL_STATE(1645)] = 76925, - [SMALL_STATE(1646)] = 76993, - [SMALL_STATE(1647)] = 77039, - [SMALL_STATE(1648)] = 77107, - [SMALL_STATE(1649)] = 77153, - [SMALL_STATE(1650)] = 77221, - [SMALL_STATE(1651)] = 77277, - [SMALL_STATE(1652)] = 77343, - [SMALL_STATE(1653)] = 77389, - [SMALL_STATE(1654)] = 77435, - [SMALL_STATE(1655)] = 77481, - [SMALL_STATE(1656)] = 77527, - [SMALL_STATE(1657)] = 77573, - [SMALL_STATE(1658)] = 77619, - [SMALL_STATE(1659)] = 77665, - [SMALL_STATE(1660)] = 77745, - [SMALL_STATE(1661)] = 77825, - [SMALL_STATE(1662)] = 77871, - [SMALL_STATE(1663)] = 77917, - [SMALL_STATE(1664)] = 77973, - [SMALL_STATE(1665)] = 78019, - [SMALL_STATE(1666)] = 78065, - [SMALL_STATE(1667)] = 78145, - [SMALL_STATE(1668)] = 78191, - [SMALL_STATE(1669)] = 78237, - [SMALL_STATE(1670)] = 78317, - [SMALL_STATE(1671)] = 78373, - [SMALL_STATE(1672)] = 78419, - [SMALL_STATE(1673)] = 78465, - [SMALL_STATE(1674)] = 78511, - [SMALL_STATE(1675)] = 78557, - [SMALL_STATE(1676)] = 78603, - [SMALL_STATE(1677)] = 78649, - [SMALL_STATE(1678)] = 78695, - [SMALL_STATE(1679)] = 78741, - [SMALL_STATE(1680)] = 78787, - [SMALL_STATE(1681)] = 78875, - [SMALL_STATE(1682)] = 78941, - [SMALL_STATE(1683)] = 79005, - [SMALL_STATE(1684)] = 79051, - [SMALL_STATE(1685)] = 79097, - [SMALL_STATE(1686)] = 79143, - [SMALL_STATE(1687)] = 79189, - [SMALL_STATE(1688)] = 79237, + [SMALL_STATE(1644)] = 76913, + [SMALL_STATE(1645)] = 76959, + [SMALL_STATE(1646)] = 77005, + [SMALL_STATE(1647)] = 77051, + [SMALL_STATE(1648)] = 77097, + [SMALL_STATE(1649)] = 77143, + [SMALL_STATE(1650)] = 77189, + [SMALL_STATE(1651)] = 77235, + [SMALL_STATE(1652)] = 77291, + [SMALL_STATE(1653)] = 77337, + [SMALL_STATE(1654)] = 77383, + [SMALL_STATE(1655)] = 77429, + [SMALL_STATE(1656)] = 77475, + [SMALL_STATE(1657)] = 77521, + [SMALL_STATE(1658)] = 77609, + [SMALL_STATE(1659)] = 77655, + [SMALL_STATE(1660)] = 77701, + [SMALL_STATE(1661)] = 77747, + [SMALL_STATE(1662)] = 77827, + [SMALL_STATE(1663)] = 77873, + [SMALL_STATE(1664)] = 77929, + [SMALL_STATE(1665)] = 77975, + [SMALL_STATE(1666)] = 78021, + [SMALL_STATE(1667)] = 78075, + [SMALL_STATE(1668)] = 78121, + [SMALL_STATE(1669)] = 78185, + [SMALL_STATE(1670)] = 78231, + [SMALL_STATE(1671)] = 78285, + [SMALL_STATE(1672)] = 78331, + [SMALL_STATE(1673)] = 78399, + [SMALL_STATE(1674)] = 78463, + [SMALL_STATE(1675)] = 78531, + [SMALL_STATE(1676)] = 78577, + [SMALL_STATE(1677)] = 78625, + [SMALL_STATE(1678)] = 78705, + [SMALL_STATE(1679)] = 78771, + [SMALL_STATE(1680)] = 78817, + [SMALL_STATE(1681)] = 78873, + [SMALL_STATE(1682)] = 78923, + [SMALL_STATE(1683)] = 78989, + [SMALL_STATE(1684)] = 79035, + [SMALL_STATE(1685)] = 79081, + [SMALL_STATE(1686)] = 79127, + [SMALL_STATE(1687)] = 79177, + [SMALL_STATE(1688)] = 79227, [SMALL_STATE(1689)] = 79283, - [SMALL_STATE(1690)] = 79351, - [SMALL_STATE(1691)] = 79407, - [SMALL_STATE(1692)] = 79453, - [SMALL_STATE(1693)] = 79499, - [SMALL_STATE(1694)] = 79565, - [SMALL_STATE(1695)] = 79611, - [SMALL_STATE(1696)] = 79657, - [SMALL_STATE(1697)] = 79709, - [SMALL_STATE(1698)] = 79755, - [SMALL_STATE(1699)] = 79801, + [SMALL_STATE(1690)] = 79329, + [SMALL_STATE(1691)] = 79375, + [SMALL_STATE(1692)] = 79425, + [SMALL_STATE(1693)] = 79477, + [SMALL_STATE(1694)] = 79523, + [SMALL_STATE(1695)] = 79569, + [SMALL_STATE(1696)] = 79649, + [SMALL_STATE(1697)] = 79699, + [SMALL_STATE(1698)] = 79745, + [SMALL_STATE(1699)] = 79791, [SMALL_STATE(1700)] = 79847, [SMALL_STATE(1701)] = 79910, - [SMALL_STATE(1702)] = 79973, - [SMALL_STATE(1703)] = 80028, - [SMALL_STATE(1704)] = 80085, - [SMALL_STATE(1705)] = 80142, - [SMALL_STATE(1706)] = 80197, - [SMALL_STATE(1707)] = 80256, - [SMALL_STATE(1708)] = 80315, - [SMALL_STATE(1709)] = 80380, - [SMALL_STATE(1710)] = 80437, - [SMALL_STATE(1711)] = 80496, - [SMALL_STATE(1712)] = 80553, - [SMALL_STATE(1713)] = 80608, - [SMALL_STATE(1714)] = 80675, - [SMALL_STATE(1715)] = 80738, + [SMALL_STATE(1702)] = 79965, + [SMALL_STATE(1703)] = 80020, + [SMALL_STATE(1704)] = 80079, + [SMALL_STATE(1705)] = 80138, + [SMALL_STATE(1706)] = 80201, + [SMALL_STATE(1707)] = 80268, + [SMALL_STATE(1708)] = 80331, + [SMALL_STATE(1709)] = 80396, + [SMALL_STATE(1710)] = 80453, + [SMALL_STATE(1711)] = 80510, + [SMALL_STATE(1712)] = 80569, + [SMALL_STATE(1713)] = 80628, + [SMALL_STATE(1714)] = 80685, + [SMALL_STATE(1715)] = 80742, [SMALL_STATE(1716)] = 80797, [SMALL_STATE(1717)] = 80855, - [SMALL_STATE(1718)] = 80913, - [SMALL_STATE(1719)] = 80971, - [SMALL_STATE(1720)] = 81031, - [SMALL_STATE(1721)] = 81089, - [SMALL_STATE(1722)] = 81147, - [SMALL_STATE(1723)] = 81205, - [SMALL_STATE(1724)] = 81263, - [SMALL_STATE(1725)] = 81321, - [SMALL_STATE(1726)] = 81381, - [SMALL_STATE(1727)] = 81441, - [SMALL_STATE(1728)] = 81487, - [SMALL_STATE(1729)] = 81545, - [SMALL_STATE(1730)] = 81607, - [SMALL_STATE(1731)] = 81667, - [SMALL_STATE(1732)] = 81725, - [SMALL_STATE(1733)] = 81785, - [SMALL_STATE(1734)] = 81845, - [SMALL_STATE(1735)] = 81907, - [SMALL_STATE(1736)] = 81969, - [SMALL_STATE(1737)] = 82029, - [SMALL_STATE(1738)] = 82087, - [SMALL_STATE(1739)] = 82145, - [SMALL_STATE(1740)] = 82207, + [SMALL_STATE(1718)] = 80915, + [SMALL_STATE(1719)] = 80977, + [SMALL_STATE(1720)] = 81035, + [SMALL_STATE(1721)] = 81095, + [SMALL_STATE(1722)] = 81153, + [SMALL_STATE(1723)] = 81213, + [SMALL_STATE(1724)] = 81271, + [SMALL_STATE(1725)] = 81329, + [SMALL_STATE(1726)] = 81389, + [SMALL_STATE(1727)] = 81451, + [SMALL_STATE(1728)] = 81511, + [SMALL_STATE(1729)] = 81573, + [SMALL_STATE(1730)] = 81631, + [SMALL_STATE(1731)] = 81691, + [SMALL_STATE(1732)] = 81749, + [SMALL_STATE(1733)] = 81807, + [SMALL_STATE(1734)] = 81867, + [SMALL_STATE(1735)] = 81929, + [SMALL_STATE(1736)] = 81987, + [SMALL_STATE(1737)] = 82045, + [SMALL_STATE(1738)] = 82103, + [SMALL_STATE(1739)] = 82165, + [SMALL_STATE(1740)] = 82223, [SMALL_STATE(1741)] = 82269, - [SMALL_STATE(1742)] = 82338, - [SMALL_STATE(1743)] = 82407, - [SMALL_STATE(1744)] = 82460, - [SMALL_STATE(1745)] = 82513, - [SMALL_STATE(1746)] = 82566, - [SMALL_STATE(1747)] = 82633, - [SMALL_STATE(1748)] = 82698, - [SMALL_STATE(1749)] = 82767, - [SMALL_STATE(1750)] = 82832, - [SMALL_STATE(1751)] = 82885, - [SMALL_STATE(1752)] = 82934, - [SMALL_STATE(1753)] = 82987, - [SMALL_STATE(1754)] = 83040, - [SMALL_STATE(1755)] = 83105, - [SMALL_STATE(1756)] = 83158, - [SMALL_STATE(1757)] = 83211, - [SMALL_STATE(1758)] = 83264, - [SMALL_STATE(1759)] = 83317, - [SMALL_STATE(1760)] = 83366, - [SMALL_STATE(1761)] = 83435, - [SMALL_STATE(1762)] = 83484, - [SMALL_STATE(1763)] = 83549, - [SMALL_STATE(1764)] = 83618, - [SMALL_STATE(1765)] = 83671, - [SMALL_STATE(1766)] = 83738, - [SMALL_STATE(1767)] = 83805, - [SMALL_STATE(1768)] = 83858, - [SMALL_STATE(1769)] = 83911, - [SMALL_STATE(1770)] = 83978, - [SMALL_STATE(1771)] = 84043, - [SMALL_STATE(1772)] = 84110, - [SMALL_STATE(1773)] = 84163, - [SMALL_STATE(1774)] = 84212, + [SMALL_STATE(1742)] = 82318, + [SMALL_STATE(1743)] = 82371, + [SMALL_STATE(1744)] = 82436, + [SMALL_STATE(1745)] = 82489, + [SMALL_STATE(1746)] = 82542, + [SMALL_STATE(1747)] = 82595, + [SMALL_STATE(1748)] = 82664, + [SMALL_STATE(1749)] = 82717, + [SMALL_STATE(1750)] = 82770, + [SMALL_STATE(1751)] = 82837, + [SMALL_STATE(1752)] = 82890, + [SMALL_STATE(1753)] = 82943, + [SMALL_STATE(1754)] = 82996, + [SMALL_STATE(1755)] = 83063, + [SMALL_STATE(1756)] = 83116, + [SMALL_STATE(1757)] = 83169, + [SMALL_STATE(1758)] = 83236, + [SMALL_STATE(1759)] = 83301, + [SMALL_STATE(1760)] = 83370, + [SMALL_STATE(1761)] = 83423, + [SMALL_STATE(1762)] = 83490, + [SMALL_STATE(1763)] = 83543, + [SMALL_STATE(1764)] = 83592, + [SMALL_STATE(1765)] = 83661, + [SMALL_STATE(1766)] = 83730, + [SMALL_STATE(1767)] = 83783, + [SMALL_STATE(1768)] = 83848, + [SMALL_STATE(1769)] = 83897, + [SMALL_STATE(1770)] = 83946, + [SMALL_STATE(1771)] = 84011, + [SMALL_STATE(1772)] = 84080, + [SMALL_STATE(1773)] = 84133, + [SMALL_STATE(1774)] = 84198, [SMALL_STATE(1775)] = 84265, - [SMALL_STATE(1776)] = 84327, - [SMALL_STATE(1777)] = 84387, - [SMALL_STATE(1778)] = 84457, - [SMALL_STATE(1779)] = 84527, - [SMALL_STATE(1780)] = 84575, - [SMALL_STATE(1781)] = 84635, - [SMALL_STATE(1782)] = 84695, - [SMALL_STATE(1783)] = 84765, - [SMALL_STATE(1784)] = 84835, - [SMALL_STATE(1785)] = 84905, - [SMALL_STATE(1786)] = 84965, - [SMALL_STATE(1787)] = 85013, - [SMALL_STATE(1788)] = 85077, - [SMALL_STATE(1789)] = 85147, - [SMALL_STATE(1790)] = 85207, + [SMALL_STATE(1776)] = 84335, + [SMALL_STATE(1777)] = 84395, + [SMALL_STATE(1778)] = 84465, + [SMALL_STATE(1779)] = 84529, + [SMALL_STATE(1780)] = 84589, + [SMALL_STATE(1781)] = 84659, + [SMALL_STATE(1782)] = 84707, + [SMALL_STATE(1783)] = 84777, + [SMALL_STATE(1784)] = 84837, + [SMALL_STATE(1785)] = 84907, + [SMALL_STATE(1786)] = 84955, + [SMALL_STATE(1787)] = 85025, + [SMALL_STATE(1788)] = 85095, + [SMALL_STATE(1789)] = 85155, + [SMALL_STATE(1790)] = 85217, [SMALL_STATE(1791)] = 85277, [SMALL_STATE(1792)] = 85347, [SMALL_STATE(1793)] = 85407, @@ -157704,16 +157947,16 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1795)] = 85552, [SMALL_STATE(1796)] = 85627, [SMALL_STATE(1797)] = 85694, - [SMALL_STATE(1798)] = 85761, - [SMALL_STATE(1799)] = 85836, - [SMALL_STATE(1800)] = 85911, - [SMALL_STATE(1801)] = 85986, - [SMALL_STATE(1802)] = 86053, - [SMALL_STATE(1803)] = 86128, - [SMALL_STATE(1804)] = 86203, - [SMALL_STATE(1805)] = 86258, - [SMALL_STATE(1806)] = 86333, - [SMALL_STATE(1807)] = 86400, + [SMALL_STATE(1798)] = 85749, + [SMALL_STATE(1799)] = 85824, + [SMALL_STATE(1800)] = 85899, + [SMALL_STATE(1801)] = 85940, + [SMALL_STATE(1802)] = 86015, + [SMALL_STATE(1803)] = 86082, + [SMALL_STATE(1804)] = 86157, + [SMALL_STATE(1805)] = 86224, + [SMALL_STATE(1806)] = 86299, + [SMALL_STATE(1807)] = 86374, [SMALL_STATE(1808)] = 86441, [SMALL_STATE(1809)] = 86491, [SMALL_STATE(1810)] = 86541, @@ -157723,66 +157966,66 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1814)] = 86730, [SMALL_STATE(1815)] = 86769, [SMALL_STATE(1816)] = 86808, - [SMALL_STATE(1817)] = 86853, + [SMALL_STATE(1817)] = 86847, [SMALL_STATE(1818)] = 86892, [SMALL_STATE(1819)] = 86931, [SMALL_STATE(1820)] = 86985, [SMALL_STATE(1821)] = 87037, [SMALL_STATE(1822)] = 87089, - [SMALL_STATE(1823)] = 87139, + [SMALL_STATE(1823)] = 87141, [SMALL_STATE(1824)] = 87191, [SMALL_STATE(1825)] = 87247, [SMALL_STATE(1826)] = 87301, [SMALL_STATE(1827)] = 87348, [SMALL_STATE(1828)] = 87385, - [SMALL_STATE(1829)] = 87432, - [SMALL_STATE(1830)] = 87479, - [SMALL_STATE(1831)] = 87516, - [SMALL_STATE(1832)] = 87563, - [SMALL_STATE(1833)] = 87600, - [SMALL_STATE(1834)] = 87647, - [SMALL_STATE(1835)] = 87694, - [SMALL_STATE(1836)] = 87731, - [SMALL_STATE(1837)] = 87778, - [SMALL_STATE(1838)] = 87825, - [SMALL_STATE(1839)] = 87872, - [SMALL_STATE(1840)] = 87911, - [SMALL_STATE(1841)] = 87958, - [SMALL_STATE(1842)] = 87995, - [SMALL_STATE(1843)] = 88032, - [SMALL_STATE(1844)] = 88079, - [SMALL_STATE(1845)] = 88116, - [SMALL_STATE(1846)] = 88163, - [SMALL_STATE(1847)] = 88210, - [SMALL_STATE(1848)] = 88247, - [SMALL_STATE(1849)] = 88284, - [SMALL_STATE(1850)] = 88321, - [SMALL_STATE(1851)] = 88358, - [SMALL_STATE(1852)] = 88405, - [SMALL_STATE(1853)] = 88452, - [SMALL_STATE(1854)] = 88489, + [SMALL_STATE(1829)] = 87422, + [SMALL_STATE(1830)] = 87459, + [SMALL_STATE(1831)] = 87506, + [SMALL_STATE(1832)] = 87543, + [SMALL_STATE(1833)] = 87590, + [SMALL_STATE(1834)] = 87627, + [SMALL_STATE(1835)] = 87664, + [SMALL_STATE(1836)] = 87711, + [SMALL_STATE(1837)] = 87748, + [SMALL_STATE(1838)] = 87785, + [SMALL_STATE(1839)] = 87832, + [SMALL_STATE(1840)] = 87879, + [SMALL_STATE(1841)] = 87926, + [SMALL_STATE(1842)] = 87973, + [SMALL_STATE(1843)] = 88020, + [SMALL_STATE(1844)] = 88067, + [SMALL_STATE(1845)] = 88104, + [SMALL_STATE(1846)] = 88151, + [SMALL_STATE(1847)] = 88188, + [SMALL_STATE(1848)] = 88225, + [SMALL_STATE(1849)] = 88272, + [SMALL_STATE(1850)] = 88319, + [SMALL_STATE(1851)] = 88356, + [SMALL_STATE(1852)] = 88393, + [SMALL_STATE(1853)] = 88440, + [SMALL_STATE(1854)] = 88487, [SMALL_STATE(1855)] = 88526, - [SMALL_STATE(1856)] = 88573, - [SMALL_STATE(1857)] = 88612, - [SMALL_STATE(1858)] = 88659, - [SMALL_STATE(1859)] = 88698, - [SMALL_STATE(1860)] = 88745, + [SMALL_STATE(1856)] = 88565, + [SMALL_STATE(1857)] = 88604, + [SMALL_STATE(1858)] = 88641, + [SMALL_STATE(1859)] = 88688, + [SMALL_STATE(1860)] = 88735, [SMALL_STATE(1861)] = 88782, - [SMALL_STATE(1862)] = 88838, - [SMALL_STATE(1863)] = 88886, - [SMALL_STATE(1864)] = 88934, + [SMALL_STATE(1862)] = 88830, + [SMALL_STATE(1863)] = 88878, + [SMALL_STATE(1864)] = 88926, [SMALL_STATE(1865)] = 88982, [SMALL_STATE(1866)] = 89030, [SMALL_STATE(1867)] = 89078, [SMALL_STATE(1868)] = 89126, - [SMALL_STATE(1869)] = 89175, - [SMALL_STATE(1870)] = 89228, - [SMALL_STATE(1871)] = 89273, - [SMALL_STATE(1872)] = 89308, - [SMALL_STATE(1873)] = 89345, - [SMALL_STATE(1874)] = 89394, + [SMALL_STATE(1869)] = 89179, + [SMALL_STATE(1870)] = 89214, + [SMALL_STATE(1871)] = 89263, + [SMALL_STATE(1872)] = 89304, + [SMALL_STATE(1873)] = 89357, + [SMALL_STATE(1874)] = 89410, [SMALL_STATE(1875)] = 89447, - [SMALL_STATE(1876)] = 89500, + [SMALL_STATE(1876)] = 89492, [SMALL_STATE(1877)] = 89541, [SMALL_STATE(1878)] = 89583, [SMALL_STATE(1879)] = 89625, @@ -157816,1416 +158059,1418 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1907)] = 90816, [SMALL_STATE(1908)] = 90839, [SMALL_STATE(1909)] = 90862, - [SMALL_STATE(1910)] = 90885, - [SMALL_STATE(1911)] = 90908, + [SMALL_STATE(1910)] = 90893, + [SMALL_STATE(1911)] = 90916, [SMALL_STATE(1912)] = 90939, [SMALL_STATE(1913)] = 90962, - [SMALL_STATE(1914)] = 90990, - [SMALL_STATE(1915)] = 91032, - [SMALL_STATE(1916)] = 91074, - [SMALL_STATE(1917)] = 91116, - [SMALL_STATE(1918)] = 91158, - [SMALL_STATE(1919)] = 91200, - [SMALL_STATE(1920)] = 91238, - [SMALL_STATE(1921)] = 91268, - [SMALL_STATE(1922)] = 91310, + [SMALL_STATE(1914)] = 91004, + [SMALL_STATE(1915)] = 91042, + [SMALL_STATE(1916)] = 91084, + [SMALL_STATE(1917)] = 91126, + [SMALL_STATE(1918)] = 91168, + [SMALL_STATE(1919)] = 91210, + [SMALL_STATE(1920)] = 91252, + [SMALL_STATE(1921)] = 91280, + [SMALL_STATE(1922)] = 91314, [SMALL_STATE(1923)] = 91344, - [SMALL_STATE(1924)] = 91369, - [SMALL_STATE(1925)] = 91396, - [SMALL_STATE(1926)] = 91437, - [SMALL_STATE(1927)] = 91472, - [SMALL_STATE(1928)] = 91513, - [SMALL_STATE(1929)] = 91548, - [SMALL_STATE(1930)] = 91583, - [SMALL_STATE(1931)] = 91618, - [SMALL_STATE(1932)] = 91653, - [SMALL_STATE(1933)] = 91678, - [SMALL_STATE(1934)] = 91713, - [SMALL_STATE(1935)] = 91748, + [SMALL_STATE(1924)] = 91379, + [SMALL_STATE(1925)] = 91404, + [SMALL_STATE(1926)] = 91439, + [SMALL_STATE(1927)] = 91474, + [SMALL_STATE(1928)] = 91509, + [SMALL_STATE(1929)] = 91544, + [SMALL_STATE(1930)] = 91579, + [SMALL_STATE(1931)] = 91606, + [SMALL_STATE(1932)] = 91641, + [SMALL_STATE(1933)] = 91682, + [SMALL_STATE(1934)] = 91717, + [SMALL_STATE(1935)] = 91742, [SMALL_STATE(1936)] = 91783, - [SMALL_STATE(1937)] = 91821, - [SMALL_STATE(1938)] = 91857, - [SMALL_STATE(1939)] = 91893, - [SMALL_STATE(1940)] = 91925, - [SMALL_STATE(1941)] = 91961, - [SMALL_STATE(1942)] = 91983, - [SMALL_STATE(1943)] = 92015, - [SMALL_STATE(1944)] = 92053, - [SMALL_STATE(1945)] = 92085, - [SMALL_STATE(1946)] = 92117, - [SMALL_STATE(1947)] = 92149, - [SMALL_STATE(1948)] = 92181, - [SMALL_STATE(1949)] = 92219, - [SMALL_STATE(1950)] = 92257, - [SMALL_STATE(1951)] = 92293, - [SMALL_STATE(1952)] = 92325, - [SMALL_STATE(1953)] = 92349, - [SMALL_STATE(1954)] = 92385, - [SMALL_STATE(1955)] = 92409, - [SMALL_STATE(1956)] = 92441, - [SMALL_STATE(1957)] = 92471, - [SMALL_STATE(1958)] = 92509, - [SMALL_STATE(1959)] = 92545, + [SMALL_STATE(1937)] = 91815, + [SMALL_STATE(1938)] = 91853, + [SMALL_STATE(1939)] = 91883, + [SMALL_STATE(1940)] = 91921, + [SMALL_STATE(1941)] = 91957, + [SMALL_STATE(1942)] = 91979, + [SMALL_STATE(1943)] = 92017, + [SMALL_STATE(1944)] = 92039, + [SMALL_STATE(1945)] = 92071, + [SMALL_STATE(1946)] = 92107, + [SMALL_STATE(1947)] = 92139, + [SMALL_STATE(1948)] = 92177, + [SMALL_STATE(1949)] = 92213, + [SMALL_STATE(1950)] = 92245, + [SMALL_STATE(1951)] = 92269, + [SMALL_STATE(1952)] = 92301, + [SMALL_STATE(1953)] = 92337, + [SMALL_STATE(1954)] = 92375, + [SMALL_STATE(1955)] = 92411, + [SMALL_STATE(1956)] = 92435, + [SMALL_STATE(1957)] = 92467, + [SMALL_STATE(1958)] = 92499, + [SMALL_STATE(1959)] = 92535, [SMALL_STATE(1960)] = 92567, - [SMALL_STATE(1961)] = 92590, - [SMALL_STATE(1962)] = 92611, - [SMALL_STATE(1963)] = 92634, - [SMALL_STATE(1964)] = 92651, + [SMALL_STATE(1961)] = 92588, + [SMALL_STATE(1962)] = 92609, + [SMALL_STATE(1963)] = 92632, + [SMALL_STATE(1964)] = 92653, [SMALL_STATE(1965)] = 92674, - [SMALL_STATE(1966)] = 92697, - [SMALL_STATE(1967)] = 92718, - [SMALL_STATE(1968)] = 92737, - [SMALL_STATE(1969)] = 92758, - [SMALL_STATE(1970)] = 92779, - [SMALL_STATE(1971)] = 92802, - [SMALL_STATE(1972)] = 92819, + [SMALL_STATE(1966)] = 92691, + [SMALL_STATE(1967)] = 92710, + [SMALL_STATE(1968)] = 92733, + [SMALL_STATE(1969)] = 92756, + [SMALL_STATE(1970)] = 92773, + [SMALL_STATE(1971)] = 92794, + [SMALL_STATE(1972)] = 92817, [SMALL_STATE(1973)] = 92840, - [SMALL_STATE(1974)] = 92858, - [SMALL_STATE(1975)] = 92892, - [SMALL_STATE(1976)] = 92926, - [SMALL_STATE(1977)] = 92944, - [SMALL_STATE(1978)] = 92962, - [SMALL_STATE(1979)] = 92994, - [SMALL_STATE(1980)] = 93014, - [SMALL_STATE(1981)] = 93046, - [SMALL_STATE(1982)] = 93064, - [SMALL_STATE(1983)] = 93096, + [SMALL_STATE(1974)] = 92866, + [SMALL_STATE(1975)] = 92884, + [SMALL_STATE(1976)] = 92902, + [SMALL_STATE(1977)] = 92936, + [SMALL_STATE(1978)] = 92970, + [SMALL_STATE(1979)] = 93004, + [SMALL_STATE(1980)] = 93038, + [SMALL_STATE(1981)] = 93056, + [SMALL_STATE(1982)] = 93090, + [SMALL_STATE(1983)] = 93110, [SMALL_STATE(1984)] = 93128, [SMALL_STATE(1985)] = 93146, [SMALL_STATE(1986)] = 93166, - [SMALL_STATE(1987)] = 93200, - [SMALL_STATE(1988)] = 93218, - [SMALL_STATE(1989)] = 93244, - [SMALL_STATE(1990)] = 93278, - [SMALL_STATE(1991)] = 93296, - [SMALL_STATE(1992)] = 93314, - [SMALL_STATE(1993)] = 93332, - [SMALL_STATE(1994)] = 93358, - [SMALL_STATE(1995)] = 93376, - [SMALL_STATE(1996)] = 93394, - [SMALL_STATE(1997)] = 93412, - [SMALL_STATE(1998)] = 93446, - [SMALL_STATE(1999)] = 93466, - [SMALL_STATE(2000)] = 93486, - [SMALL_STATE(2001)] = 93520, - [SMALL_STATE(2002)] = 93554, - [SMALL_STATE(2003)] = 93572, - [SMALL_STATE(2004)] = 93602, - [SMALL_STATE(2005)] = 93620, - [SMALL_STATE(2006)] = 93638, - [SMALL_STATE(2007)] = 93656, - [SMALL_STATE(2008)] = 93674, + [SMALL_STATE(1987)] = 93184, + [SMALL_STATE(1988)] = 93202, + [SMALL_STATE(1989)] = 93236, + [SMALL_STATE(1990)] = 93268, + [SMALL_STATE(1991)] = 93286, + [SMALL_STATE(1992)] = 93304, + [SMALL_STATE(1993)] = 93322, + [SMALL_STATE(1994)] = 93354, + [SMALL_STATE(1995)] = 93372, + [SMALL_STATE(1996)] = 93406, + [SMALL_STATE(1997)] = 93424, + [SMALL_STATE(1998)] = 93442, + [SMALL_STATE(1999)] = 93460, + [SMALL_STATE(2000)] = 93478, + [SMALL_STATE(2001)] = 93510, + [SMALL_STATE(2002)] = 93544, + [SMALL_STATE(2003)] = 93564, + [SMALL_STATE(2004)] = 93582, + [SMALL_STATE(2005)] = 93600, + [SMALL_STATE(2006)] = 93618, + [SMALL_STATE(2007)] = 93638, + [SMALL_STATE(2008)] = 93658, [SMALL_STATE(2009)] = 93692, [SMALL_STATE(2010)] = 93726, - [SMALL_STATE(2011)] = 93744, - [SMALL_STATE(2012)] = 93764, - [SMALL_STATE(2013)] = 93784, - [SMALL_STATE(2014)] = 93816, - [SMALL_STATE(2015)] = 93836, - [SMALL_STATE(2016)] = 93854, - [SMALL_STATE(2017)] = 93872, - [SMALL_STATE(2018)] = 93890, - [SMALL_STATE(2019)] = 93910, - [SMALL_STATE(2020)] = 93928, + [SMALL_STATE(2011)] = 93756, + [SMALL_STATE(2012)] = 93774, + [SMALL_STATE(2013)] = 93792, + [SMALL_STATE(2014)] = 93824, + [SMALL_STATE(2015)] = 93842, + [SMALL_STATE(2016)] = 93860, + [SMALL_STATE(2017)] = 93886, + [SMALL_STATE(2018)] = 93904, + [SMALL_STATE(2019)] = 93922, + [SMALL_STATE(2020)] = 93942, [SMALL_STATE(2021)] = 93962, [SMALL_STATE(2022)] = 93980, - [SMALL_STATE(2023)] = 94014, + [SMALL_STATE(2023)] = 94000, [SMALL_STATE(2024)] = 94032, - [SMALL_STATE(2025)] = 94051, - [SMALL_STATE(2026)] = 94082, - [SMALL_STATE(2027)] = 94113, - [SMALL_STATE(2028)] = 94144, - [SMALL_STATE(2029)] = 94169, - [SMALL_STATE(2030)] = 94200, - [SMALL_STATE(2031)] = 94225, - [SMALL_STATE(2032)] = 94250, - [SMALL_STATE(2033)] = 94275, - [SMALL_STATE(2034)] = 94298, - [SMALL_STATE(2035)] = 94329, - [SMALL_STATE(2036)] = 94360, - [SMALL_STATE(2037)] = 94389, - [SMALL_STATE(2038)] = 94414, - [SMALL_STATE(2039)] = 94433, - [SMALL_STATE(2040)] = 94462, - [SMALL_STATE(2041)] = 94481, - [SMALL_STATE(2042)] = 94512, - [SMALL_STATE(2043)] = 94541, - [SMALL_STATE(2044)] = 94572, - [SMALL_STATE(2045)] = 94597, - [SMALL_STATE(2046)] = 94622, - [SMALL_STATE(2047)] = 94651, - [SMALL_STATE(2048)] = 94682, - [SMALL_STATE(2049)] = 94713, - [SMALL_STATE(2050)] = 94742, - [SMALL_STATE(2051)] = 94771, - [SMALL_STATE(2052)] = 94802, - [SMALL_STATE(2053)] = 94827, - [SMALL_STATE(2054)] = 94856, - [SMALL_STATE(2055)] = 94881, - [SMALL_STATE(2056)] = 94910, - [SMALL_STATE(2057)] = 94941, - [SMALL_STATE(2058)] = 94966, - [SMALL_STATE(2059)] = 94997, - [SMALL_STATE(2060)] = 95028, - [SMALL_STATE(2061)] = 95059, - [SMALL_STATE(2062)] = 95088, - [SMALL_STATE(2063)] = 95119, - [SMALL_STATE(2064)] = 95144, - [SMALL_STATE(2065)] = 95169, - [SMALL_STATE(2066)] = 95192, - [SMALL_STATE(2067)] = 95221, + [SMALL_STATE(2025)] = 94061, + [SMALL_STATE(2026)] = 94092, + [SMALL_STATE(2027)] = 94123, + [SMALL_STATE(2028)] = 94148, + [SMALL_STATE(2029)] = 94177, + [SMALL_STATE(2030)] = 94202, + [SMALL_STATE(2031)] = 94233, + [SMALL_STATE(2032)] = 94264, + [SMALL_STATE(2033)] = 94289, + [SMALL_STATE(2034)] = 94320, + [SMALL_STATE(2035)] = 94351, + [SMALL_STATE(2036)] = 94380, + [SMALL_STATE(2037)] = 94405, + [SMALL_STATE(2038)] = 94436, + [SMALL_STATE(2039)] = 94461, + [SMALL_STATE(2040)] = 94490, + [SMALL_STATE(2041)] = 94519, + [SMALL_STATE(2042)] = 94544, + [SMALL_STATE(2043)] = 94573, + [SMALL_STATE(2044)] = 94602, + [SMALL_STATE(2045)] = 94633, + [SMALL_STATE(2046)] = 94662, + [SMALL_STATE(2047)] = 94687, + [SMALL_STATE(2048)] = 94718, + [SMALL_STATE(2049)] = 94737, + [SMALL_STATE(2050)] = 94760, + [SMALL_STATE(2051)] = 94791, + [SMALL_STATE(2052)] = 94820, + [SMALL_STATE(2053)] = 94849, + [SMALL_STATE(2054)] = 94874, + [SMALL_STATE(2055)] = 94903, + [SMALL_STATE(2056)] = 94922, + [SMALL_STATE(2057)] = 94947, + [SMALL_STATE(2058)] = 94972, + [SMALL_STATE(2059)] = 95003, + [SMALL_STATE(2060)] = 95022, + [SMALL_STATE(2061)] = 95053, + [SMALL_STATE(2062)] = 95084, + [SMALL_STATE(2063)] = 95115, + [SMALL_STATE(2064)] = 95140, + [SMALL_STATE(2065)] = 95165, + [SMALL_STATE(2066)] = 95196, + [SMALL_STATE(2067)] = 95219, [SMALL_STATE(2068)] = 95250, - [SMALL_STATE(2069)] = 95272, - [SMALL_STATE(2070)] = 95294, - [SMALL_STATE(2071)] = 95316, - [SMALL_STATE(2072)] = 95338, + [SMALL_STATE(2069)] = 95276, + [SMALL_STATE(2070)] = 95296, + [SMALL_STATE(2071)] = 95318, + [SMALL_STATE(2072)] = 95340, [SMALL_STATE(2073)] = 95362, - [SMALL_STATE(2074)] = 95382, - [SMALL_STATE(2075)] = 95408, - [SMALL_STATE(2076)] = 95430, - [SMALL_STATE(2077)] = 95448, - [SMALL_STATE(2078)] = 95470, - [SMALL_STATE(2079)] = 95492, - [SMALL_STATE(2080)] = 95510, - [SMALL_STATE(2081)] = 95532, - [SMALL_STATE(2082)] = 95554, - [SMALL_STATE(2083)] = 95576, - [SMALL_STATE(2084)] = 95598, + [SMALL_STATE(2074)] = 95384, + [SMALL_STATE(2075)] = 95402, + [SMALL_STATE(2076)] = 95424, + [SMALL_STATE(2077)] = 95446, + [SMALL_STATE(2078)] = 95466, + [SMALL_STATE(2079)] = 95488, + [SMALL_STATE(2080)] = 95514, + [SMALL_STATE(2081)] = 95536, + [SMALL_STATE(2082)] = 95552, + [SMALL_STATE(2083)] = 95574, + [SMALL_STATE(2084)] = 95596, [SMALL_STATE(2085)] = 95614, - [SMALL_STATE(2086)] = 95632, + [SMALL_STATE(2086)] = 95636, [SMALL_STATE(2087)] = 95658, - [SMALL_STATE(2088)] = 95680, - [SMALL_STATE(2089)] = 95702, + [SMALL_STATE(2088)] = 95676, + [SMALL_STATE(2089)] = 95700, [SMALL_STATE(2090)] = 95722, [SMALL_STATE(2091)] = 95744, - [SMALL_STATE(2092)] = 95769, - [SMALL_STATE(2093)] = 95788, - [SMALL_STATE(2094)] = 95813, - [SMALL_STATE(2095)] = 95838, - [SMALL_STATE(2096)] = 95863, - [SMALL_STATE(2097)] = 95884, - [SMALL_STATE(2098)] = 95909, - [SMALL_STATE(2099)] = 95930, - [SMALL_STATE(2100)] = 95955, - [SMALL_STATE(2101)] = 95976, - [SMALL_STATE(2102)] = 95993, - [SMALL_STATE(2103)] = 96010, - [SMALL_STATE(2104)] = 96027, - [SMALL_STATE(2105)] = 96048, - [SMALL_STATE(2106)] = 96065, - [SMALL_STATE(2107)] = 96082, - [SMALL_STATE(2108)] = 96099, - [SMALL_STATE(2109)] = 96116, - [SMALL_STATE(2110)] = 96133, - [SMALL_STATE(2111)] = 96150, - [SMALL_STATE(2112)] = 96171, - [SMALL_STATE(2113)] = 96188, - [SMALL_STATE(2114)] = 96205, - [SMALL_STATE(2115)] = 96222, - [SMALL_STATE(2116)] = 96247, - [SMALL_STATE(2117)] = 96272, - [SMALL_STATE(2118)] = 96297, - [SMALL_STATE(2119)] = 96322, - [SMALL_STATE(2120)] = 96347, - [SMALL_STATE(2121)] = 96372, - [SMALL_STATE(2122)] = 96397, - [SMALL_STATE(2123)] = 96422, - [SMALL_STATE(2124)] = 96441, - [SMALL_STATE(2125)] = 96466, - [SMALL_STATE(2126)] = 96491, - [SMALL_STATE(2127)] = 96508, - [SMALL_STATE(2128)] = 96533, - [SMALL_STATE(2129)] = 96558, - [SMALL_STATE(2130)] = 96583, - [SMALL_STATE(2131)] = 96608, - [SMALL_STATE(2132)] = 96621, - [SMALL_STATE(2133)] = 96634, - [SMALL_STATE(2134)] = 96659, - [SMALL_STATE(2135)] = 96684, - [SMALL_STATE(2136)] = 96697, - [SMALL_STATE(2137)] = 96722, - [SMALL_STATE(2138)] = 96739, - [SMALL_STATE(2139)] = 96756, - [SMALL_STATE(2140)] = 96781, - [SMALL_STATE(2141)] = 96806, - [SMALL_STATE(2142)] = 96831, - [SMALL_STATE(2143)] = 96848, - [SMALL_STATE(2144)] = 96865, - [SMALL_STATE(2145)] = 96890, - [SMALL_STATE(2146)] = 96915, - [SMALL_STATE(2147)] = 96936, - [SMALL_STATE(2148)] = 96951, - [SMALL_STATE(2149)] = 96966, - [SMALL_STATE(2150)] = 96991, - [SMALL_STATE(2151)] = 97016, - [SMALL_STATE(2152)] = 97041, - [SMALL_STATE(2153)] = 97066, - [SMALL_STATE(2154)] = 97087, - [SMALL_STATE(2155)] = 97100, - [SMALL_STATE(2156)] = 97125, - [SMALL_STATE(2157)] = 97150, - [SMALL_STATE(2158)] = 97163, - [SMALL_STATE(2159)] = 97188, - [SMALL_STATE(2160)] = 97203, - [SMALL_STATE(2161)] = 97226, - [SMALL_STATE(2162)] = 97251, - [SMALL_STATE(2163)] = 97276, - [SMALL_STATE(2164)] = 97301, - [SMALL_STATE(2165)] = 97326, - [SMALL_STATE(2166)] = 97351, - [SMALL_STATE(2167)] = 97376, - [SMALL_STATE(2168)] = 97393, + [SMALL_STATE(2092)] = 95757, + [SMALL_STATE(2093)] = 95782, + [SMALL_STATE(2094)] = 95807, + [SMALL_STATE(2095)] = 95832, + [SMALL_STATE(2096)] = 95857, + [SMALL_STATE(2097)] = 95882, + [SMALL_STATE(2098)] = 95907, + [SMALL_STATE(2099)] = 95932, + [SMALL_STATE(2100)] = 95957, + [SMALL_STATE(2101)] = 95982, + [SMALL_STATE(2102)] = 96003, + [SMALL_STATE(2103)] = 96024, + [SMALL_STATE(2104)] = 96037, + [SMALL_STATE(2105)] = 96056, + [SMALL_STATE(2106)] = 96073, + [SMALL_STATE(2107)] = 96094, + [SMALL_STATE(2108)] = 96119, + [SMALL_STATE(2109)] = 96144, + [SMALL_STATE(2110)] = 96169, + [SMALL_STATE(2111)] = 96186, + [SMALL_STATE(2112)] = 96211, + [SMALL_STATE(2113)] = 96236, + [SMALL_STATE(2114)] = 96253, + [SMALL_STATE(2115)] = 96278, + [SMALL_STATE(2116)] = 96299, + [SMALL_STATE(2117)] = 96324, + [SMALL_STATE(2118)] = 96339, + [SMALL_STATE(2119)] = 96364, + [SMALL_STATE(2120)] = 96389, + [SMALL_STATE(2121)] = 96406, + [SMALL_STATE(2122)] = 96431, + [SMALL_STATE(2123)] = 96446, + [SMALL_STATE(2124)] = 96463, + [SMALL_STATE(2125)] = 96478, + [SMALL_STATE(2126)] = 96503, + [SMALL_STATE(2127)] = 96520, + [SMALL_STATE(2128)] = 96545, + [SMALL_STATE(2129)] = 96570, + [SMALL_STATE(2130)] = 96595, + [SMALL_STATE(2131)] = 96620, + [SMALL_STATE(2132)] = 96645, + [SMALL_STATE(2133)] = 96670, + [SMALL_STATE(2134)] = 96687, + [SMALL_STATE(2135)] = 96704, + [SMALL_STATE(2136)] = 96729, + [SMALL_STATE(2137)] = 96742, + [SMALL_STATE(2138)] = 96761, + [SMALL_STATE(2139)] = 96786, + [SMALL_STATE(2140)] = 96811, + [SMALL_STATE(2141)] = 96836, + [SMALL_STATE(2142)] = 96861, + [SMALL_STATE(2143)] = 96882, + [SMALL_STATE(2144)] = 96907, + [SMALL_STATE(2145)] = 96932, + [SMALL_STATE(2146)] = 96953, + [SMALL_STATE(2147)] = 96978, + [SMALL_STATE(2148)] = 97003, + [SMALL_STATE(2149)] = 97028, + [SMALL_STATE(2150)] = 97053, + [SMALL_STATE(2151)] = 97070, + [SMALL_STATE(2152)] = 97087, + [SMALL_STATE(2153)] = 97112, + [SMALL_STATE(2154)] = 97129, + [SMALL_STATE(2155)] = 97146, + [SMALL_STATE(2156)] = 97163, + [SMALL_STATE(2157)] = 97188, + [SMALL_STATE(2158)] = 97205, + [SMALL_STATE(2159)] = 97228, + [SMALL_STATE(2160)] = 97245, + [SMALL_STATE(2161)] = 97262, + [SMALL_STATE(2162)] = 97279, + [SMALL_STATE(2163)] = 97300, + [SMALL_STATE(2164)] = 97317, + [SMALL_STATE(2165)] = 97334, + [SMALL_STATE(2166)] = 97347, + [SMALL_STATE(2167)] = 97372, + [SMALL_STATE(2168)] = 97385, [SMALL_STATE(2169)] = 97410, - [SMALL_STATE(2170)] = 97426, - [SMALL_STATE(2171)] = 97448, - [SMALL_STATE(2172)] = 97464, - [SMALL_STATE(2173)] = 97486, + [SMALL_STATE(2170)] = 97432, + [SMALL_STATE(2171)] = 97454, + [SMALL_STATE(2172)] = 97476, + [SMALL_STATE(2173)] = 97492, [SMALL_STATE(2174)] = 97508, - [SMALL_STATE(2175)] = 97530, - [SMALL_STATE(2176)] = 97552, - [SMALL_STATE(2177)] = 97574, - [SMALL_STATE(2178)] = 97596, - [SMALL_STATE(2179)] = 97618, - [SMALL_STATE(2180)] = 97636, - [SMALL_STATE(2181)] = 97658, - [SMALL_STATE(2182)] = 97676, - [SMALL_STATE(2183)] = 97694, - [SMALL_STATE(2184)] = 97716, - [SMALL_STATE(2185)] = 97736, - [SMALL_STATE(2186)] = 97758, - [SMALL_STATE(2187)] = 97780, - [SMALL_STATE(2188)] = 97802, + [SMALL_STATE(2175)] = 97524, + [SMALL_STATE(2176)] = 97540, + [SMALL_STATE(2177)] = 97562, + [SMALL_STATE(2178)] = 97584, + [SMALL_STATE(2179)] = 97606, + [SMALL_STATE(2180)] = 97628, + [SMALL_STATE(2181)] = 97646, + [SMALL_STATE(2182)] = 97668, + [SMALL_STATE(2183)] = 97690, + [SMALL_STATE(2184)] = 97708, + [SMALL_STATE(2185)] = 97730, + [SMALL_STATE(2186)] = 97752, + [SMALL_STATE(2187)] = 97774, + [SMALL_STATE(2188)] = 97796, [SMALL_STATE(2189)] = 97818, - [SMALL_STATE(2190)] = 97840, - [SMALL_STATE(2191)] = 97862, - [SMALL_STATE(2192)] = 97884, - [SMALL_STATE(2193)] = 97906, - [SMALL_STATE(2194)] = 97928, - [SMALL_STATE(2195)] = 97940, - [SMALL_STATE(2196)] = 97962, - [SMALL_STATE(2197)] = 97984, - [SMALL_STATE(2198)] = 98006, - [SMALL_STATE(2199)] = 98022, - [SMALL_STATE(2200)] = 98044, - [SMALL_STATE(2201)] = 98062, - [SMALL_STATE(2202)] = 98084, - [SMALL_STATE(2203)] = 98106, - [SMALL_STATE(2204)] = 98128, - [SMALL_STATE(2205)] = 98146, - [SMALL_STATE(2206)] = 98162, - [SMALL_STATE(2207)] = 98184, - [SMALL_STATE(2208)] = 98200, - [SMALL_STATE(2209)] = 98218, - [SMALL_STATE(2210)] = 98240, - [SMALL_STATE(2211)] = 98256, - [SMALL_STATE(2212)] = 98278, - [SMALL_STATE(2213)] = 98300, - [SMALL_STATE(2214)] = 98322, - [SMALL_STATE(2215)] = 98338, - [SMALL_STATE(2216)] = 98356, - [SMALL_STATE(2217)] = 98378, - [SMALL_STATE(2218)] = 98394, - [SMALL_STATE(2219)] = 98416, - [SMALL_STATE(2220)] = 98430, - [SMALL_STATE(2221)] = 98452, - [SMALL_STATE(2222)] = 98468, - [SMALL_STATE(2223)] = 98490, - [SMALL_STATE(2224)] = 98506, - [SMALL_STATE(2225)] = 98518, - [SMALL_STATE(2226)] = 98534, - [SMALL_STATE(2227)] = 98550, - [SMALL_STATE(2228)] = 98572, - [SMALL_STATE(2229)] = 98588, - [SMALL_STATE(2230)] = 98610, - [SMALL_STATE(2231)] = 98626, - [SMALL_STATE(2232)] = 98648, - [SMALL_STATE(2233)] = 98670, - [SMALL_STATE(2234)] = 98690, - [SMALL_STATE(2235)] = 98712, - [SMALL_STATE(2236)] = 98732, - [SMALL_STATE(2237)] = 98754, - [SMALL_STATE(2238)] = 98776, - [SMALL_STATE(2239)] = 98798, - [SMALL_STATE(2240)] = 98810, - [SMALL_STATE(2241)] = 98826, - [SMALL_STATE(2242)] = 98846, - [SMALL_STATE(2243)] = 98868, - [SMALL_STATE(2244)] = 98884, - [SMALL_STATE(2245)] = 98902, - [SMALL_STATE(2246)] = 98918, - [SMALL_STATE(2247)] = 98930, - [SMALL_STATE(2248)] = 98946, - [SMALL_STATE(2249)] = 98964, - [SMALL_STATE(2250)] = 98980, - [SMALL_STATE(2251)] = 99002, - [SMALL_STATE(2252)] = 99024, - [SMALL_STATE(2253)] = 99046, - [SMALL_STATE(2254)] = 99068, - [SMALL_STATE(2255)] = 99084, - [SMALL_STATE(2256)] = 99106, - [SMALL_STATE(2257)] = 99122, - [SMALL_STATE(2258)] = 99140, - [SMALL_STATE(2259)] = 99162, - [SMALL_STATE(2260)] = 99184, + [SMALL_STATE(2190)] = 97830, + [SMALL_STATE(2191)] = 97852, + [SMALL_STATE(2192)] = 97864, + [SMALL_STATE(2193)] = 97886, + [SMALL_STATE(2194)] = 97908, + [SMALL_STATE(2195)] = 97930, + [SMALL_STATE(2196)] = 97948, + [SMALL_STATE(2197)] = 97970, + [SMALL_STATE(2198)] = 97984, + [SMALL_STATE(2199)] = 98000, + [SMALL_STATE(2200)] = 98022, + [SMALL_STATE(2201)] = 98042, + [SMALL_STATE(2202)] = 98064, + [SMALL_STATE(2203)] = 98080, + [SMALL_STATE(2204)] = 98096, + [SMALL_STATE(2205)] = 98118, + [SMALL_STATE(2206)] = 98136, + [SMALL_STATE(2207)] = 98152, + [SMALL_STATE(2208)] = 98164, + [SMALL_STATE(2209)] = 98180, + [SMALL_STATE(2210)] = 98202, + [SMALL_STATE(2211)] = 98224, + [SMALL_STATE(2212)] = 98240, + [SMALL_STATE(2213)] = 98262, + [SMALL_STATE(2214)] = 98280, + [SMALL_STATE(2215)] = 98302, + [SMALL_STATE(2216)] = 98324, + [SMALL_STATE(2217)] = 98346, + [SMALL_STATE(2218)] = 98368, + [SMALL_STATE(2219)] = 98390, + [SMALL_STATE(2220)] = 98412, + [SMALL_STATE(2221)] = 98430, + [SMALL_STATE(2222)] = 98446, + [SMALL_STATE(2223)] = 98462, + [SMALL_STATE(2224)] = 98484, + [SMALL_STATE(2225)] = 98502, + [SMALL_STATE(2226)] = 98518, + [SMALL_STATE(2227)] = 98536, + [SMALL_STATE(2228)] = 98558, + [SMALL_STATE(2229)] = 98570, + [SMALL_STATE(2230)] = 98586, + [SMALL_STATE(2231)] = 98608, + [SMALL_STATE(2232)] = 98624, + [SMALL_STATE(2233)] = 98646, + [SMALL_STATE(2234)] = 98662, + [SMALL_STATE(2235)] = 98684, + [SMALL_STATE(2236)] = 98700, + [SMALL_STATE(2237)] = 98722, + [SMALL_STATE(2238)] = 98738, + [SMALL_STATE(2239)] = 98760, + [SMALL_STATE(2240)] = 98782, + [SMALL_STATE(2241)] = 98802, + [SMALL_STATE(2242)] = 98824, + [SMALL_STATE(2243)] = 98846, + [SMALL_STATE(2244)] = 98868, + [SMALL_STATE(2245)] = 98888, + [SMALL_STATE(2246)] = 98904, + [SMALL_STATE(2247)] = 98922, + [SMALL_STATE(2248)] = 98944, + [SMALL_STATE(2249)] = 98966, + [SMALL_STATE(2250)] = 98988, + [SMALL_STATE(2251)] = 99010, + [SMALL_STATE(2252)] = 99026, + [SMALL_STATE(2253)] = 99048, + [SMALL_STATE(2254)] = 99070, + [SMALL_STATE(2255)] = 99090, + [SMALL_STATE(2256)] = 99112, + [SMALL_STATE(2257)] = 99130, + [SMALL_STATE(2258)] = 99152, + [SMALL_STATE(2259)] = 99168, + [SMALL_STATE(2260)] = 99190, [SMALL_STATE(2261)] = 99206, [SMALL_STATE(2262)] = 99228, [SMALL_STATE(2263)] = 99250, - [SMALL_STATE(2264)] = 99261, - [SMALL_STATE(2265)] = 99280, - [SMALL_STATE(2266)] = 99293, - [SMALL_STATE(2267)] = 99306, - [SMALL_STATE(2268)] = 99325, - [SMALL_STATE(2269)] = 99340, - [SMALL_STATE(2270)] = 99351, - [SMALL_STATE(2271)] = 99362, - [SMALL_STATE(2272)] = 99379, - [SMALL_STATE(2273)] = 99394, - [SMALL_STATE(2274)] = 99413, - [SMALL_STATE(2275)] = 99432, - [SMALL_STATE(2276)] = 99443, - [SMALL_STATE(2277)] = 99458, - [SMALL_STATE(2278)] = 99473, - [SMALL_STATE(2279)] = 99486, - [SMALL_STATE(2280)] = 99497, - [SMALL_STATE(2281)] = 99512, - [SMALL_STATE(2282)] = 99527, - [SMALL_STATE(2283)] = 99538, - [SMALL_STATE(2284)] = 99549, - [SMALL_STATE(2285)] = 99560, - [SMALL_STATE(2286)] = 99571, - [SMALL_STATE(2287)] = 99582, - [SMALL_STATE(2288)] = 99597, - [SMALL_STATE(2289)] = 99616, - [SMALL_STATE(2290)] = 99635, - [SMALL_STATE(2291)] = 99650, - [SMALL_STATE(2292)] = 99665, - [SMALL_STATE(2293)] = 99676, - [SMALL_STATE(2294)] = 99687, - [SMALL_STATE(2295)] = 99702, - [SMALL_STATE(2296)] = 99713, - [SMALL_STATE(2297)] = 99732, - [SMALL_STATE(2298)] = 99747, - [SMALL_STATE(2299)] = 99758, - [SMALL_STATE(2300)] = 99773, - [SMALL_STATE(2301)] = 99792, - [SMALL_STATE(2302)] = 99811, - [SMALL_STATE(2303)] = 99830, - [SMALL_STATE(2304)] = 99849, - [SMALL_STATE(2305)] = 99860, - [SMALL_STATE(2306)] = 99871, - [SMALL_STATE(2307)] = 99884, - [SMALL_STATE(2308)] = 99903, - [SMALL_STATE(2309)] = 99914, - [SMALL_STATE(2310)] = 99925, - [SMALL_STATE(2311)] = 99936, - [SMALL_STATE(2312)] = 99951, - [SMALL_STATE(2313)] = 99964, - [SMALL_STATE(2314)] = 99975, - [SMALL_STATE(2315)] = 99990, - [SMALL_STATE(2316)] = 100001, - [SMALL_STATE(2317)] = 100012, - [SMALL_STATE(2318)] = 100023, - [SMALL_STATE(2319)] = 100034, - [SMALL_STATE(2320)] = 100053, - [SMALL_STATE(2321)] = 100064, - [SMALL_STATE(2322)] = 100083, - [SMALL_STATE(2323)] = 100102, - [SMALL_STATE(2324)] = 100117, - [SMALL_STATE(2325)] = 100128, - [SMALL_STATE(2326)] = 100139, - [SMALL_STATE(2327)] = 100150, - [SMALL_STATE(2328)] = 100161, - [SMALL_STATE(2329)] = 100180, - [SMALL_STATE(2330)] = 100191, - [SMALL_STATE(2331)] = 100202, - [SMALL_STATE(2332)] = 100213, - [SMALL_STATE(2333)] = 100224, - [SMALL_STATE(2334)] = 100235, - [SMALL_STATE(2335)] = 100246, - [SMALL_STATE(2336)] = 100257, - [SMALL_STATE(2337)] = 100268, - [SMALL_STATE(2338)] = 100283, - [SMALL_STATE(2339)] = 100302, - [SMALL_STATE(2340)] = 100317, - [SMALL_STATE(2341)] = 100328, - [SMALL_STATE(2342)] = 100343, - [SMALL_STATE(2343)] = 100362, - [SMALL_STATE(2344)] = 100373, - [SMALL_STATE(2345)] = 100384, - [SMALL_STATE(2346)] = 100403, - [SMALL_STATE(2347)] = 100422, - [SMALL_STATE(2348)] = 100433, - [SMALL_STATE(2349)] = 100444, - [SMALL_STATE(2350)] = 100455, - [SMALL_STATE(2351)] = 100474, - [SMALL_STATE(2352)] = 100485, - [SMALL_STATE(2353)] = 100498, - [SMALL_STATE(2354)] = 100511, - [SMALL_STATE(2355)] = 100522, - [SMALL_STATE(2356)] = 100533, - [SMALL_STATE(2357)] = 100552, - [SMALL_STATE(2358)] = 100563, - [SMALL_STATE(2359)] = 100574, - [SMALL_STATE(2360)] = 100591, - [SMALL_STATE(2361)] = 100602, - [SMALL_STATE(2362)] = 100617, - [SMALL_STATE(2363)] = 100628, - [SMALL_STATE(2364)] = 100639, - [SMALL_STATE(2365)] = 100650, - [SMALL_STATE(2366)] = 100661, - [SMALL_STATE(2367)] = 100680, - [SMALL_STATE(2368)] = 100693, - [SMALL_STATE(2369)] = 100704, - [SMALL_STATE(2370)] = 100715, - [SMALL_STATE(2371)] = 100734, - [SMALL_STATE(2372)] = 100753, - [SMALL_STATE(2373)] = 100772, - [SMALL_STATE(2374)] = 100783, - [SMALL_STATE(2375)] = 100802, - [SMALL_STATE(2376)] = 100813, - [SMALL_STATE(2377)] = 100824, - [SMALL_STATE(2378)] = 100843, - [SMALL_STATE(2379)] = 100858, - [SMALL_STATE(2380)] = 100877, - [SMALL_STATE(2381)] = 100888, - [SMALL_STATE(2382)] = 100903, - [SMALL_STATE(2383)] = 100914, - [SMALL_STATE(2384)] = 100925, - [SMALL_STATE(2385)] = 100944, - [SMALL_STATE(2386)] = 100955, - [SMALL_STATE(2387)] = 100970, - [SMALL_STATE(2388)] = 100989, - [SMALL_STATE(2389)] = 101008, - [SMALL_STATE(2390)] = 101019, - [SMALL_STATE(2391)] = 101038, - [SMALL_STATE(2392)] = 101049, - [SMALL_STATE(2393)] = 101060, - [SMALL_STATE(2394)] = 101071, - [SMALL_STATE(2395)] = 101090, - [SMALL_STATE(2396)] = 101103, - [SMALL_STATE(2397)] = 101114, - [SMALL_STATE(2398)] = 101127, - [SMALL_STATE(2399)] = 101138, - [SMALL_STATE(2400)] = 101157, - [SMALL_STATE(2401)] = 101176, - [SMALL_STATE(2402)] = 101195, - [SMALL_STATE(2403)] = 101214, - [SMALL_STATE(2404)] = 101225, - [SMALL_STATE(2405)] = 101244, - [SMALL_STATE(2406)] = 101255, - [SMALL_STATE(2407)] = 101270, - [SMALL_STATE(2408)] = 101289, - [SMALL_STATE(2409)] = 101304, - [SMALL_STATE(2410)] = 101323, - [SMALL_STATE(2411)] = 101342, - [SMALL_STATE(2412)] = 101361, - [SMALL_STATE(2413)] = 101372, - [SMALL_STATE(2414)] = 101383, - [SMALL_STATE(2415)] = 101402, - [SMALL_STATE(2416)] = 101417, - [SMALL_STATE(2417)] = 101436, - [SMALL_STATE(2418)] = 101451, - [SMALL_STATE(2419)] = 101462, - [SMALL_STATE(2420)] = 101475, - [SMALL_STATE(2421)] = 101486, - [SMALL_STATE(2422)] = 101499, - [SMALL_STATE(2423)] = 101518, - [SMALL_STATE(2424)] = 101537, - [SMALL_STATE(2425)] = 101548, - [SMALL_STATE(2426)] = 101563, - [SMALL_STATE(2427)] = 101582, - [SMALL_STATE(2428)] = 101593, - [SMALL_STATE(2429)] = 101604, - [SMALL_STATE(2430)] = 101623, - [SMALL_STATE(2431)] = 101642, - [SMALL_STATE(2432)] = 101661, - [SMALL_STATE(2433)] = 101672, - [SMALL_STATE(2434)] = 101683, - [SMALL_STATE(2435)] = 101696, - [SMALL_STATE(2436)] = 101713, - [SMALL_STATE(2437)] = 101724, - [SMALL_STATE(2438)] = 101735, - [SMALL_STATE(2439)] = 101750, - [SMALL_STATE(2440)] = 101761, - [SMALL_STATE(2441)] = 101772, - [SMALL_STATE(2442)] = 101791, - [SMALL_STATE(2443)] = 101802, - [SMALL_STATE(2444)] = 101813, - [SMALL_STATE(2445)] = 101828, - [SMALL_STATE(2446)] = 101839, - [SMALL_STATE(2447)] = 101858, - [SMALL_STATE(2448)] = 101873, - [SMALL_STATE(2449)] = 101884, - [SMALL_STATE(2450)] = 101895, - [SMALL_STATE(2451)] = 101908, - [SMALL_STATE(2452)] = 101921, - [SMALL_STATE(2453)] = 101932, - [SMALL_STATE(2454)] = 101951, - [SMALL_STATE(2455)] = 101970, - [SMALL_STATE(2456)] = 101989, - [SMALL_STATE(2457)] = 102004, - [SMALL_STATE(2458)] = 102017, - [SMALL_STATE(2459)] = 102028, - [SMALL_STATE(2460)] = 102039, - [SMALL_STATE(2461)] = 102054, - [SMALL_STATE(2462)] = 102067, - [SMALL_STATE(2463)] = 102086, - [SMALL_STATE(2464)] = 102105, - [SMALL_STATE(2465)] = 102124, - [SMALL_STATE(2466)] = 102143, - [SMALL_STATE(2467)] = 102162, - [SMALL_STATE(2468)] = 102181, - [SMALL_STATE(2469)] = 102200, - [SMALL_STATE(2470)] = 102219, - [SMALL_STATE(2471)] = 102238, - [SMALL_STATE(2472)] = 102253, - [SMALL_STATE(2473)] = 102272, - [SMALL_STATE(2474)] = 102291, - [SMALL_STATE(2475)] = 102302, - [SMALL_STATE(2476)] = 102321, - [SMALL_STATE(2477)] = 102336, - [SMALL_STATE(2478)] = 102355, - [SMALL_STATE(2479)] = 102368, - [SMALL_STATE(2480)] = 102383, - [SMALL_STATE(2481)] = 102402, - [SMALL_STATE(2482)] = 102417, - [SMALL_STATE(2483)] = 102428, - [SMALL_STATE(2484)] = 102441, - [SMALL_STATE(2485)] = 102460, - [SMALL_STATE(2486)] = 102471, - [SMALL_STATE(2487)] = 102482, - [SMALL_STATE(2488)] = 102493, - [SMALL_STATE(2489)] = 102512, - [SMALL_STATE(2490)] = 102523, - [SMALL_STATE(2491)] = 102542, - [SMALL_STATE(2492)] = 102561, - [SMALL_STATE(2493)] = 102572, - [SMALL_STATE(2494)] = 102591, - [SMALL_STATE(2495)] = 102610, - [SMALL_STATE(2496)] = 102629, - [SMALL_STATE(2497)] = 102648, - [SMALL_STATE(2498)] = 102659, - [SMALL_STATE(2499)] = 102678, - [SMALL_STATE(2500)] = 102693, + [SMALL_STATE(2264)] = 99263, + [SMALL_STATE(2265)] = 99274, + [SMALL_STATE(2266)] = 99285, + [SMALL_STATE(2267)] = 99300, + [SMALL_STATE(2268)] = 99319, + [SMALL_STATE(2269)] = 99338, + [SMALL_STATE(2270)] = 99353, + [SMALL_STATE(2271)] = 99372, + [SMALL_STATE(2272)] = 99391, + [SMALL_STATE(2273)] = 99404, + [SMALL_STATE(2274)] = 99419, + [SMALL_STATE(2275)] = 99438, + [SMALL_STATE(2276)] = 99453, + [SMALL_STATE(2277)] = 99472, + [SMALL_STATE(2278)] = 99487, + [SMALL_STATE(2279)] = 99506, + [SMALL_STATE(2280)] = 99525, + [SMALL_STATE(2281)] = 99536, + [SMALL_STATE(2282)] = 99551, + [SMALL_STATE(2283)] = 99566, + [SMALL_STATE(2284)] = 99585, + [SMALL_STATE(2285)] = 99604, + [SMALL_STATE(2286)] = 99619, + [SMALL_STATE(2287)] = 99638, + [SMALL_STATE(2288)] = 99653, + [SMALL_STATE(2289)] = 99668, + [SMALL_STATE(2290)] = 99679, + [SMALL_STATE(2291)] = 99690, + [SMALL_STATE(2292)] = 99709, + [SMALL_STATE(2293)] = 99728, + [SMALL_STATE(2294)] = 99747, + [SMALL_STATE(2295)] = 99766, + [SMALL_STATE(2296)] = 99783, + [SMALL_STATE(2297)] = 99794, + [SMALL_STATE(2298)] = 99805, + [SMALL_STATE(2299)] = 99824, + [SMALL_STATE(2300)] = 99835, + [SMALL_STATE(2301)] = 99846, + [SMALL_STATE(2302)] = 99865, + [SMALL_STATE(2303)] = 99878, + [SMALL_STATE(2304)] = 99897, + [SMALL_STATE(2305)] = 99916, + [SMALL_STATE(2306)] = 99935, + [SMALL_STATE(2307)] = 99954, + [SMALL_STATE(2308)] = 99973, + [SMALL_STATE(2309)] = 99992, + [SMALL_STATE(2310)] = 100009, + [SMALL_STATE(2311)] = 100028, + [SMALL_STATE(2312)] = 100039, + [SMALL_STATE(2313)] = 100050, + [SMALL_STATE(2314)] = 100061, + [SMALL_STATE(2315)] = 100072, + [SMALL_STATE(2316)] = 100087, + [SMALL_STATE(2317)] = 100106, + [SMALL_STATE(2318)] = 100125, + [SMALL_STATE(2319)] = 100136, + [SMALL_STATE(2320)] = 100147, + [SMALL_STATE(2321)] = 100160, + [SMALL_STATE(2322)] = 100179, + [SMALL_STATE(2323)] = 100198, + [SMALL_STATE(2324)] = 100217, + [SMALL_STATE(2325)] = 100228, + [SMALL_STATE(2326)] = 100239, + [SMALL_STATE(2327)] = 100250, + [SMALL_STATE(2328)] = 100269, + [SMALL_STATE(2329)] = 100288, + [SMALL_STATE(2330)] = 100303, + [SMALL_STATE(2331)] = 100322, + [SMALL_STATE(2332)] = 100341, + [SMALL_STATE(2333)] = 100352, + [SMALL_STATE(2334)] = 100367, + [SMALL_STATE(2335)] = 100386, + [SMALL_STATE(2336)] = 100405, + [SMALL_STATE(2337)] = 100418, + [SMALL_STATE(2338)] = 100437, + [SMALL_STATE(2339)] = 100448, + [SMALL_STATE(2340)] = 100467, + [SMALL_STATE(2341)] = 100482, + [SMALL_STATE(2342)] = 100501, + [SMALL_STATE(2343)] = 100512, + [SMALL_STATE(2344)] = 100531, + [SMALL_STATE(2345)] = 100550, + [SMALL_STATE(2346)] = 100561, + [SMALL_STATE(2347)] = 100578, + [SMALL_STATE(2348)] = 100589, + [SMALL_STATE(2349)] = 100608, + [SMALL_STATE(2350)] = 100623, + [SMALL_STATE(2351)] = 100634, + [SMALL_STATE(2352)] = 100649, + [SMALL_STATE(2353)] = 100660, + [SMALL_STATE(2354)] = 100671, + [SMALL_STATE(2355)] = 100682, + [SMALL_STATE(2356)] = 100697, + [SMALL_STATE(2357)] = 100708, + [SMALL_STATE(2358)] = 100719, + [SMALL_STATE(2359)] = 100738, + [SMALL_STATE(2360)] = 100757, + [SMALL_STATE(2361)] = 100776, + [SMALL_STATE(2362)] = 100795, + [SMALL_STATE(2363)] = 100806, + [SMALL_STATE(2364)] = 100823, + [SMALL_STATE(2365)] = 100842, + [SMALL_STATE(2366)] = 100853, + [SMALL_STATE(2367)] = 100864, + [SMALL_STATE(2368)] = 100875, + [SMALL_STATE(2369)] = 100886, + [SMALL_STATE(2370)] = 100897, + [SMALL_STATE(2371)] = 100908, + [SMALL_STATE(2372)] = 100927, + [SMALL_STATE(2373)] = 100938, + [SMALL_STATE(2374)] = 100949, + [SMALL_STATE(2375)] = 100968, + [SMALL_STATE(2376)] = 100979, + [SMALL_STATE(2377)] = 100990, + [SMALL_STATE(2378)] = 101009, + [SMALL_STATE(2379)] = 101028, + [SMALL_STATE(2380)] = 101047, + [SMALL_STATE(2381)] = 101062, + [SMALL_STATE(2382)] = 101081, + [SMALL_STATE(2383)] = 101100, + [SMALL_STATE(2384)] = 101111, + [SMALL_STATE(2385)] = 101126, + [SMALL_STATE(2386)] = 101145, + [SMALL_STATE(2387)] = 101156, + [SMALL_STATE(2388)] = 101175, + [SMALL_STATE(2389)] = 101186, + [SMALL_STATE(2390)] = 101197, + [SMALL_STATE(2391)] = 101212, + [SMALL_STATE(2392)] = 101231, + [SMALL_STATE(2393)] = 101242, + [SMALL_STATE(2394)] = 101257, + [SMALL_STATE(2395)] = 101270, + [SMALL_STATE(2396)] = 101289, + [SMALL_STATE(2397)] = 101308, + [SMALL_STATE(2398)] = 101319, + [SMALL_STATE(2399)] = 101330, + [SMALL_STATE(2400)] = 101349, + [SMALL_STATE(2401)] = 101360, + [SMALL_STATE(2402)] = 101373, + [SMALL_STATE(2403)] = 101384, + [SMALL_STATE(2404)] = 101395, + [SMALL_STATE(2405)] = 101414, + [SMALL_STATE(2406)] = 101433, + [SMALL_STATE(2407)] = 101448, + [SMALL_STATE(2408)] = 101459, + [SMALL_STATE(2409)] = 101474, + [SMALL_STATE(2410)] = 101485, + [SMALL_STATE(2411)] = 101504, + [SMALL_STATE(2412)] = 101523, + [SMALL_STATE(2413)] = 101534, + [SMALL_STATE(2414)] = 101547, + [SMALL_STATE(2415)] = 101558, + [SMALL_STATE(2416)] = 101569, + [SMALL_STATE(2417)] = 101584, + [SMALL_STATE(2418)] = 101595, + [SMALL_STATE(2419)] = 101606, + [SMALL_STATE(2420)] = 101617, + [SMALL_STATE(2421)] = 101628, + [SMALL_STATE(2422)] = 101639, + [SMALL_STATE(2423)] = 101650, + [SMALL_STATE(2424)] = 101661, + [SMALL_STATE(2425)] = 101676, + [SMALL_STATE(2426)] = 101687, + [SMALL_STATE(2427)] = 101698, + [SMALL_STATE(2428)] = 101711, + [SMALL_STATE(2429)] = 101730, + [SMALL_STATE(2430)] = 101741, + [SMALL_STATE(2431)] = 101760, + [SMALL_STATE(2432)] = 101775, + [SMALL_STATE(2433)] = 101794, + [SMALL_STATE(2434)] = 101809, + [SMALL_STATE(2435)] = 101820, + [SMALL_STATE(2436)] = 101835, + [SMALL_STATE(2437)] = 101854, + [SMALL_STATE(2438)] = 101865, + [SMALL_STATE(2439)] = 101884, + [SMALL_STATE(2440)] = 101895, + [SMALL_STATE(2441)] = 101908, + [SMALL_STATE(2442)] = 101923, + [SMALL_STATE(2443)] = 101934, + [SMALL_STATE(2444)] = 101945, + [SMALL_STATE(2445)] = 101956, + [SMALL_STATE(2446)] = 101975, + [SMALL_STATE(2447)] = 101986, + [SMALL_STATE(2448)] = 102005, + [SMALL_STATE(2449)] = 102016, + [SMALL_STATE(2450)] = 102027, + [SMALL_STATE(2451)] = 102038, + [SMALL_STATE(2452)] = 102049, + [SMALL_STATE(2453)] = 102064, + [SMALL_STATE(2454)] = 102083, + [SMALL_STATE(2455)] = 102098, + [SMALL_STATE(2456)] = 102117, + [SMALL_STATE(2457)] = 102130, + [SMALL_STATE(2458)] = 102143, + [SMALL_STATE(2459)] = 102154, + [SMALL_STATE(2460)] = 102165, + [SMALL_STATE(2461)] = 102178, + [SMALL_STATE(2462)] = 102189, + [SMALL_STATE(2463)] = 102208, + [SMALL_STATE(2464)] = 102221, + [SMALL_STATE(2465)] = 102240, + [SMALL_STATE(2466)] = 102259, + [SMALL_STATE(2467)] = 102278, + [SMALL_STATE(2468)] = 102291, + [SMALL_STATE(2469)] = 102310, + [SMALL_STATE(2470)] = 102321, + [SMALL_STATE(2471)] = 102340, + [SMALL_STATE(2472)] = 102355, + [SMALL_STATE(2473)] = 102370, + [SMALL_STATE(2474)] = 102389, + [SMALL_STATE(2475)] = 102404, + [SMALL_STATE(2476)] = 102417, + [SMALL_STATE(2477)] = 102428, + [SMALL_STATE(2478)] = 102439, + [SMALL_STATE(2479)] = 102450, + [SMALL_STATE(2480)] = 102461, + [SMALL_STATE(2481)] = 102472, + [SMALL_STATE(2482)] = 102483, + [SMALL_STATE(2483)] = 102494, + [SMALL_STATE(2484)] = 102505, + [SMALL_STATE(2485)] = 102516, + [SMALL_STATE(2486)] = 102527, + [SMALL_STATE(2487)] = 102538, + [SMALL_STATE(2488)] = 102557, + [SMALL_STATE(2489)] = 102568, + [SMALL_STATE(2490)] = 102583, + [SMALL_STATE(2491)] = 102594, + [SMALL_STATE(2492)] = 102605, + [SMALL_STATE(2493)] = 102616, + [SMALL_STATE(2494)] = 102627, + [SMALL_STATE(2495)] = 102638, + [SMALL_STATE(2496)] = 102649, + [SMALL_STATE(2497)] = 102668, + [SMALL_STATE(2498)] = 102679, + [SMALL_STATE(2499)] = 102690, + [SMALL_STATE(2500)] = 102701, [SMALL_STATE(2501)] = 102712, - [SMALL_STATE(2502)] = 102723, - [SMALL_STATE(2503)] = 102740, - [SMALL_STATE(2504)] = 102759, - [SMALL_STATE(2505)] = 102778, - [SMALL_STATE(2506)] = 102797, - [SMALL_STATE(2507)] = 102816, - [SMALL_STATE(2508)] = 102833, - [SMALL_STATE(2509)] = 102848, - [SMALL_STATE(2510)] = 102867, - [SMALL_STATE(2511)] = 102882, - [SMALL_STATE(2512)] = 102893, - [SMALL_STATE(2513)] = 102904, - [SMALL_STATE(2514)] = 102915, - [SMALL_STATE(2515)] = 102926, + [SMALL_STATE(2502)] = 102727, + [SMALL_STATE(2503)] = 102742, + [SMALL_STATE(2504)] = 102755, + [SMALL_STATE(2505)] = 102768, + [SMALL_STATE(2506)] = 102785, + [SMALL_STATE(2507)] = 102804, + [SMALL_STATE(2508)] = 102815, + [SMALL_STATE(2509)] = 102834, + [SMALL_STATE(2510)] = 102845, + [SMALL_STATE(2511)] = 102864, + [SMALL_STATE(2512)] = 102879, + [SMALL_STATE(2513)] = 102890, + [SMALL_STATE(2514)] = 102909, + [SMALL_STATE(2515)] = 102924, [SMALL_STATE(2516)] = 102937, [SMALL_STATE(2517)] = 102956, - [SMALL_STATE(2518)] = 102972, + [SMALL_STATE(2518)] = 102970, [SMALL_STATE(2519)] = 102986, - [SMALL_STATE(2520)] = 102998, - [SMALL_STATE(2521)] = 103010, - [SMALL_STATE(2522)] = 103026, - [SMALL_STATE(2523)] = 103042, - [SMALL_STATE(2524)] = 103058, - [SMALL_STATE(2525)] = 103074, - [SMALL_STATE(2526)] = 103088, - [SMALL_STATE(2527)] = 103102, - [SMALL_STATE(2528)] = 103118, - [SMALL_STATE(2529)] = 103132, + [SMALL_STATE(2520)] = 103002, + [SMALL_STATE(2521)] = 103018, + [SMALL_STATE(2522)] = 103034, + [SMALL_STATE(2523)] = 103048, + [SMALL_STATE(2524)] = 103062, + [SMALL_STATE(2525)] = 103076, + [SMALL_STATE(2526)] = 103090, + [SMALL_STATE(2527)] = 103104, + [SMALL_STATE(2528)] = 103120, + [SMALL_STATE(2529)] = 103130, [SMALL_STATE(2530)] = 103146, - [SMALL_STATE(2531)] = 103160, - [SMALL_STATE(2532)] = 103174, - [SMALL_STATE(2533)] = 103190, - [SMALL_STATE(2534)] = 103204, - [SMALL_STATE(2535)] = 103218, - [SMALL_STATE(2536)] = 103232, - [SMALL_STATE(2537)] = 103248, - [SMALL_STATE(2538)] = 103264, - [SMALL_STATE(2539)] = 103280, + [SMALL_STATE(2531)] = 103162, + [SMALL_STATE(2532)] = 103178, + [SMALL_STATE(2533)] = 103194, + [SMALL_STATE(2534)] = 103210, + [SMALL_STATE(2535)] = 103220, + [SMALL_STATE(2536)] = 103236, + [SMALL_STATE(2537)] = 103252, + [SMALL_STATE(2538)] = 103266, + [SMALL_STATE(2539)] = 103282, [SMALL_STATE(2540)] = 103296, [SMALL_STATE(2541)] = 103312, - [SMALL_STATE(2542)] = 103326, - [SMALL_STATE(2543)] = 103340, - [SMALL_STATE(2544)] = 103354, - [SMALL_STATE(2545)] = 103370, - [SMALL_STATE(2546)] = 103386, + [SMALL_STATE(2542)] = 103328, + [SMALL_STATE(2543)] = 103344, + [SMALL_STATE(2544)] = 103358, + [SMALL_STATE(2545)] = 103374, + [SMALL_STATE(2546)] = 103388, [SMALL_STATE(2547)] = 103402, [SMALL_STATE(2548)] = 103418, - [SMALL_STATE(2549)] = 103434, - [SMALL_STATE(2550)] = 103450, - [SMALL_STATE(2551)] = 103466, - [SMALL_STATE(2552)] = 103482, - [SMALL_STATE(2553)] = 103498, - [SMALL_STATE(2554)] = 103514, - [SMALL_STATE(2555)] = 103528, - [SMALL_STATE(2556)] = 103544, - [SMALL_STATE(2557)] = 103560, - [SMALL_STATE(2558)] = 103576, - [SMALL_STATE(2559)] = 103592, - [SMALL_STATE(2560)] = 103608, - [SMALL_STATE(2561)] = 103622, - [SMALL_STATE(2562)] = 103638, - [SMALL_STATE(2563)] = 103652, - [SMALL_STATE(2564)] = 103666, - [SMALL_STATE(2565)] = 103680, - [SMALL_STATE(2566)] = 103694, - [SMALL_STATE(2567)] = 103708, - [SMALL_STATE(2568)] = 103722, - [SMALL_STATE(2569)] = 103738, - [SMALL_STATE(2570)] = 103754, - [SMALL_STATE(2571)] = 103768, - [SMALL_STATE(2572)] = 103784, - [SMALL_STATE(2573)] = 103798, - [SMALL_STATE(2574)] = 103812, - [SMALL_STATE(2575)] = 103828, - [SMALL_STATE(2576)] = 103844, - [SMALL_STATE(2577)] = 103860, - [SMALL_STATE(2578)] = 103874, - [SMALL_STATE(2579)] = 103890, - [SMALL_STATE(2580)] = 103904, - [SMALL_STATE(2581)] = 103918, - [SMALL_STATE(2582)] = 103932, - [SMALL_STATE(2583)] = 103948, - [SMALL_STATE(2584)] = 103962, - [SMALL_STATE(2585)] = 103978, - [SMALL_STATE(2586)] = 103992, - [SMALL_STATE(2587)] = 104006, - [SMALL_STATE(2588)] = 104022, - [SMALL_STATE(2589)] = 104036, - [SMALL_STATE(2590)] = 104050, - [SMALL_STATE(2591)] = 104064, - [SMALL_STATE(2592)] = 104078, - [SMALL_STATE(2593)] = 104092, - [SMALL_STATE(2594)] = 104106, - [SMALL_STATE(2595)] = 104122, - [SMALL_STATE(2596)] = 104138, - [SMALL_STATE(2597)] = 104152, - [SMALL_STATE(2598)] = 104168, - [SMALL_STATE(2599)] = 104182, - [SMALL_STATE(2600)] = 104192, - [SMALL_STATE(2601)] = 104208, - [SMALL_STATE(2602)] = 104224, - [SMALL_STATE(2603)] = 104238, - [SMALL_STATE(2604)] = 104252, - [SMALL_STATE(2605)] = 104266, - [SMALL_STATE(2606)] = 104282, - [SMALL_STATE(2607)] = 104298, - [SMALL_STATE(2608)] = 104312, - [SMALL_STATE(2609)] = 104328, - [SMALL_STATE(2610)] = 104344, - [SMALL_STATE(2611)] = 104354, - [SMALL_STATE(2612)] = 104370, - [SMALL_STATE(2613)] = 104386, - [SMALL_STATE(2614)] = 104402, - [SMALL_STATE(2615)] = 104416, + [SMALL_STATE(2549)] = 103432, + [SMALL_STATE(2550)] = 103448, + [SMALL_STATE(2551)] = 103462, + [SMALL_STATE(2552)] = 103476, + [SMALL_STATE(2553)] = 103492, + [SMALL_STATE(2554)] = 103508, + [SMALL_STATE(2555)] = 103524, + [SMALL_STATE(2556)] = 103540, + [SMALL_STATE(2557)] = 103556, + [SMALL_STATE(2558)] = 103572, + [SMALL_STATE(2559)] = 103586, + [SMALL_STATE(2560)] = 103600, + [SMALL_STATE(2561)] = 103614, + [SMALL_STATE(2562)] = 103628, + [SMALL_STATE(2563)] = 103644, + [SMALL_STATE(2564)] = 103658, + [SMALL_STATE(2565)] = 103674, + [SMALL_STATE(2566)] = 103690, + [SMALL_STATE(2567)] = 103704, + [SMALL_STATE(2568)] = 103718, + [SMALL_STATE(2569)] = 103734, + [SMALL_STATE(2570)] = 103748, + [SMALL_STATE(2571)] = 103762, + [SMALL_STATE(2572)] = 103778, + [SMALL_STATE(2573)] = 103790, + [SMALL_STATE(2574)] = 103804, + [SMALL_STATE(2575)] = 103816, + [SMALL_STATE(2576)] = 103830, + [SMALL_STATE(2577)] = 103844, + [SMALL_STATE(2578)] = 103858, + [SMALL_STATE(2579)] = 103874, + [SMALL_STATE(2580)] = 103888, + [SMALL_STATE(2581)] = 103902, + [SMALL_STATE(2582)] = 103918, + [SMALL_STATE(2583)] = 103934, + [SMALL_STATE(2584)] = 103950, + [SMALL_STATE(2585)] = 103964, + [SMALL_STATE(2586)] = 103980, + [SMALL_STATE(2587)] = 103996, + [SMALL_STATE(2588)] = 104012, + [SMALL_STATE(2589)] = 104026, + [SMALL_STATE(2590)] = 104042, + [SMALL_STATE(2591)] = 104056, + [SMALL_STATE(2592)] = 104070, + [SMALL_STATE(2593)] = 104084, + [SMALL_STATE(2594)] = 104100, + [SMALL_STATE(2595)] = 104114, + [SMALL_STATE(2596)] = 104130, + [SMALL_STATE(2597)] = 104144, + [SMALL_STATE(2598)] = 104158, + [SMALL_STATE(2599)] = 104174, + [SMALL_STATE(2600)] = 104190, + [SMALL_STATE(2601)] = 104204, + [SMALL_STATE(2602)] = 104218, + [SMALL_STATE(2603)] = 104232, + [SMALL_STATE(2604)] = 104246, + [SMALL_STATE(2605)] = 104262, + [SMALL_STATE(2606)] = 104278, + [SMALL_STATE(2607)] = 104292, + [SMALL_STATE(2608)] = 104308, + [SMALL_STATE(2609)] = 104324, + [SMALL_STATE(2610)] = 104338, + [SMALL_STATE(2611)] = 104352, + [SMALL_STATE(2612)] = 104366, + [SMALL_STATE(2613)] = 104382, + [SMALL_STATE(2614)] = 104398, + [SMALL_STATE(2615)] = 104414, [SMALL_STATE(2616)] = 104430, - [SMALL_STATE(2617)] = 104446, - [SMALL_STATE(2618)] = 104460, + [SMALL_STATE(2617)] = 104444, + [SMALL_STATE(2618)] = 104458, [SMALL_STATE(2619)] = 104474, [SMALL_STATE(2620)] = 104488, [SMALL_STATE(2621)] = 104504, - [SMALL_STATE(2622)] = 104520, + [SMALL_STATE(2622)] = 104518, [SMALL_STATE(2623)] = 104534, - [SMALL_STATE(2624)] = 104548, - [SMALL_STATE(2625)] = 104562, - [SMALL_STATE(2626)] = 104576, - [SMALL_STATE(2627)] = 104592, - [SMALL_STATE(2628)] = 104608, + [SMALL_STATE(2624)] = 104550, + [SMALL_STATE(2625)] = 104564, + [SMALL_STATE(2626)] = 104578, + [SMALL_STATE(2627)] = 104594, + [SMALL_STATE(2628)] = 104610, [SMALL_STATE(2629)] = 104624, - [SMALL_STATE(2630)] = 104640, - [SMALL_STATE(2631)] = 104656, - [SMALL_STATE(2632)] = 104672, - [SMALL_STATE(2633)] = 104686, - [SMALL_STATE(2634)] = 104702, - [SMALL_STATE(2635)] = 104718, - [SMALL_STATE(2636)] = 104734, - [SMALL_STATE(2637)] = 104748, + [SMALL_STATE(2630)] = 104638, + [SMALL_STATE(2631)] = 104652, + [SMALL_STATE(2632)] = 104668, + [SMALL_STATE(2633)] = 104682, + [SMALL_STATE(2634)] = 104698, + [SMALL_STATE(2635)] = 104714, + [SMALL_STATE(2636)] = 104730, + [SMALL_STATE(2637)] = 104746, [SMALL_STATE(2638)] = 104762, [SMALL_STATE(2639)] = 104776, [SMALL_STATE(2640)] = 104792, - [SMALL_STATE(2641)] = 104801, - [SMALL_STATE(2642)] = 104814, - [SMALL_STATE(2643)] = 104827, - [SMALL_STATE(2644)] = 104840, - [SMALL_STATE(2645)] = 104853, - [SMALL_STATE(2646)] = 104866, - [SMALL_STATE(2647)] = 104879, - [SMALL_STATE(2648)] = 104888, - [SMALL_STATE(2649)] = 104901, - [SMALL_STATE(2650)] = 104910, - [SMALL_STATE(2651)] = 104923, - [SMALL_STATE(2652)] = 104936, - [SMALL_STATE(2653)] = 104949, - [SMALL_STATE(2654)] = 104958, - [SMALL_STATE(2655)] = 104971, - [SMALL_STATE(2656)] = 104982, - [SMALL_STATE(2657)] = 104995, + [SMALL_STATE(2641)] = 104808, + [SMALL_STATE(2642)] = 104824, + [SMALL_STATE(2643)] = 104837, + [SMALL_STATE(2644)] = 104850, + [SMALL_STATE(2645)] = 104863, + [SMALL_STATE(2646)] = 104872, + [SMALL_STATE(2647)] = 104885, + [SMALL_STATE(2648)] = 104898, + [SMALL_STATE(2649)] = 104911, + [SMALL_STATE(2650)] = 104924, + [SMALL_STATE(2651)] = 104937, + [SMALL_STATE(2652)] = 104946, + [SMALL_STATE(2653)] = 104955, + [SMALL_STATE(2654)] = 104968, + [SMALL_STATE(2655)] = 104977, + [SMALL_STATE(2656)] = 104986, + [SMALL_STATE(2657)] = 104997, [SMALL_STATE(2658)] = 105008, - [SMALL_STATE(2659)] = 105021, - [SMALL_STATE(2660)] = 105034, - [SMALL_STATE(2661)] = 105045, - [SMALL_STATE(2662)] = 105054, - [SMALL_STATE(2663)] = 105067, - [SMALL_STATE(2664)] = 105080, - [SMALL_STATE(2665)] = 105093, - [SMALL_STATE(2666)] = 105106, - [SMALL_STATE(2667)] = 105119, - [SMALL_STATE(2668)] = 105130, - [SMALL_STATE(2669)] = 105143, - [SMALL_STATE(2670)] = 105156, - [SMALL_STATE(2671)] = 105169, - [SMALL_STATE(2672)] = 105182, - [SMALL_STATE(2673)] = 105195, - [SMALL_STATE(2674)] = 105208, - [SMALL_STATE(2675)] = 105221, - [SMALL_STATE(2676)] = 105234, - [SMALL_STATE(2677)] = 105247, - [SMALL_STATE(2678)] = 105256, - [SMALL_STATE(2679)] = 105269, - [SMALL_STATE(2680)] = 105282, - [SMALL_STATE(2681)] = 105295, - [SMALL_STATE(2682)] = 105304, - [SMALL_STATE(2683)] = 105313, - [SMALL_STATE(2684)] = 105326, - [SMALL_STATE(2685)] = 105339, - [SMALL_STATE(2686)] = 105352, - [SMALL_STATE(2687)] = 105365, - [SMALL_STATE(2688)] = 105374, - [SMALL_STATE(2689)] = 105387, - [SMALL_STATE(2690)] = 105400, - [SMALL_STATE(2691)] = 105413, - [SMALL_STATE(2692)] = 105426, - [SMALL_STATE(2693)] = 105435, - [SMALL_STATE(2694)] = 105448, - [SMALL_STATE(2695)] = 105461, - [SMALL_STATE(2696)] = 105474, - [SMALL_STATE(2697)] = 105487, - [SMALL_STATE(2698)] = 105498, - [SMALL_STATE(2699)] = 105511, - [SMALL_STATE(2700)] = 105520, - [SMALL_STATE(2701)] = 105533, - [SMALL_STATE(2702)] = 105542, - [SMALL_STATE(2703)] = 105555, - [SMALL_STATE(2704)] = 105564, - [SMALL_STATE(2705)] = 105573, - [SMALL_STATE(2706)] = 105582, - [SMALL_STATE(2707)] = 105595, - [SMALL_STATE(2708)] = 105608, - [SMALL_STATE(2709)] = 105621, - [SMALL_STATE(2710)] = 105634, - [SMALL_STATE(2711)] = 105647, - [SMALL_STATE(2712)] = 105660, - [SMALL_STATE(2713)] = 105669, - [SMALL_STATE(2714)] = 105680, - [SMALL_STATE(2715)] = 105689, - [SMALL_STATE(2716)] = 105698, - [SMALL_STATE(2717)] = 105707, - [SMALL_STATE(2718)] = 105718, - [SMALL_STATE(2719)] = 105731, - [SMALL_STATE(2720)] = 105744, - [SMALL_STATE(2721)] = 105753, - [SMALL_STATE(2722)] = 105766, - [SMALL_STATE(2723)] = 105779, - [SMALL_STATE(2724)] = 105792, - [SMALL_STATE(2725)] = 105805, - [SMALL_STATE(2726)] = 105818, - [SMALL_STATE(2727)] = 105831, - [SMALL_STATE(2728)] = 105844, - [SMALL_STATE(2729)] = 105853, - [SMALL_STATE(2730)] = 105866, - [SMALL_STATE(2731)] = 105879, - [SMALL_STATE(2732)] = 105888, - [SMALL_STATE(2733)] = 105901, - [SMALL_STATE(2734)] = 105914, - [SMALL_STATE(2735)] = 105927, - [SMALL_STATE(2736)] = 105940, - [SMALL_STATE(2737)] = 105953, - [SMALL_STATE(2738)] = 105966, - [SMALL_STATE(2739)] = 105979, - [SMALL_STATE(2740)] = 105988, - [SMALL_STATE(2741)] = 106001, - [SMALL_STATE(2742)] = 106014, - [SMALL_STATE(2743)] = 106023, - [SMALL_STATE(2744)] = 106036, - [SMALL_STATE(2745)] = 106045, - [SMALL_STATE(2746)] = 106058, - [SMALL_STATE(2747)] = 106071, - [SMALL_STATE(2748)] = 106084, - [SMALL_STATE(2749)] = 106093, - [SMALL_STATE(2750)] = 106106, - [SMALL_STATE(2751)] = 106115, - [SMALL_STATE(2752)] = 106124, - [SMALL_STATE(2753)] = 106137, - [SMALL_STATE(2754)] = 106146, - [SMALL_STATE(2755)] = 106159, - [SMALL_STATE(2756)] = 106172, - [SMALL_STATE(2757)] = 106183, - [SMALL_STATE(2758)] = 106194, - [SMALL_STATE(2759)] = 106207, - [SMALL_STATE(2760)] = 106220, - [SMALL_STATE(2761)] = 106231, - [SMALL_STATE(2762)] = 106240, - [SMALL_STATE(2763)] = 106253, - [SMALL_STATE(2764)] = 106264, - [SMALL_STATE(2765)] = 106277, - [SMALL_STATE(2766)] = 106290, - [SMALL_STATE(2767)] = 106303, - [SMALL_STATE(2768)] = 106314, - [SMALL_STATE(2769)] = 106325, - [SMALL_STATE(2770)] = 106334, - [SMALL_STATE(2771)] = 106347, - [SMALL_STATE(2772)] = 106360, - [SMALL_STATE(2773)] = 106373, - [SMALL_STATE(2774)] = 106382, - [SMALL_STATE(2775)] = 106395, - [SMALL_STATE(2776)] = 106406, - [SMALL_STATE(2777)] = 106415, - [SMALL_STATE(2778)] = 106424, - [SMALL_STATE(2779)] = 106437, - [SMALL_STATE(2780)] = 106446, - [SMALL_STATE(2781)] = 106455, - [SMALL_STATE(2782)] = 106464, - [SMALL_STATE(2783)] = 106477, - [SMALL_STATE(2784)] = 106486, - [SMALL_STATE(2785)] = 106495, - [SMALL_STATE(2786)] = 106504, - [SMALL_STATE(2787)] = 106517, - [SMALL_STATE(2788)] = 106530, - [SMALL_STATE(2789)] = 106543, - [SMALL_STATE(2790)] = 106556, - [SMALL_STATE(2791)] = 106565, - [SMALL_STATE(2792)] = 106574, - [SMALL_STATE(2793)] = 106587, - [SMALL_STATE(2794)] = 106596, - [SMALL_STATE(2795)] = 106605, - [SMALL_STATE(2796)] = 106614, - [SMALL_STATE(2797)] = 106627, - [SMALL_STATE(2798)] = 106640, - [SMALL_STATE(2799)] = 106653, - [SMALL_STATE(2800)] = 106664, - [SMALL_STATE(2801)] = 106677, - [SMALL_STATE(2802)] = 106686, - [SMALL_STATE(2803)] = 106695, - [SMALL_STATE(2804)] = 106704, - [SMALL_STATE(2805)] = 106717, - [SMALL_STATE(2806)] = 106728, - [SMALL_STATE(2807)] = 106739, - [SMALL_STATE(2808)] = 106748, - [SMALL_STATE(2809)] = 106761, - [SMALL_STATE(2810)] = 106774, - [SMALL_STATE(2811)] = 106787, - [SMALL_STATE(2812)] = 106800, - [SMALL_STATE(2813)] = 106809, - [SMALL_STATE(2814)] = 106822, - [SMALL_STATE(2815)] = 106831, - [SMALL_STATE(2816)] = 106844, + [SMALL_STATE(2659)] = 105017, + [SMALL_STATE(2660)] = 105030, + [SMALL_STATE(2661)] = 105043, + [SMALL_STATE(2662)] = 105056, + [SMALL_STATE(2663)] = 105069, + [SMALL_STATE(2664)] = 105078, + [SMALL_STATE(2665)] = 105091, + [SMALL_STATE(2666)] = 105104, + [SMALL_STATE(2667)] = 105113, + [SMALL_STATE(2668)] = 105126, + [SMALL_STATE(2669)] = 105139, + [SMALL_STATE(2670)] = 105152, + [SMALL_STATE(2671)] = 105165, + [SMALL_STATE(2672)] = 105178, + [SMALL_STATE(2673)] = 105187, + [SMALL_STATE(2674)] = 105200, + [SMALL_STATE(2675)] = 105213, + [SMALL_STATE(2676)] = 105222, + [SMALL_STATE(2677)] = 105231, + [SMALL_STATE(2678)] = 105244, + [SMALL_STATE(2679)] = 105257, + [SMALL_STATE(2680)] = 105266, + [SMALL_STATE(2681)] = 105279, + [SMALL_STATE(2682)] = 105288, + [SMALL_STATE(2683)] = 105297, + [SMALL_STATE(2684)] = 105310, + [SMALL_STATE(2685)] = 105319, + [SMALL_STATE(2686)] = 105328, + [SMALL_STATE(2687)] = 105341, + [SMALL_STATE(2688)] = 105350, + [SMALL_STATE(2689)] = 105359, + [SMALL_STATE(2690)] = 105372, + [SMALL_STATE(2691)] = 105385, + [SMALL_STATE(2692)] = 105394, + [SMALL_STATE(2693)] = 105407, + [SMALL_STATE(2694)] = 105420, + [SMALL_STATE(2695)] = 105429, + [SMALL_STATE(2696)] = 105442, + [SMALL_STATE(2697)] = 105455, + [SMALL_STATE(2698)] = 105464, + [SMALL_STATE(2699)] = 105477, + [SMALL_STATE(2700)] = 105486, + [SMALL_STATE(2701)] = 105499, + [SMALL_STATE(2702)] = 105508, + [SMALL_STATE(2703)] = 105517, + [SMALL_STATE(2704)] = 105526, + [SMALL_STATE(2705)] = 105539, + [SMALL_STATE(2706)] = 105548, + [SMALL_STATE(2707)] = 105561, + [SMALL_STATE(2708)] = 105570, + [SMALL_STATE(2709)] = 105583, + [SMALL_STATE(2710)] = 105592, + [SMALL_STATE(2711)] = 105605, + [SMALL_STATE(2712)] = 105614, + [SMALL_STATE(2713)] = 105625, + [SMALL_STATE(2714)] = 105634, + [SMALL_STATE(2715)] = 105643, + [SMALL_STATE(2716)] = 105656, + [SMALL_STATE(2717)] = 105669, + [SMALL_STATE(2718)] = 105682, + [SMALL_STATE(2719)] = 105695, + [SMALL_STATE(2720)] = 105708, + [SMALL_STATE(2721)] = 105721, + [SMALL_STATE(2722)] = 105734, + [SMALL_STATE(2723)] = 105747, + [SMALL_STATE(2724)] = 105758, + [SMALL_STATE(2725)] = 105771, + [SMALL_STATE(2726)] = 105784, + [SMALL_STATE(2727)] = 105793, + [SMALL_STATE(2728)] = 105806, + [SMALL_STATE(2729)] = 105817, + [SMALL_STATE(2730)] = 105830, + [SMALL_STATE(2731)] = 105843, + [SMALL_STATE(2732)] = 105856, + [SMALL_STATE(2733)] = 105865, + [SMALL_STATE(2734)] = 105878, + [SMALL_STATE(2735)] = 105891, + [SMALL_STATE(2736)] = 105904, + [SMALL_STATE(2737)] = 105915, + [SMALL_STATE(2738)] = 105928, + [SMALL_STATE(2739)] = 105941, + [SMALL_STATE(2740)] = 105954, + [SMALL_STATE(2741)] = 105967, + [SMALL_STATE(2742)] = 105980, + [SMALL_STATE(2743)] = 105993, + [SMALL_STATE(2744)] = 106004, + [SMALL_STATE(2745)] = 106013, + [SMALL_STATE(2746)] = 106026, + [SMALL_STATE(2747)] = 106039, + [SMALL_STATE(2748)] = 106052, + [SMALL_STATE(2749)] = 106065, + [SMALL_STATE(2750)] = 106078, + [SMALL_STATE(2751)] = 106087, + [SMALL_STATE(2752)] = 106096, + [SMALL_STATE(2753)] = 106105, + [SMALL_STATE(2754)] = 106118, + [SMALL_STATE(2755)] = 106131, + [SMALL_STATE(2756)] = 106140, + [SMALL_STATE(2757)] = 106153, + [SMALL_STATE(2758)] = 106162, + [SMALL_STATE(2759)] = 106175, + [SMALL_STATE(2760)] = 106184, + [SMALL_STATE(2761)] = 106193, + [SMALL_STATE(2762)] = 106206, + [SMALL_STATE(2763)] = 106215, + [SMALL_STATE(2764)] = 106224, + [SMALL_STATE(2765)] = 106233, + [SMALL_STATE(2766)] = 106242, + [SMALL_STATE(2767)] = 106251, + [SMALL_STATE(2768)] = 106262, + [SMALL_STATE(2769)] = 106271, + [SMALL_STATE(2770)] = 106284, + [SMALL_STATE(2771)] = 106297, + [SMALL_STATE(2772)] = 106310, + [SMALL_STATE(2773)] = 106323, + [SMALL_STATE(2774)] = 106332, + [SMALL_STATE(2775)] = 106345, + [SMALL_STATE(2776)] = 106354, + [SMALL_STATE(2777)] = 106367, + [SMALL_STATE(2778)] = 106380, + [SMALL_STATE(2779)] = 106393, + [SMALL_STATE(2780)] = 106404, + [SMALL_STATE(2781)] = 106417, + [SMALL_STATE(2782)] = 106428, + [SMALL_STATE(2783)] = 106437, + [SMALL_STATE(2784)] = 106448, + [SMALL_STATE(2785)] = 106457, + [SMALL_STATE(2786)] = 106470, + [SMALL_STATE(2787)] = 106483, + [SMALL_STATE(2788)] = 106496, + [SMALL_STATE(2789)] = 106509, + [SMALL_STATE(2790)] = 106520, + [SMALL_STATE(2791)] = 106531, + [SMALL_STATE(2792)] = 106542, + [SMALL_STATE(2793)] = 106555, + [SMALL_STATE(2794)] = 106568, + [SMALL_STATE(2795)] = 106577, + [SMALL_STATE(2796)] = 106590, + [SMALL_STATE(2797)] = 106603, + [SMALL_STATE(2798)] = 106616, + [SMALL_STATE(2799)] = 106629, + [SMALL_STATE(2800)] = 106642, + [SMALL_STATE(2801)] = 106655, + [SMALL_STATE(2802)] = 106668, + [SMALL_STATE(2803)] = 106681, + [SMALL_STATE(2804)] = 106694, + [SMALL_STATE(2805)] = 106707, + [SMALL_STATE(2806)] = 106720, + [SMALL_STATE(2807)] = 106733, + [SMALL_STATE(2808)] = 106746, + [SMALL_STATE(2809)] = 106759, + [SMALL_STATE(2810)] = 106772, + [SMALL_STATE(2811)] = 106785, + [SMALL_STATE(2812)] = 106798, + [SMALL_STATE(2813)] = 106811, + [SMALL_STATE(2814)] = 106824, + [SMALL_STATE(2815)] = 106837, + [SMALL_STATE(2816)] = 106846, [SMALL_STATE(2817)] = 106857, [SMALL_STATE(2818)] = 106870, [SMALL_STATE(2819)] = 106883, [SMALL_STATE(2820)] = 106896, - [SMALL_STATE(2821)] = 106909, - [SMALL_STATE(2822)] = 106922, - [SMALL_STATE(2823)] = 106935, - [SMALL_STATE(2824)] = 106948, - [SMALL_STATE(2825)] = 106961, + [SMALL_STATE(2821)] = 106905, + [SMALL_STATE(2822)] = 106918, + [SMALL_STATE(2823)] = 106931, + [SMALL_STATE(2824)] = 106944, + [SMALL_STATE(2825)] = 106957, [SMALL_STATE(2826)] = 106970, [SMALL_STATE(2827)] = 106983, - [SMALL_STATE(2828)] = 106996, - [SMALL_STATE(2829)] = 107009, - [SMALL_STATE(2830)] = 107022, - [SMALL_STATE(2831)] = 107035, - [SMALL_STATE(2832)] = 107048, - [SMALL_STATE(2833)] = 107057, - [SMALL_STATE(2834)] = 107070, - [SMALL_STATE(2835)] = 107079, - [SMALL_STATE(2836)] = 107089, - [SMALL_STATE(2837)] = 107099, - [SMALL_STATE(2838)] = 107107, - [SMALL_STATE(2839)] = 107117, - [SMALL_STATE(2840)] = 107127, - [SMALL_STATE(2841)] = 107137, - [SMALL_STATE(2842)] = 107147, - [SMALL_STATE(2843)] = 107157, - [SMALL_STATE(2844)] = 107167, - [SMALL_STATE(2845)] = 107177, - [SMALL_STATE(2846)] = 107185, - [SMALL_STATE(2847)] = 107195, - [SMALL_STATE(2848)] = 107203, - [SMALL_STATE(2849)] = 107213, - [SMALL_STATE(2850)] = 107223, - [SMALL_STATE(2851)] = 107233, - [SMALL_STATE(2852)] = 107243, - [SMALL_STATE(2853)] = 107253, - [SMALL_STATE(2854)] = 107261, - [SMALL_STATE(2855)] = 107271, - [SMALL_STATE(2856)] = 107281, - [SMALL_STATE(2857)] = 107291, - [SMALL_STATE(2858)] = 107299, - [SMALL_STATE(2859)] = 107309, - [SMALL_STATE(2860)] = 107319, - [SMALL_STATE(2861)] = 107329, - [SMALL_STATE(2862)] = 107339, - [SMALL_STATE(2863)] = 107349, - [SMALL_STATE(2864)] = 107357, - [SMALL_STATE(2865)] = 107367, - [SMALL_STATE(2866)] = 107377, - [SMALL_STATE(2867)] = 107387, - [SMALL_STATE(2868)] = 107397, - [SMALL_STATE(2869)] = 107405, - [SMALL_STATE(2870)] = 107415, - [SMALL_STATE(2871)] = 107425, - [SMALL_STATE(2872)] = 107435, - [SMALL_STATE(2873)] = 107445, - [SMALL_STATE(2874)] = 107455, - [SMALL_STATE(2875)] = 107465, - [SMALL_STATE(2876)] = 107475, - [SMALL_STATE(2877)] = 107485, - [SMALL_STATE(2878)] = 107495, - [SMALL_STATE(2879)] = 107505, - [SMALL_STATE(2880)] = 107515, - [SMALL_STATE(2881)] = 107525, - [SMALL_STATE(2882)] = 107535, - [SMALL_STATE(2883)] = 107545, - [SMALL_STATE(2884)] = 107555, - [SMALL_STATE(2885)] = 107565, - [SMALL_STATE(2886)] = 107573, - [SMALL_STATE(2887)] = 107583, - [SMALL_STATE(2888)] = 107593, - [SMALL_STATE(2889)] = 107603, - [SMALL_STATE(2890)] = 107613, - [SMALL_STATE(2891)] = 107623, - [SMALL_STATE(2892)] = 107631, - [SMALL_STATE(2893)] = 107639, - [SMALL_STATE(2894)] = 107649, - [SMALL_STATE(2895)] = 107659, - [SMALL_STATE(2896)] = 107669, - [SMALL_STATE(2897)] = 107677, - [SMALL_STATE(2898)] = 107685, - [SMALL_STATE(2899)] = 107693, - [SMALL_STATE(2900)] = 107703, - [SMALL_STATE(2901)] = 107713, - [SMALL_STATE(2902)] = 107723, - [SMALL_STATE(2903)] = 107733, - [SMALL_STATE(2904)] = 107741, - [SMALL_STATE(2905)] = 107751, - [SMALL_STATE(2906)] = 107759, - [SMALL_STATE(2907)] = 107769, - [SMALL_STATE(2908)] = 107779, - [SMALL_STATE(2909)] = 107789, - [SMALL_STATE(2910)] = 107799, - [SMALL_STATE(2911)] = 107809, - [SMALL_STATE(2912)] = 107819, - [SMALL_STATE(2913)] = 107829, - [SMALL_STATE(2914)] = 107839, - [SMALL_STATE(2915)] = 107849, - [SMALL_STATE(2916)] = 107857, - [SMALL_STATE(2917)] = 107865, - [SMALL_STATE(2918)] = 107875, - [SMALL_STATE(2919)] = 107885, - [SMALL_STATE(2920)] = 107893, - [SMALL_STATE(2921)] = 107903, - [SMALL_STATE(2922)] = 107913, - [SMALL_STATE(2923)] = 107923, - [SMALL_STATE(2924)] = 107933, - [SMALL_STATE(2925)] = 107943, - [SMALL_STATE(2926)] = 107951, - [SMALL_STATE(2927)] = 107961, - [SMALL_STATE(2928)] = 107969, - [SMALL_STATE(2929)] = 107979, - [SMALL_STATE(2930)] = 107989, - [SMALL_STATE(2931)] = 107999, - [SMALL_STATE(2932)] = 108009, - [SMALL_STATE(2933)] = 108019, - [SMALL_STATE(2934)] = 108029, - [SMALL_STATE(2935)] = 108037, - [SMALL_STATE(2936)] = 108047, - [SMALL_STATE(2937)] = 108057, - [SMALL_STATE(2938)] = 108067, - [SMALL_STATE(2939)] = 108077, - [SMALL_STATE(2940)] = 108087, - [SMALL_STATE(2941)] = 108095, - [SMALL_STATE(2942)] = 108105, - [SMALL_STATE(2943)] = 108115, - [SMALL_STATE(2944)] = 108125, - [SMALL_STATE(2945)] = 108135, - [SMALL_STATE(2946)] = 108145, - [SMALL_STATE(2947)] = 108155, - [SMALL_STATE(2948)] = 108165, - [SMALL_STATE(2949)] = 108175, - [SMALL_STATE(2950)] = 108185, - [SMALL_STATE(2951)] = 108195, - [SMALL_STATE(2952)] = 108203, - [SMALL_STATE(2953)] = 108213, - [SMALL_STATE(2954)] = 108223, - [SMALL_STATE(2955)] = 108233, - [SMALL_STATE(2956)] = 108243, - [SMALL_STATE(2957)] = 108253, - [SMALL_STATE(2958)] = 108263, - [SMALL_STATE(2959)] = 108273, - [SMALL_STATE(2960)] = 108283, - [SMALL_STATE(2961)] = 108293, - [SMALL_STATE(2962)] = 108303, - [SMALL_STATE(2963)] = 108313, - [SMALL_STATE(2964)] = 108321, - [SMALL_STATE(2965)] = 108331, - [SMALL_STATE(2966)] = 108341, - [SMALL_STATE(2967)] = 108351, - [SMALL_STATE(2968)] = 108361, - [SMALL_STATE(2969)] = 108369, - [SMALL_STATE(2970)] = 108379, - [SMALL_STATE(2971)] = 108389, - [SMALL_STATE(2972)] = 108399, - [SMALL_STATE(2973)] = 108407, - [SMALL_STATE(2974)] = 108415, - [SMALL_STATE(2975)] = 108425, - [SMALL_STATE(2976)] = 108435, - [SMALL_STATE(2977)] = 108445, - [SMALL_STATE(2978)] = 108453, - [SMALL_STATE(2979)] = 108463, - [SMALL_STATE(2980)] = 108473, - [SMALL_STATE(2981)] = 108483, - [SMALL_STATE(2982)] = 108493, - [SMALL_STATE(2983)] = 108501, - [SMALL_STATE(2984)] = 108509, - [SMALL_STATE(2985)] = 108519, - [SMALL_STATE(2986)] = 108527, - [SMALL_STATE(2987)] = 108537, - [SMALL_STATE(2988)] = 108545, - [SMALL_STATE(2989)] = 108555, - [SMALL_STATE(2990)] = 108563, - [SMALL_STATE(2991)] = 108573, - [SMALL_STATE(2992)] = 108583, - [SMALL_STATE(2993)] = 108591, - [SMALL_STATE(2994)] = 108601, - [SMALL_STATE(2995)] = 108609, - [SMALL_STATE(2996)] = 108619, - [SMALL_STATE(2997)] = 108627, - [SMALL_STATE(2998)] = 108637, - [SMALL_STATE(2999)] = 108647, - [SMALL_STATE(3000)] = 108657, - [SMALL_STATE(3001)] = 108667, - [SMALL_STATE(3002)] = 108677, - [SMALL_STATE(3003)] = 108685, - [SMALL_STATE(3004)] = 108695, - [SMALL_STATE(3005)] = 108705, - [SMALL_STATE(3006)] = 108715, - [SMALL_STATE(3007)] = 108723, - [SMALL_STATE(3008)] = 108731, - [SMALL_STATE(3009)] = 108739, - [SMALL_STATE(3010)] = 108749, - [SMALL_STATE(3011)] = 108759, - [SMALL_STATE(3012)] = 108769, - [SMALL_STATE(3013)] = 108779, - [SMALL_STATE(3014)] = 108789, - [SMALL_STATE(3015)] = 108797, - [SMALL_STATE(3016)] = 108807, - [SMALL_STATE(3017)] = 108817, - [SMALL_STATE(3018)] = 108827, - [SMALL_STATE(3019)] = 108835, - [SMALL_STATE(3020)] = 108845, - [SMALL_STATE(3021)] = 108855, - [SMALL_STATE(3022)] = 108863, - [SMALL_STATE(3023)] = 108871, - [SMALL_STATE(3024)] = 108881, - [SMALL_STATE(3025)] = 108891, - [SMALL_STATE(3026)] = 108901, - [SMALL_STATE(3027)] = 108911, - [SMALL_STATE(3028)] = 108921, - [SMALL_STATE(3029)] = 108931, - [SMALL_STATE(3030)] = 108941, - [SMALL_STATE(3031)] = 108949, - [SMALL_STATE(3032)] = 108959, - [SMALL_STATE(3033)] = 108967, - [SMALL_STATE(3034)] = 108977, - [SMALL_STATE(3035)] = 108987, - [SMALL_STATE(3036)] = 108995, - [SMALL_STATE(3037)] = 109005, - [SMALL_STATE(3038)] = 109015, - [SMALL_STATE(3039)] = 109025, - [SMALL_STATE(3040)] = 109035, - [SMALL_STATE(3041)] = 109045, - [SMALL_STATE(3042)] = 109055, - [SMALL_STATE(3043)] = 109065, - [SMALL_STATE(3044)] = 109073, - [SMALL_STATE(3045)] = 109083, - [SMALL_STATE(3046)] = 109093, - [SMALL_STATE(3047)] = 109103, - [SMALL_STATE(3048)] = 109113, - [SMALL_STATE(3049)] = 109123, - [SMALL_STATE(3050)] = 109133, - [SMALL_STATE(3051)] = 109143, - [SMALL_STATE(3052)] = 109153, - [SMALL_STATE(3053)] = 109163, - [SMALL_STATE(3054)] = 109173, - [SMALL_STATE(3055)] = 109183, - [SMALL_STATE(3056)] = 109193, - [SMALL_STATE(3057)] = 109201, - [SMALL_STATE(3058)] = 109209, - [SMALL_STATE(3059)] = 109219, - [SMALL_STATE(3060)] = 109229, - [SMALL_STATE(3061)] = 109239, - [SMALL_STATE(3062)] = 109249, - [SMALL_STATE(3063)] = 109259, - [SMALL_STATE(3064)] = 109269, - [SMALL_STATE(3065)] = 109279, - [SMALL_STATE(3066)] = 109289, - [SMALL_STATE(3067)] = 109299, - [SMALL_STATE(3068)] = 109309, - [SMALL_STATE(3069)] = 109319, - [SMALL_STATE(3070)] = 109326, - [SMALL_STATE(3071)] = 109333, - [SMALL_STATE(3072)] = 109340, - [SMALL_STATE(3073)] = 109347, - [SMALL_STATE(3074)] = 109354, - [SMALL_STATE(3075)] = 109361, - [SMALL_STATE(3076)] = 109368, - [SMALL_STATE(3077)] = 109375, - [SMALL_STATE(3078)] = 109382, - [SMALL_STATE(3079)] = 109389, - [SMALL_STATE(3080)] = 109396, - [SMALL_STATE(3081)] = 109403, - [SMALL_STATE(3082)] = 109410, - [SMALL_STATE(3083)] = 109417, - [SMALL_STATE(3084)] = 109424, - [SMALL_STATE(3085)] = 109431, - [SMALL_STATE(3086)] = 109438, - [SMALL_STATE(3087)] = 109445, - [SMALL_STATE(3088)] = 109452, - [SMALL_STATE(3089)] = 109459, - [SMALL_STATE(3090)] = 109466, - [SMALL_STATE(3091)] = 109473, - [SMALL_STATE(3092)] = 109480, - [SMALL_STATE(3093)] = 109487, - [SMALL_STATE(3094)] = 109494, - [SMALL_STATE(3095)] = 109501, - [SMALL_STATE(3096)] = 109508, - [SMALL_STATE(3097)] = 109515, - [SMALL_STATE(3098)] = 109522, - [SMALL_STATE(3099)] = 109529, - [SMALL_STATE(3100)] = 109536, - [SMALL_STATE(3101)] = 109543, - [SMALL_STATE(3102)] = 109550, - [SMALL_STATE(3103)] = 109557, - [SMALL_STATE(3104)] = 109564, - [SMALL_STATE(3105)] = 109571, - [SMALL_STATE(3106)] = 109578, - [SMALL_STATE(3107)] = 109585, - [SMALL_STATE(3108)] = 109592, - [SMALL_STATE(3109)] = 109599, - [SMALL_STATE(3110)] = 109606, - [SMALL_STATE(3111)] = 109613, - [SMALL_STATE(3112)] = 109620, - [SMALL_STATE(3113)] = 109627, - [SMALL_STATE(3114)] = 109634, - [SMALL_STATE(3115)] = 109641, - [SMALL_STATE(3116)] = 109648, - [SMALL_STATE(3117)] = 109655, - [SMALL_STATE(3118)] = 109662, - [SMALL_STATE(3119)] = 109669, - [SMALL_STATE(3120)] = 109676, - [SMALL_STATE(3121)] = 109683, - [SMALL_STATE(3122)] = 109690, - [SMALL_STATE(3123)] = 109697, - [SMALL_STATE(3124)] = 109704, - [SMALL_STATE(3125)] = 109711, - [SMALL_STATE(3126)] = 109718, - [SMALL_STATE(3127)] = 109725, - [SMALL_STATE(3128)] = 109732, - [SMALL_STATE(3129)] = 109739, - [SMALL_STATE(3130)] = 109746, - [SMALL_STATE(3131)] = 109753, - [SMALL_STATE(3132)] = 109760, - [SMALL_STATE(3133)] = 109767, - [SMALL_STATE(3134)] = 109774, - [SMALL_STATE(3135)] = 109781, - [SMALL_STATE(3136)] = 109788, - [SMALL_STATE(3137)] = 109795, - [SMALL_STATE(3138)] = 109802, - [SMALL_STATE(3139)] = 109809, - [SMALL_STATE(3140)] = 109816, - [SMALL_STATE(3141)] = 109823, - [SMALL_STATE(3142)] = 109830, - [SMALL_STATE(3143)] = 109837, - [SMALL_STATE(3144)] = 109844, - [SMALL_STATE(3145)] = 109851, - [SMALL_STATE(3146)] = 109858, - [SMALL_STATE(3147)] = 109865, - [SMALL_STATE(3148)] = 109872, - [SMALL_STATE(3149)] = 109879, - [SMALL_STATE(3150)] = 109886, - [SMALL_STATE(3151)] = 109893, - [SMALL_STATE(3152)] = 109900, - [SMALL_STATE(3153)] = 109907, - [SMALL_STATE(3154)] = 109914, - [SMALL_STATE(3155)] = 109921, - [SMALL_STATE(3156)] = 109928, - [SMALL_STATE(3157)] = 109935, - [SMALL_STATE(3158)] = 109942, - [SMALL_STATE(3159)] = 109949, - [SMALL_STATE(3160)] = 109956, - [SMALL_STATE(3161)] = 109963, - [SMALL_STATE(3162)] = 109970, - [SMALL_STATE(3163)] = 109977, - [SMALL_STATE(3164)] = 109984, - [SMALL_STATE(3165)] = 109991, - [SMALL_STATE(3166)] = 109998, - [SMALL_STATE(3167)] = 110005, - [SMALL_STATE(3168)] = 110012, - [SMALL_STATE(3169)] = 110019, - [SMALL_STATE(3170)] = 110026, - [SMALL_STATE(3171)] = 110033, - [SMALL_STATE(3172)] = 110040, - [SMALL_STATE(3173)] = 110047, - [SMALL_STATE(3174)] = 110054, - [SMALL_STATE(3175)] = 110061, - [SMALL_STATE(3176)] = 110068, - [SMALL_STATE(3177)] = 110075, - [SMALL_STATE(3178)] = 110082, - [SMALL_STATE(3179)] = 110089, - [SMALL_STATE(3180)] = 110096, - [SMALL_STATE(3181)] = 110103, - [SMALL_STATE(3182)] = 110110, - [SMALL_STATE(3183)] = 110117, - [SMALL_STATE(3184)] = 110124, - [SMALL_STATE(3185)] = 110131, - [SMALL_STATE(3186)] = 110138, - [SMALL_STATE(3187)] = 110145, - [SMALL_STATE(3188)] = 110152, - [SMALL_STATE(3189)] = 110159, - [SMALL_STATE(3190)] = 110166, - [SMALL_STATE(3191)] = 110173, - [SMALL_STATE(3192)] = 110180, - [SMALL_STATE(3193)] = 110187, - [SMALL_STATE(3194)] = 110194, - [SMALL_STATE(3195)] = 110201, - [SMALL_STATE(3196)] = 110208, - [SMALL_STATE(3197)] = 110215, - [SMALL_STATE(3198)] = 110222, - [SMALL_STATE(3199)] = 110229, - [SMALL_STATE(3200)] = 110236, - [SMALL_STATE(3201)] = 110243, - [SMALL_STATE(3202)] = 110250, - [SMALL_STATE(3203)] = 110257, - [SMALL_STATE(3204)] = 110264, - [SMALL_STATE(3205)] = 110271, - [SMALL_STATE(3206)] = 110278, - [SMALL_STATE(3207)] = 110285, - [SMALL_STATE(3208)] = 110292, - [SMALL_STATE(3209)] = 110299, - [SMALL_STATE(3210)] = 110306, - [SMALL_STATE(3211)] = 110313, - [SMALL_STATE(3212)] = 110320, - [SMALL_STATE(3213)] = 110327, - [SMALL_STATE(3214)] = 110334, - [SMALL_STATE(3215)] = 110341, - [SMALL_STATE(3216)] = 110348, - [SMALL_STATE(3217)] = 110355, - [SMALL_STATE(3218)] = 110362, - [SMALL_STATE(3219)] = 110369, - [SMALL_STATE(3220)] = 110376, - [SMALL_STATE(3221)] = 110383, - [SMALL_STATE(3222)] = 110390, - [SMALL_STATE(3223)] = 110397, - [SMALL_STATE(3224)] = 110404, - [SMALL_STATE(3225)] = 110411, - [SMALL_STATE(3226)] = 110418, - [SMALL_STATE(3227)] = 110425, - [SMALL_STATE(3228)] = 110432, - [SMALL_STATE(3229)] = 110439, - [SMALL_STATE(3230)] = 110446, - [SMALL_STATE(3231)] = 110453, - [SMALL_STATE(3232)] = 110460, - [SMALL_STATE(3233)] = 110467, - [SMALL_STATE(3234)] = 110474, - [SMALL_STATE(3235)] = 110481, - [SMALL_STATE(3236)] = 110488, - [SMALL_STATE(3237)] = 110495, - [SMALL_STATE(3238)] = 110502, - [SMALL_STATE(3239)] = 110509, - [SMALL_STATE(3240)] = 110516, - [SMALL_STATE(3241)] = 110523, - [SMALL_STATE(3242)] = 110530, - [SMALL_STATE(3243)] = 110537, - [SMALL_STATE(3244)] = 110544, - [SMALL_STATE(3245)] = 110551, - [SMALL_STATE(3246)] = 110558, - [SMALL_STATE(3247)] = 110565, - [SMALL_STATE(3248)] = 110572, - [SMALL_STATE(3249)] = 110579, - [SMALL_STATE(3250)] = 110586, - [SMALL_STATE(3251)] = 110593, - [SMALL_STATE(3252)] = 110600, - [SMALL_STATE(3253)] = 110607, - [SMALL_STATE(3254)] = 110614, - [SMALL_STATE(3255)] = 110621, - [SMALL_STATE(3256)] = 110628, - [SMALL_STATE(3257)] = 110635, - [SMALL_STATE(3258)] = 110642, - [SMALL_STATE(3259)] = 110649, - [SMALL_STATE(3260)] = 110656, - [SMALL_STATE(3261)] = 110663, - [SMALL_STATE(3262)] = 110670, - [SMALL_STATE(3263)] = 110677, - [SMALL_STATE(3264)] = 110684, - [SMALL_STATE(3265)] = 110691, - [SMALL_STATE(3266)] = 110698, - [SMALL_STATE(3267)] = 110705, - [SMALL_STATE(3268)] = 110712, - [SMALL_STATE(3269)] = 110719, - [SMALL_STATE(3270)] = 110726, - [SMALL_STATE(3271)] = 110733, - [SMALL_STATE(3272)] = 110740, - [SMALL_STATE(3273)] = 110747, - [SMALL_STATE(3274)] = 110754, - [SMALL_STATE(3275)] = 110761, - [SMALL_STATE(3276)] = 110768, - [SMALL_STATE(3277)] = 110775, - [SMALL_STATE(3278)] = 110782, - [SMALL_STATE(3279)] = 110789, - [SMALL_STATE(3280)] = 110796, - [SMALL_STATE(3281)] = 110803, - [SMALL_STATE(3282)] = 110810, - [SMALL_STATE(3283)] = 110817, - [SMALL_STATE(3284)] = 110824, - [SMALL_STATE(3285)] = 110831, - [SMALL_STATE(3286)] = 110838, - [SMALL_STATE(3287)] = 110845, - [SMALL_STATE(3288)] = 110852, - [SMALL_STATE(3289)] = 110859, - [SMALL_STATE(3290)] = 110866, - [SMALL_STATE(3291)] = 110873, - [SMALL_STATE(3292)] = 110880, - [SMALL_STATE(3293)] = 110887, - [SMALL_STATE(3294)] = 110894, - [SMALL_STATE(3295)] = 110901, - [SMALL_STATE(3296)] = 110908, - [SMALL_STATE(3297)] = 110915, - [SMALL_STATE(3298)] = 110922, - [SMALL_STATE(3299)] = 110929, - [SMALL_STATE(3300)] = 110936, - [SMALL_STATE(3301)] = 110943, - [SMALL_STATE(3302)] = 110950, - [SMALL_STATE(3303)] = 110957, - [SMALL_STATE(3304)] = 110964, - [SMALL_STATE(3305)] = 110971, - [SMALL_STATE(3306)] = 110978, - [SMALL_STATE(3307)] = 110985, - [SMALL_STATE(3308)] = 110992, - [SMALL_STATE(3309)] = 110999, - [SMALL_STATE(3310)] = 111006, - [SMALL_STATE(3311)] = 111013, - [SMALL_STATE(3312)] = 111020, - [SMALL_STATE(3313)] = 111027, - [SMALL_STATE(3314)] = 111034, - [SMALL_STATE(3315)] = 111041, - [SMALL_STATE(3316)] = 111048, - [SMALL_STATE(3317)] = 111055, - [SMALL_STATE(3318)] = 111062, - [SMALL_STATE(3319)] = 111069, + [SMALL_STATE(2828)] = 106994, + [SMALL_STATE(2829)] = 107007, + [SMALL_STATE(2830)] = 107020, + [SMALL_STATE(2831)] = 107033, + [SMALL_STATE(2832)] = 107046, + [SMALL_STATE(2833)] = 107059, + [SMALL_STATE(2834)] = 107072, + [SMALL_STATE(2835)] = 107085, + [SMALL_STATE(2836)] = 107098, + [SMALL_STATE(2837)] = 107111, + [SMALL_STATE(2838)] = 107121, + [SMALL_STATE(2839)] = 107131, + [SMALL_STATE(2840)] = 107141, + [SMALL_STATE(2841)] = 107151, + [SMALL_STATE(2842)] = 107161, + [SMALL_STATE(2843)] = 107171, + [SMALL_STATE(2844)] = 107181, + [SMALL_STATE(2845)] = 107191, + [SMALL_STATE(2846)] = 107201, + [SMALL_STATE(2847)] = 107211, + [SMALL_STATE(2848)] = 107221, + [SMALL_STATE(2849)] = 107231, + [SMALL_STATE(2850)] = 107241, + [SMALL_STATE(2851)] = 107251, + [SMALL_STATE(2852)] = 107261, + [SMALL_STATE(2853)] = 107271, + [SMALL_STATE(2854)] = 107281, + [SMALL_STATE(2855)] = 107291, + [SMALL_STATE(2856)] = 107301, + [SMALL_STATE(2857)] = 107311, + [SMALL_STATE(2858)] = 107321, + [SMALL_STATE(2859)] = 107331, + [SMALL_STATE(2860)] = 107341, + [SMALL_STATE(2861)] = 107351, + [SMALL_STATE(2862)] = 107361, + [SMALL_STATE(2863)] = 107371, + [SMALL_STATE(2864)] = 107381, + [SMALL_STATE(2865)] = 107391, + [SMALL_STATE(2866)] = 107401, + [SMALL_STATE(2867)] = 107411, + [SMALL_STATE(2868)] = 107421, + [SMALL_STATE(2869)] = 107431, + [SMALL_STATE(2870)] = 107441, + [SMALL_STATE(2871)] = 107451, + [SMALL_STATE(2872)] = 107461, + [SMALL_STATE(2873)] = 107471, + [SMALL_STATE(2874)] = 107481, + [SMALL_STATE(2875)] = 107491, + [SMALL_STATE(2876)] = 107499, + [SMALL_STATE(2877)] = 107509, + [SMALL_STATE(2878)] = 107519, + [SMALL_STATE(2879)] = 107529, + [SMALL_STATE(2880)] = 107539, + [SMALL_STATE(2881)] = 107549, + [SMALL_STATE(2882)] = 107557, + [SMALL_STATE(2883)] = 107567, + [SMALL_STATE(2884)] = 107577, + [SMALL_STATE(2885)] = 107587, + [SMALL_STATE(2886)] = 107597, + [SMALL_STATE(2887)] = 107605, + [SMALL_STATE(2888)] = 107615, + [SMALL_STATE(2889)] = 107623, + [SMALL_STATE(2890)] = 107633, + [SMALL_STATE(2891)] = 107643, + [SMALL_STATE(2892)] = 107653, + [SMALL_STATE(2893)] = 107663, + [SMALL_STATE(2894)] = 107673, + [SMALL_STATE(2895)] = 107681, + [SMALL_STATE(2896)] = 107691, + [SMALL_STATE(2897)] = 107699, + [SMALL_STATE(2898)] = 107709, + [SMALL_STATE(2899)] = 107719, + [SMALL_STATE(2900)] = 107729, + [SMALL_STATE(2901)] = 107739, + [SMALL_STATE(2902)] = 107749, + [SMALL_STATE(2903)] = 107759, + [SMALL_STATE(2904)] = 107769, + [SMALL_STATE(2905)] = 107777, + [SMALL_STATE(2906)] = 107787, + [SMALL_STATE(2907)] = 107797, + [SMALL_STATE(2908)] = 107807, + [SMALL_STATE(2909)] = 107817, + [SMALL_STATE(2910)] = 107827, + [SMALL_STATE(2911)] = 107837, + [SMALL_STATE(2912)] = 107847, + [SMALL_STATE(2913)] = 107857, + [SMALL_STATE(2914)] = 107867, + [SMALL_STATE(2915)] = 107877, + [SMALL_STATE(2916)] = 107887, + [SMALL_STATE(2917)] = 107897, + [SMALL_STATE(2918)] = 107907, + [SMALL_STATE(2919)] = 107915, + [SMALL_STATE(2920)] = 107923, + [SMALL_STATE(2921)] = 107933, + [SMALL_STATE(2922)] = 107943, + [SMALL_STATE(2923)] = 107953, + [SMALL_STATE(2924)] = 107963, + [SMALL_STATE(2925)] = 107973, + [SMALL_STATE(2926)] = 107983, + [SMALL_STATE(2927)] = 107993, + [SMALL_STATE(2928)] = 108003, + [SMALL_STATE(2929)] = 108013, + [SMALL_STATE(2930)] = 108023, + [SMALL_STATE(2931)] = 108031, + [SMALL_STATE(2932)] = 108041, + [SMALL_STATE(2933)] = 108051, + [SMALL_STATE(2934)] = 108061, + [SMALL_STATE(2935)] = 108069, + [SMALL_STATE(2936)] = 108079, + [SMALL_STATE(2937)] = 108089, + [SMALL_STATE(2938)] = 108097, + [SMALL_STATE(2939)] = 108105, + [SMALL_STATE(2940)] = 108115, + [SMALL_STATE(2941)] = 108125, + [SMALL_STATE(2942)] = 108133, + [SMALL_STATE(2943)] = 108143, + [SMALL_STATE(2944)] = 108151, + [SMALL_STATE(2945)] = 108159, + [SMALL_STATE(2946)] = 108169, + [SMALL_STATE(2947)] = 108179, + [SMALL_STATE(2948)] = 108187, + [SMALL_STATE(2949)] = 108197, + [SMALL_STATE(2950)] = 108207, + [SMALL_STATE(2951)] = 108217, + [SMALL_STATE(2952)] = 108227, + [SMALL_STATE(2953)] = 108237, + [SMALL_STATE(2954)] = 108247, + [SMALL_STATE(2955)] = 108255, + [SMALL_STATE(2956)] = 108263, + [SMALL_STATE(2957)] = 108271, + [SMALL_STATE(2958)] = 108279, + [SMALL_STATE(2959)] = 108289, + [SMALL_STATE(2960)] = 108299, + [SMALL_STATE(2961)] = 108309, + [SMALL_STATE(2962)] = 108319, + [SMALL_STATE(2963)] = 108329, + [SMALL_STATE(2964)] = 108337, + [SMALL_STATE(2965)] = 108347, + [SMALL_STATE(2966)] = 108357, + [SMALL_STATE(2967)] = 108367, + [SMALL_STATE(2968)] = 108377, + [SMALL_STATE(2969)] = 108385, + [SMALL_STATE(2970)] = 108395, + [SMALL_STATE(2971)] = 108405, + [SMALL_STATE(2972)] = 108415, + [SMALL_STATE(2973)] = 108425, + [SMALL_STATE(2974)] = 108435, + [SMALL_STATE(2975)] = 108443, + [SMALL_STATE(2976)] = 108453, + [SMALL_STATE(2977)] = 108461, + [SMALL_STATE(2978)] = 108471, + [SMALL_STATE(2979)] = 108481, + [SMALL_STATE(2980)] = 108491, + [SMALL_STATE(2981)] = 108499, + [SMALL_STATE(2982)] = 108509, + [SMALL_STATE(2983)] = 108519, + [SMALL_STATE(2984)] = 108529, + [SMALL_STATE(2985)] = 108539, + [SMALL_STATE(2986)] = 108549, + [SMALL_STATE(2987)] = 108559, + [SMALL_STATE(2988)] = 108569, + [SMALL_STATE(2989)] = 108577, + [SMALL_STATE(2990)] = 108587, + [SMALL_STATE(2991)] = 108597, + [SMALL_STATE(2992)] = 108605, + [SMALL_STATE(2993)] = 108615, + [SMALL_STATE(2994)] = 108625, + [SMALL_STATE(2995)] = 108635, + [SMALL_STATE(2996)] = 108645, + [SMALL_STATE(2997)] = 108653, + [SMALL_STATE(2998)] = 108663, + [SMALL_STATE(2999)] = 108671, + [SMALL_STATE(3000)] = 108681, + [SMALL_STATE(3001)] = 108691, + [SMALL_STATE(3002)] = 108701, + [SMALL_STATE(3003)] = 108709, + [SMALL_STATE(3004)] = 108719, + [SMALL_STATE(3005)] = 108729, + [SMALL_STATE(3006)] = 108739, + [SMALL_STATE(3007)] = 108749, + [SMALL_STATE(3008)] = 108757, + [SMALL_STATE(3009)] = 108767, + [SMALL_STATE(3010)] = 108777, + [SMALL_STATE(3011)] = 108787, + [SMALL_STATE(3012)] = 108795, + [SMALL_STATE(3013)] = 108805, + [SMALL_STATE(3014)] = 108813, + [SMALL_STATE(3015)] = 108823, + [SMALL_STATE(3016)] = 108831, + [SMALL_STATE(3017)] = 108841, + [SMALL_STATE(3018)] = 108851, + [SMALL_STATE(3019)] = 108861, + [SMALL_STATE(3020)] = 108871, + [SMALL_STATE(3021)] = 108881, + [SMALL_STATE(3022)] = 108891, + [SMALL_STATE(3023)] = 108901, + [SMALL_STATE(3024)] = 108911, + [SMALL_STATE(3025)] = 108921, + [SMALL_STATE(3026)] = 108931, + [SMALL_STATE(3027)] = 108941, + [SMALL_STATE(3028)] = 108951, + [SMALL_STATE(3029)] = 108961, + [SMALL_STATE(3030)] = 108971, + [SMALL_STATE(3031)] = 108979, + [SMALL_STATE(3032)] = 108989, + [SMALL_STATE(3033)] = 108999, + [SMALL_STATE(3034)] = 109009, + [SMALL_STATE(3035)] = 109017, + [SMALL_STATE(3036)] = 109027, + [SMALL_STATE(3037)] = 109037, + [SMALL_STATE(3038)] = 109047, + [SMALL_STATE(3039)] = 109055, + [SMALL_STATE(3040)] = 109065, + [SMALL_STATE(3041)] = 109073, + [SMALL_STATE(3042)] = 109083, + [SMALL_STATE(3043)] = 109093, + [SMALL_STATE(3044)] = 109103, + [SMALL_STATE(3045)] = 109113, + [SMALL_STATE(3046)] = 109123, + [SMALL_STATE(3047)] = 109133, + [SMALL_STATE(3048)] = 109143, + [SMALL_STATE(3049)] = 109153, + [SMALL_STATE(3050)] = 109161, + [SMALL_STATE(3051)] = 109169, + [SMALL_STATE(3052)] = 109177, + [SMALL_STATE(3053)] = 109187, + [SMALL_STATE(3054)] = 109197, + [SMALL_STATE(3055)] = 109207, + [SMALL_STATE(3056)] = 109215, + [SMALL_STATE(3057)] = 109225, + [SMALL_STATE(3058)] = 109235, + [SMALL_STATE(3059)] = 109245, + [SMALL_STATE(3060)] = 109253, + [SMALL_STATE(3061)] = 109263, + [SMALL_STATE(3062)] = 109271, + [SMALL_STATE(3063)] = 109279, + [SMALL_STATE(3064)] = 109289, + [SMALL_STATE(3065)] = 109299, + [SMALL_STATE(3066)] = 109307, + [SMALL_STATE(3067)] = 109315, + [SMALL_STATE(3068)] = 109325, + [SMALL_STATE(3069)] = 109335, + [SMALL_STATE(3070)] = 109343, + [SMALL_STATE(3071)] = 109351, + [SMALL_STATE(3072)] = 109358, + [SMALL_STATE(3073)] = 109365, + [SMALL_STATE(3074)] = 109372, + [SMALL_STATE(3075)] = 109379, + [SMALL_STATE(3076)] = 109386, + [SMALL_STATE(3077)] = 109393, + [SMALL_STATE(3078)] = 109400, + [SMALL_STATE(3079)] = 109407, + [SMALL_STATE(3080)] = 109414, + [SMALL_STATE(3081)] = 109421, + [SMALL_STATE(3082)] = 109428, + [SMALL_STATE(3083)] = 109435, + [SMALL_STATE(3084)] = 109442, + [SMALL_STATE(3085)] = 109449, + [SMALL_STATE(3086)] = 109456, + [SMALL_STATE(3087)] = 109463, + [SMALL_STATE(3088)] = 109470, + [SMALL_STATE(3089)] = 109477, + [SMALL_STATE(3090)] = 109484, + [SMALL_STATE(3091)] = 109491, + [SMALL_STATE(3092)] = 109498, + [SMALL_STATE(3093)] = 109505, + [SMALL_STATE(3094)] = 109512, + [SMALL_STATE(3095)] = 109519, + [SMALL_STATE(3096)] = 109526, + [SMALL_STATE(3097)] = 109533, + [SMALL_STATE(3098)] = 109540, + [SMALL_STATE(3099)] = 109547, + [SMALL_STATE(3100)] = 109554, + [SMALL_STATE(3101)] = 109561, + [SMALL_STATE(3102)] = 109568, + [SMALL_STATE(3103)] = 109575, + [SMALL_STATE(3104)] = 109582, + [SMALL_STATE(3105)] = 109589, + [SMALL_STATE(3106)] = 109596, + [SMALL_STATE(3107)] = 109603, + [SMALL_STATE(3108)] = 109610, + [SMALL_STATE(3109)] = 109617, + [SMALL_STATE(3110)] = 109624, + [SMALL_STATE(3111)] = 109631, + [SMALL_STATE(3112)] = 109638, + [SMALL_STATE(3113)] = 109645, + [SMALL_STATE(3114)] = 109652, + [SMALL_STATE(3115)] = 109659, + [SMALL_STATE(3116)] = 109666, + [SMALL_STATE(3117)] = 109673, + [SMALL_STATE(3118)] = 109680, + [SMALL_STATE(3119)] = 109687, + [SMALL_STATE(3120)] = 109694, + [SMALL_STATE(3121)] = 109701, + [SMALL_STATE(3122)] = 109708, + [SMALL_STATE(3123)] = 109715, + [SMALL_STATE(3124)] = 109722, + [SMALL_STATE(3125)] = 109729, + [SMALL_STATE(3126)] = 109736, + [SMALL_STATE(3127)] = 109743, + [SMALL_STATE(3128)] = 109750, + [SMALL_STATE(3129)] = 109757, + [SMALL_STATE(3130)] = 109764, + [SMALL_STATE(3131)] = 109771, + [SMALL_STATE(3132)] = 109778, + [SMALL_STATE(3133)] = 109785, + [SMALL_STATE(3134)] = 109792, + [SMALL_STATE(3135)] = 109799, + [SMALL_STATE(3136)] = 109806, + [SMALL_STATE(3137)] = 109813, + [SMALL_STATE(3138)] = 109820, + [SMALL_STATE(3139)] = 109827, + [SMALL_STATE(3140)] = 109834, + [SMALL_STATE(3141)] = 109841, + [SMALL_STATE(3142)] = 109848, + [SMALL_STATE(3143)] = 109855, + [SMALL_STATE(3144)] = 109862, + [SMALL_STATE(3145)] = 109869, + [SMALL_STATE(3146)] = 109876, + [SMALL_STATE(3147)] = 109883, + [SMALL_STATE(3148)] = 109890, + [SMALL_STATE(3149)] = 109897, + [SMALL_STATE(3150)] = 109904, + [SMALL_STATE(3151)] = 109911, + [SMALL_STATE(3152)] = 109918, + [SMALL_STATE(3153)] = 109925, + [SMALL_STATE(3154)] = 109932, + [SMALL_STATE(3155)] = 109939, + [SMALL_STATE(3156)] = 109946, + [SMALL_STATE(3157)] = 109953, + [SMALL_STATE(3158)] = 109960, + [SMALL_STATE(3159)] = 109967, + [SMALL_STATE(3160)] = 109974, + [SMALL_STATE(3161)] = 109981, + [SMALL_STATE(3162)] = 109988, + [SMALL_STATE(3163)] = 109995, + [SMALL_STATE(3164)] = 110002, + [SMALL_STATE(3165)] = 110009, + [SMALL_STATE(3166)] = 110016, + [SMALL_STATE(3167)] = 110023, + [SMALL_STATE(3168)] = 110030, + [SMALL_STATE(3169)] = 110037, + [SMALL_STATE(3170)] = 110044, + [SMALL_STATE(3171)] = 110051, + [SMALL_STATE(3172)] = 110058, + [SMALL_STATE(3173)] = 110065, + [SMALL_STATE(3174)] = 110072, + [SMALL_STATE(3175)] = 110079, + [SMALL_STATE(3176)] = 110086, + [SMALL_STATE(3177)] = 110093, + [SMALL_STATE(3178)] = 110100, + [SMALL_STATE(3179)] = 110107, + [SMALL_STATE(3180)] = 110114, + [SMALL_STATE(3181)] = 110121, + [SMALL_STATE(3182)] = 110128, + [SMALL_STATE(3183)] = 110135, + [SMALL_STATE(3184)] = 110142, + [SMALL_STATE(3185)] = 110149, + [SMALL_STATE(3186)] = 110156, + [SMALL_STATE(3187)] = 110163, + [SMALL_STATE(3188)] = 110170, + [SMALL_STATE(3189)] = 110177, + [SMALL_STATE(3190)] = 110184, + [SMALL_STATE(3191)] = 110191, + [SMALL_STATE(3192)] = 110198, + [SMALL_STATE(3193)] = 110205, + [SMALL_STATE(3194)] = 110212, + [SMALL_STATE(3195)] = 110219, + [SMALL_STATE(3196)] = 110226, + [SMALL_STATE(3197)] = 110233, + [SMALL_STATE(3198)] = 110240, + [SMALL_STATE(3199)] = 110247, + [SMALL_STATE(3200)] = 110254, + [SMALL_STATE(3201)] = 110261, + [SMALL_STATE(3202)] = 110268, + [SMALL_STATE(3203)] = 110275, + [SMALL_STATE(3204)] = 110282, + [SMALL_STATE(3205)] = 110289, + [SMALL_STATE(3206)] = 110296, + [SMALL_STATE(3207)] = 110303, + [SMALL_STATE(3208)] = 110310, + [SMALL_STATE(3209)] = 110317, + [SMALL_STATE(3210)] = 110324, + [SMALL_STATE(3211)] = 110331, + [SMALL_STATE(3212)] = 110338, + [SMALL_STATE(3213)] = 110345, + [SMALL_STATE(3214)] = 110352, + [SMALL_STATE(3215)] = 110359, + [SMALL_STATE(3216)] = 110366, + [SMALL_STATE(3217)] = 110373, + [SMALL_STATE(3218)] = 110380, + [SMALL_STATE(3219)] = 110387, + [SMALL_STATE(3220)] = 110394, + [SMALL_STATE(3221)] = 110401, + [SMALL_STATE(3222)] = 110408, + [SMALL_STATE(3223)] = 110415, + [SMALL_STATE(3224)] = 110422, + [SMALL_STATE(3225)] = 110429, + [SMALL_STATE(3226)] = 110436, + [SMALL_STATE(3227)] = 110443, + [SMALL_STATE(3228)] = 110450, + [SMALL_STATE(3229)] = 110457, + [SMALL_STATE(3230)] = 110464, + [SMALL_STATE(3231)] = 110471, + [SMALL_STATE(3232)] = 110478, + [SMALL_STATE(3233)] = 110485, + [SMALL_STATE(3234)] = 110492, + [SMALL_STATE(3235)] = 110499, + [SMALL_STATE(3236)] = 110506, + [SMALL_STATE(3237)] = 110513, + [SMALL_STATE(3238)] = 110520, + [SMALL_STATE(3239)] = 110527, + [SMALL_STATE(3240)] = 110534, + [SMALL_STATE(3241)] = 110541, + [SMALL_STATE(3242)] = 110548, + [SMALL_STATE(3243)] = 110555, + [SMALL_STATE(3244)] = 110562, + [SMALL_STATE(3245)] = 110569, + [SMALL_STATE(3246)] = 110576, + [SMALL_STATE(3247)] = 110583, + [SMALL_STATE(3248)] = 110590, + [SMALL_STATE(3249)] = 110597, + [SMALL_STATE(3250)] = 110604, + [SMALL_STATE(3251)] = 110611, + [SMALL_STATE(3252)] = 110618, + [SMALL_STATE(3253)] = 110625, + [SMALL_STATE(3254)] = 110632, + [SMALL_STATE(3255)] = 110639, + [SMALL_STATE(3256)] = 110646, + [SMALL_STATE(3257)] = 110653, + [SMALL_STATE(3258)] = 110660, + [SMALL_STATE(3259)] = 110667, + [SMALL_STATE(3260)] = 110674, + [SMALL_STATE(3261)] = 110681, + [SMALL_STATE(3262)] = 110688, + [SMALL_STATE(3263)] = 110695, + [SMALL_STATE(3264)] = 110702, + [SMALL_STATE(3265)] = 110709, + [SMALL_STATE(3266)] = 110716, + [SMALL_STATE(3267)] = 110723, + [SMALL_STATE(3268)] = 110730, + [SMALL_STATE(3269)] = 110737, + [SMALL_STATE(3270)] = 110744, + [SMALL_STATE(3271)] = 110751, + [SMALL_STATE(3272)] = 110758, + [SMALL_STATE(3273)] = 110765, + [SMALL_STATE(3274)] = 110772, + [SMALL_STATE(3275)] = 110779, + [SMALL_STATE(3276)] = 110786, + [SMALL_STATE(3277)] = 110793, + [SMALL_STATE(3278)] = 110800, + [SMALL_STATE(3279)] = 110807, + [SMALL_STATE(3280)] = 110814, + [SMALL_STATE(3281)] = 110821, + [SMALL_STATE(3282)] = 110828, + [SMALL_STATE(3283)] = 110835, + [SMALL_STATE(3284)] = 110842, + [SMALL_STATE(3285)] = 110849, + [SMALL_STATE(3286)] = 110856, + [SMALL_STATE(3287)] = 110863, + [SMALL_STATE(3288)] = 110870, + [SMALL_STATE(3289)] = 110877, + [SMALL_STATE(3290)] = 110884, + [SMALL_STATE(3291)] = 110891, + [SMALL_STATE(3292)] = 110898, + [SMALL_STATE(3293)] = 110905, + [SMALL_STATE(3294)] = 110912, + [SMALL_STATE(3295)] = 110919, + [SMALL_STATE(3296)] = 110926, + [SMALL_STATE(3297)] = 110933, + [SMALL_STATE(3298)] = 110940, + [SMALL_STATE(3299)] = 110947, + [SMALL_STATE(3300)] = 110954, + [SMALL_STATE(3301)] = 110961, + [SMALL_STATE(3302)] = 110968, + [SMALL_STATE(3303)] = 110975, + [SMALL_STATE(3304)] = 110982, + [SMALL_STATE(3305)] = 110989, + [SMALL_STATE(3306)] = 110996, + [SMALL_STATE(3307)] = 111003, + [SMALL_STATE(3308)] = 111010, + [SMALL_STATE(3309)] = 111017, + [SMALL_STATE(3310)] = 111024, + [SMALL_STATE(3311)] = 111031, + [SMALL_STATE(3312)] = 111038, + [SMALL_STATE(3313)] = 111045, + [SMALL_STATE(3314)] = 111052, + [SMALL_STATE(3315)] = 111059, + [SMALL_STATE(3316)] = 111066, + [SMALL_STATE(3317)] = 111073, + [SMALL_STATE(3318)] = 111080, + [SMALL_STATE(3319)] = 111087, + [SMALL_STATE(3320)] = 111094, + [SMALL_STATE(3321)] = 111101, }; static TSParseActionEntry ts_parse_actions[] = { @@ -159233,2999 +159478,3013 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(713), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(143), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(740), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(134), [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(637), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(700), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(266), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(632), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(690), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(270), [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(939), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2242), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2172), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2094), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(272), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2841), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2844), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2816), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(109), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(282), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2848), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(32), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2855), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2856), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2806), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2805), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2868), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(153), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(170), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(516), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2223), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2243), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2114), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(393), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2849), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2852), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2649), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(111), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(266), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2861), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(43), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2878), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2880), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2656), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2657), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2888), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(154), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(169), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(518), [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(67), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(126), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2190), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3277), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1989), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(464), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2115), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(121), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2186), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3279), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2001), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(461), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2119), [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(247), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(313), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(315), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2550), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2551), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2208), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1420), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1420), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2786), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(715), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3264), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(157), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(632), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3263), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3262), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 84), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 84), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(368), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(372), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2598), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2599), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2226), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1473), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1473), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2661), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(702), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3266), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(160), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(635), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3265), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3264), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 84), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 84), [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 84), [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 84), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 146), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 146), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 146), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 146), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 139), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 139), - [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 139), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 139), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 135), - [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 135), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 135), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 135), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 51), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 51), - [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 139), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 139), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 139), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 139), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 101), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 101), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 101), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 101), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 145), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 145), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 145), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 145), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 165), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 165), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 165), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 165), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 28), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 28), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 168), - [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 168), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 168), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 168), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 102), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 102), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 102), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 102), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 116), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 116), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 116), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 116), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 110), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 110), - [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 110), - [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 110), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 139), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 139), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 139), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 139), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 168), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 168), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 168), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 168), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 145), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 145), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 145), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 145), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 102), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 102), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 102), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 102), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 101), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 101), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 101), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 101), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 165), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 165), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 165), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 165), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 116), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 116), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 116), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 116), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 146), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 146), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 146), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 146), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 51), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 51), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 28), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 28), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 135), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 135), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 135), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 135), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 139), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 139), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 139), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 139), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 110), + [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 110), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 110), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 110), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(37), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(32), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1893), - [1365] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1783), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1371] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3051), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1897), + [1365] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(1793), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1371] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3036), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 136), [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 15), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 15), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1783), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(3051), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(841), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(235), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 1), SHIFT(361), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 13), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 13), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, .production_id = 52), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, .production_id = 52), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), SHIFT(841), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 44), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 44), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 6, .production_id = 167), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 6, .production_id = 167), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(236), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 175), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 175), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 176), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 176), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 15), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 15), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1793), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(3036), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(918), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(178), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 1), SHIFT(410), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 13), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 13), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, .production_id = 52), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, .production_id = 52), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), SHIFT(918), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(246), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 6, .production_id = 167), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 6, .production_id = 167), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 44), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 44), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 13), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 13), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 177), [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 177), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 13), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 13), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 166), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 166), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 51), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 51), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 90), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 90), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 128), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 128), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 124), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 124), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 146), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 146), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 145), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 145), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 123), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 123), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 110), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 110), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 51), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 51), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 101), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 101), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 102), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 102), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 64), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 64), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 47), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 47), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 47), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 47), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 46), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 46), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 89), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 89), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 45), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 45), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 43), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 43), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 95), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 95), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 13), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 13), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 38), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 38), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 138), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 138), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 37), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 37), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 141), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 141), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 36), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 36), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 139), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 139), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 139), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 139), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 142), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 142), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 135), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 135), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 122), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 122), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 135), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 135), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 165), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 165), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 168), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 168), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 101), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 101), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 144), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 144), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 153), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 153), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 116), - [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 116), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 174), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 174), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 73), - [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 73), - [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 24), - [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 24), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 75), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 75), - [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 76), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 76), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 109), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 109), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 115), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 115), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 150), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 150), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 102), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 102), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 173), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 173), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 172), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 172), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 155), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 155), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 154), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 154), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 171), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 171), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 170), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 170), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 152), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 152), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 151), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 151), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 175), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 175), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 176), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 176), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 76), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 76), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 139), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 139), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 138), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 138), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 128), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 128), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 139), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 139), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 166), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 166), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 89), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 89), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 51), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 51), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 101), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 101), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 64), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 64), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 102), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 102), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 43), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 43), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 174), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 174), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 168), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 168), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 45), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 45), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 46), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 46), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 110), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 110), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 109), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 109), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 47), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 47), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 135), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 135), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 47), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 47), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 153), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 153), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 115), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 115), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 142), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 142), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 95), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 95), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 101), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 101), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 36), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 36), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 13), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 13), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 102), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 102), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 37), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 37), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 146), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 146), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 116), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 116), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 135), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 135), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 150), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 150), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 141), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 141), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 122), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 122), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 144), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 144), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 145), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 145), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 38), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 38), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 124), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 124), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 51), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 51), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 73), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 73), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 75), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 75), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 24), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 24), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 165), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 165), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 123), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 123), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 90), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 90), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 155), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 155), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 151), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 151), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 170), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 170), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 173), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 173), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 152), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 152), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 171), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 171), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 172), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 172), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 154), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 154), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 16), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 140), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 140), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 113), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 113), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 60), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 60), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 78), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 78), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 120), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 120), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(204), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(844), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(868), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 25), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 25), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 60), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 60), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 60), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 60), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1), SHIFT(294), - [2260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), - [2263] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 52), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(841), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2, .production_id = 52), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(866), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 25), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 25), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 140), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 140), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(909), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1, .production_id = 14), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(250), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 60), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 60), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(905), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 78), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 78), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 113), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 113), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 120), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 120), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 60), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), + [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 60), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 60), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_member_expression, 3, .production_id = 60), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2, .production_id = 52), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(907), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 52), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(918), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1), SHIFT(384), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), + [2309] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 52), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(245), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 52), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_rest_parameter, 2), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [2448] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 52), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 52), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_rest_parameter, 2), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(182), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), + [2450] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(854), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 29), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 29), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 29), - [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 29), - [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 108), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 65), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 9), - [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(203), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 10), - [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(199), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(854), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 71), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 62), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(74), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 62), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 63), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(74), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 62), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 69), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 59), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 59), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 26), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 23), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 107), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 105), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 143), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 68), REDUCE(sym_assignment_expression, 3, .production_id = 68), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 68), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 54), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 54), - [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 104), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 104), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 105), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 106), - [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 106), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 107), - [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 108), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 106), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 106), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 111), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 111), - [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 112), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 112), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 114), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 114), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 117), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 117), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 118), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 118), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 27), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 27), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 26), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 96), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 96), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 137), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 137), - [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 130), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 130), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 147), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 147), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 19), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 19), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 18), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(72), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 80), REDUCE(sym_assignment_expression, 3, .production_id = 23), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 80), - [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 80), REDUCE(sym_assignment_expression, 3, .production_id = 62), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 55), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 55), - [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 69), REDUCE(sym_assignment_expression, 3, .production_id = 69), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 69), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 13), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 13), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 67), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 67), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 58), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 58), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(72), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 61), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 61), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 63), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 70), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 70), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 71), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 48), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 48), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 99), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 99), - [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), - [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 79), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 79), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), - [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), - [3295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(75), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 143), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 84), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(69), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 69), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), - [3358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(70), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 62), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 62), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 23), - [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(75), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), - [3380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(70), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(874), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 50), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 50), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(69), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(166), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [3490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(252), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 81), - [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(873), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(73), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(73), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(874), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), - [3635] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [3659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(873), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [3682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 11), SHIFT(374), - [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 11), - [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 12), SHIFT(376), - [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 12), - [3701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1971), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1877), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(198), - [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1728), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2521), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2522), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1916), - [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2786), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1734), - [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1873), - [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1768), - [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1727), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1701), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(928), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 29), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 29), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 29), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 29), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 69), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 26), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 23), + [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 59), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 59), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 62), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 63), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 62), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 65), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(68), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 62), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 105), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 107), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 108), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(68), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 143), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 10), + [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(252), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 9), + [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(251), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 71), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(928), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 71), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 107), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 106), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 106), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 68), REDUCE(sym_assignment_expression, 3, .production_id = 68), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 68), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 105), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 104), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 104), + [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 80), REDUCE(sym_assignment_expression, 3, .production_id = 62), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 80), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 106), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 106), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 136), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 99), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 99), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 48), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 48), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 111), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 111), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 112), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 112), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 114), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 114), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 80), REDUCE(sym_assignment_expression, 3, .production_id = 23), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 69), REDUCE(sym_assignment_expression, 3, .production_id = 69), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 69), + [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(69), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 117), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 117), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 118), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 118), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 79), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 79), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 96), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 96), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 70), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 70), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 67), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 67), + [3127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__primary_type, 1), + [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), + [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym_literal_type, 1), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 137), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 137), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 63), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 61), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 61), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 130), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 130), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 58), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 58), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 55), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 55), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 54), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 54), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 147), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 147), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 13), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 13), + [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(69), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 108), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 17), + [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 17), + [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 18), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 18), + [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 27), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 27), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 26), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 19), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 19), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(72), + [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(70), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 23), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 23), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(71), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 62), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 62), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(72), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 50), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 50), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 69), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 84), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(906), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 143), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(70), + [3434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(71), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [3485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(183), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(185), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 81), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(73), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 14), SHIFT(904), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 65), SHIFT(73), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(906), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), + [3607] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 11), SHIFT(299), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), + [3625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 11), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 12), SHIFT(298), + [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), + [3636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 12), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 12), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 11), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [3673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1), SHIFT(904), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1969), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1884), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(170), + [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1716), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2521), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2520), + [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1919), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2661), + [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1726), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1870), + [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1772), + [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1740), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1707), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 60), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 60), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 60), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 60), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 18), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [4073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 110), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 110), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 194), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 194), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 82), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 82), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 39), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 199), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 199), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 195), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 195), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 121), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 121), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 149), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 149), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 187), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 187), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 186), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 186), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 165), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 165), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 169), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 169), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 139), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 139), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2786), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [4073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 199), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 199), + [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 169), + [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 169), + [4081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 165), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 165), + [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 186), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 186), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 139), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 139), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 149), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 149), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 187), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 187), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 194), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 194), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 195), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 195), + [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 82), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 82), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 39), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 110), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 110), + [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 121), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 121), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), + [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2661), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 14), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 14), SHIFT(2649), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 14), SHIFT(2794), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 48), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 164), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 130), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym_type_parameter, 1, .production_id = 14), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym_jsx_namespace_name, 3), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 48), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 130), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 164), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 130), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 48), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 164), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 130), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 48), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 164), - [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 97), SHIFT_REPEAT(2123), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 97), SHIFT_REPEAT(146), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 97), - [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 97), - [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 97), SHIFT_REPEAT(2123), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(148), - [4468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(2628), - [4471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(2070), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 5), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 200), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 197), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 196), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 189), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 188), - [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 179), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 178), - [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 138), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 157), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 134), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 109), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 100), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, .production_id = 156), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 164), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym_type_parameter, 1, .production_id = 14), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 130), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 48), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), + [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 14), REDUCE(sym_jsx_namespace_name, 3), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 164), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 48), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 130), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 164), + [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1, .production_id = 14), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 130), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 48), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 48), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 130), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 164), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 97), SHIFT_REPEAT(2137), + [4391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 97), SHIFT_REPEAT(148), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 97), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 97), + [4398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 97), SHIFT_REPEAT(2137), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 5), + [4477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(136), + [4480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(2583), + [4483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(2075), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 100), [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 126), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(989), - [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(2179), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(228), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(3158), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(222), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 72), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 132), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 85), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 33), - [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 35), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 31), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 41), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 91), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 92), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 93), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 31), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 103), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 192), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 132), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 185), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 181), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 49), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 49), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 192), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 66), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 39), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), - [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 161), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 159), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 185), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 181), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 161), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 159), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 85), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(937), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(929), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2555), - [5178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2555), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(899), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2253), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(933), - [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [5228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2574), - [5231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2574), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [5238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(150), - [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(906), - [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2), - [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(892), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(901), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 52), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3, .production_id = 52), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [5310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(916), - [5313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(935), - [5316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(917), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(938), - [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(127), - [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(154), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(923), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [5349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(919), - [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 14), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 109), - [5366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(2567), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [5371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 48), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 77), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(886), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(2565), - [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 129), - [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), - [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 131), - [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(2970), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 162), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 133), - [5478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 98), - [5480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 86), - [5482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 96), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1806), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 22), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 88), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 87), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 86), - [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 85), - [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 77), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 77), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 48), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 160), - [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 198), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 188), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 193), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 191), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 190), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 14), - [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 179), - [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 184), - [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 178), - [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 183), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 34), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 182), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 180), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 158), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(1870), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 163), - [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(1578), - [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 157), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 138), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 74), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 148), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 42), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 127), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 3, .production_id = 125), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 3), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 83), - [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 94), - [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 94), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 42), - [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 14), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 77), - [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 119), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 83), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 83), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 83), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6081] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 126), + [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 200), + [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 197), + [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 196), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 189), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 188), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 179), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 109), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 178), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 134), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 138), + [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 157), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 6, .production_id = 156), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(3077), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(177), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 20), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 72), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(2220), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(228), + [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1014), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 132), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 161), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 159), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 31), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), + [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 159), + [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 41), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 185), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tsx_string, 2), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tsx_string, 2), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 161), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 91), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 92), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 85), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 93), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 66), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 181), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 35), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 33), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 39), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 31), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 192), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 132), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 192), + [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tsx_string, 3), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tsx_string, 3), + [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 185), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 103), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 85), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 49), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 49), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 181), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 52), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 14), + [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), + [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(151), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tsx_string_repeat2, 2), + [5136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tsx_string_repeat2, 2), SHIFT_REPEAT(2535), + [5139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tsx_string_repeat2, 2), SHIFT_REPEAT(2535), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tsx_string_repeat1, 2), + [5144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tsx_string_repeat1, 2), SHIFT_REPEAT(2536), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tsx_string_repeat1, 2), SHIFT_REPEAT(2536), + [5150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(885), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [5159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(152), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(836), + [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2549), + [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2549), + [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(889), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(842), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(913), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(839), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [5237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(120), + [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(840), + [5243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(863), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [5284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(849), + [5287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [5289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2595), + [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(2595), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(884), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(855), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [5353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(853), + [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), + [5358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), SHIFT(854), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(2216), + [5374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [5388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3, .production_id = 52), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 86), + [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 133), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 109), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 131), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 77), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 129), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 14), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 160), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 162), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 138), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 157), + [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 163), + [5462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(1875), + [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 180), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 182), + [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 183), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 178), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 184), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 179), + [5485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(2600), + [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 158), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 190), + [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 191), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 193), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 188), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 198), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(2566), + [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 77), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 34), + [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [5543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(926), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 30), + [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(2911), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 98), + [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 96), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1804), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 22), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 88), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 87), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 30), + [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 86), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 85), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 77), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 48), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 48), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(1677), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 42), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 148), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 42), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 127), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 3, .production_id = 125), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), + [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 83), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 77), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 119), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 74), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 3), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 14), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 94), + [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 94), + [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 83), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 83), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6121] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 83), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), }; #ifdef __cplusplus diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index c3ddfedf..8219a43d 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -2620,7 +2620,7 @@ "members": [ { "type": "SYMBOL", - "name": "string" + "name": "tsx_string" }, { "type": "SYMBOL", @@ -6561,6 +6561,83 @@ } ] }, + "tsx_string": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[^\"\\\\\\n]+|\\\\?\\r?\\n" + } + } + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 2, + "content": { + "type": "PATTERN", + "value": "[^'\\\\\\n]+|\\\\?\\r?\\n" + } + } + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + } + ] + }, "non_null_expression": { "type": "PREC_LEFT", "value": 10, diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index b205b8c0..61e6dade 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -3275,7 +3275,7 @@ "named": true }, { - "type": "string", + "type": "tsx_string", "named": true } ] @@ -5070,6 +5070,21 @@ } } }, + { + "type": "tsx_string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + } + ] + } + }, { "type": "tuple_type", "named": true,